.NET Androidra vonatkozó figyelmeztetés XA0036

Probléma

Az $(AndroidSupportedAbis) MSBuild tulajdonság már nem támogatott a .NET 6-os és újabb verzióiban.

Megoldás

Nyissa meg a projektfájlt a Visual Studióban vagy egy másik szövegszerkesztőben, és távolítsa el <AndroidSupportedAbis/>. Használja inkább az RuntimeIdentifiers MSBuild tulajdonságot:

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

További információkért tekintse meg a Futtatókörnyezet-azonosítók microsoftos dokumentációját .

Példaüzenetek

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.