我正在試用VS for Mac中的Eto.Forms。當我建,我收到以下錯誤:Eto.Forms和VS for Mac構建問題
System.Reflection.TargetInvocationException
和
無法加載文件或程序集「Xamarin.Mac,版本= 0.0.0.0 , Culture = neutral,PublicKeyToken = 84e04ff9cfb79065'或其 依賴項之一。
我認爲這意味着我缺少一個參考。但是,Xamarin.Mac也不會在參考編輯器中顯示。有沒有人有我的想法或任何指針?
當我在VS for Windows中運行它時,相同的解決方案工作得很好。
添加引用系統,埃託奧和Eto.XamMac2使用主要如下代碼:
[STAThread]
public static void Main(string[] args)
{
var platform = Eto.Platforms.XamMac2;
new Application(platform).Run(new MyForm());
}
感謝