Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Problematik
Egenskapen $(AndroidSupportedAbis) MSBuild stöds inte längre i .NET 6 och senare.
Lösning
Öppna projektfilen i Visual Studio eller någon annan textredigerare och ta bort <AndroidSupportedAbis/>.
RuntimeIdentifiers Använd egenskapen MSBuild i stället:
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
För mer information, se Microsoft-dokumentationen om körningsidentifierare.
Exempelmeddelanden
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.