错误MSB4216:由于MSBuild无法创建或连接到任务,因此无法运行“ GenerateResource”任务

时间:2019-03-04 16:25:55

标签: c# teamcity

请注意,我能够在Visual Studio Professional 2017中构建此项目:https://github.com/briannoyes/WPFMVVM-StarterCode

但是当我尝试在Team City 2019.1中运行构建时,它给了我这个错误:

C:\Program Files\dotnet\sdk\2.0.0\Microsoft.Common.CurrentVersion.targets(2924,5): error MSB4216: Could not run the "GenerateResource" task because MSBuild could not create or connect to a task host with runtime "CLR4" and architecture "x86".

然后我找到了此链接:

'dotnet build' error after migrating dotnetcore project to 1.0.4

从那里我按照注释中的建议将其添加到项目中:

<Prefer32Bit>false</Prefer32Bit>

但是现在我收到此错误:

  

从构建脚本报告的问题(1)   Customer \ AddEditCustomerView.xaml.cs(25,13):错误CS0103:名称   当前上下文中不存在“ InitializeComponent”   Customer \ CustomerListView.xaml.cs(25,13):错误CS0103:名称   当前上下文中不存在“ InitializeComponent”   OrderPrep \ OrderPrepView.xaml.cs(25,13):错误CS0103:名称   当前上下文中不存在“ InitializeComponent”   Orders \ OrderView.xaml.cs(25,13):错误CS0103:名称   当前上下文中不存在“ InitializeComponent”   MainWindow.xaml.cs(25,13):错误CS0103:名称   当前上下文CSC中不存在'InitializeComponent':   错误CS5001:程序不包含适合的静态“ Main”方法   对于入口点···构建失败条件(1)流程已退出   代码为1

这是我在构建步骤中拥有的设置:

enter image description here

这是完整的构建日志:

https://pastebin.com/1JdhKWPf

有人有什么建议吗?

0 个答案:

没有答案