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 のドキュメントを参照してください。
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.