在哪里将AndroidManifest.xml的Build Action更改为" none?"

时间:2016-01-20 13:58:30

标签: android xamarin

警告XA0101:不支持@(内容)构建操作(XA0101)

这是我收到的错误消息。如何解决这个问题

在哪里将AndroidManifest.xml的Build Action更改为" none?"

2 个答案:

答案 0 :(得分:5)

右键点击AndroidManifest.xml。 选择Properties

Properties Window --->将Build Action设为None

答案 1 :(得分:1)

您可以通过在Sublime或Notepad ++等文本编辑器中打开.csproj文件并更改清单包括从ContentNone的操作来绕过您正在使用的IDE的GUI:

enter image description here

enter image description here

<None Include="Properties\AndroidManifest.xml"/>

请注意,对Xamarin.Android项目执行此操作可能会破坏它的编译能力。谨慎行事......