Avviso di .NET per Android XA0036
La $(AndroidSupportedAbis)
proprietà MSBuild non è più supportata in .NET 6 e versioni successive.
Aprire il file di progetto in Visual Studio o in un altro editor di testo e rimuovere <AndroidSupportedAbis/>
. Usare invece la RuntimeIdentifiers
proprietà MSBuild:
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
Per altre informazioni, vedere la documentazione Microsoft sugli identificatori di runtime.
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.