我正在尝试在Visual Studio 2017中构建Xamarin android项目的Jenkins管道。我能够在VS和cmd中进行构建。但是,当尝试从Jenkins构建解决方案时,我得到了同一项目上的"error CS0103: The name 'InitializeComponent' does not exist in the current context"
。
这是我尝试过的事情:
<ItemGroup>
<!-- https://bugzilla.xamarin.com/show_bug.cgi?id=55591 -->
<None Remove="**\*.xaml" />
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
</ItemGroup>
Jenkins构建仍然没有运气。预先感谢。
P.S。我是msbuild和Visual Studio的新手。