我設法通過在下面的xml文件中刪除行DebugType = "$(DebugType)"
來重建項目。這條線真正做什麼以及爲什麼它可以解決我的問題。我有錯誤,因爲我從源碼樹中提取新代碼。Xamarin Studio:錯誤重建項目錯誤:「XamlCTask」任務不支持「DebugType」參數
<Target Name="XamlC">
<XamlCTask
Assembly = "$(IntermediateOutputPath)$(TargetFileName)"
ReferencePath = "@(ReferencePath)"
Verbosity = "2"
OptimizeIL = "true"
DebugSymbols = "$(DebugSymbols)"
/>
</Target>
這就是我所做的。 – LittleFunny