英語で読む

次の方法で共有


Android 用 .NET 警告 XA0036

問題点

$(AndroidSupportedAbis) MSBuild プロパティは、.NET 6 以降ではサポートされなくなりました。

解決策

Visual Studio または別のテキスト エディタープロジェクト ファイルを開き、<AndroidSupportedAbis/>を削除します。 代わりに、 RuntimeIdentifiers MSBuild プロパティを使用します。

<PropertyGroup>
  <RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>

詳細については、 runtime 識別子 に関する Microsoft のドキュメントを参照してください。

Example messages (メッセージの例)

warning XA0036: The 'AndroidSupportedAbis' MSBuild property is no longer supported. Edit the project file in a text editor, remove any uses of 'AndroidSupportedAbis', and use the 'RuntimeIdentifiers' MSBuild property instead.