Avertissement .NET pour Android XA0036
La $(AndroidSupportedAbis)
propriété MSBuild n’est plus prise en charge dans .NET 6 et versions ultérieures.
Ouvrez le fichier projet dans Visual Studio ou un autre éditeur de texte et supprimez <AndroidSupportedAbis/>
. Utilisez plutôt la RuntimeIdentifiers
propriété MSBuild :
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
Pour plus d’informations, consultez la documentation Microsoft sur les identificateurs d’exécution.
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.