构建UWP项目的发行版本会导致错误

时间:2018-09-04 20:55:56

标签: visual-studio xamarin.forms uwp xamarin.uwp .net-native

在针对.NET Native tool chain的UWP项目中激活Windows 10, version 1803时,出现以下错误:


Error       Error: NUTC1056:Internal Compiler Error: 0x8000ffff. Error encountered while compiling method 'instance System.Void Premy.Chatovatko.Client.Views.CertificateSelection.InitializeComponent()'.  Premy.Chatovatko.Client.UWP         
Error       ILT0005: 'C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.native.compiler\2.1.8\tools\x86\ilc\Tools\nutc_driver.exe @"C:\Chatovatko\Premy.Chatovatko\Premy.Chatovatko.Client\Premy.Chatovatko.Client.UWP\obj\x86\Release\ilc\intermediate\MDIL\Chatovatko.rsp"' returned exit code 1 Premy.Chatovatko.Client.UWP     

该项目使用Xamarin.Forms 3.1.0Microsoft.NETCore.UniversalWindowsPlatform 6.1.7。 (此解决方案位于Github上)

有人有什么主意吗,请问我该怎么办?

1 个答案:

答案 0 :(得分:2)

此处报告的错误通常是在代码尝试构造委托时引起的,但用于委托的目标方法的签名与委托的签名匹配。例如,您的XAML中有一个按钮,并且用于按钮单击事件的方法与EventHandler委托的签名不匹配:EventHandler(object sender,EventArgs e)。

在上面提供的Github解决方案中,有一些不匹配的情况。例如,Premy.Chatovatko.Client.Views.CertificateSelection中的Generate()和LoadFromFile()