Android용 .NET 경고 XA0036
문제
$(AndroidSupportedAbis)
MSBuild 속성은 .NET 6 이상에서 더 이상 지원되지 않습니다.
솔루션
Visual Studio 또는 다른 텍스트 편집기에서 프로젝트 파일을 열고 제거<AndroidSupportedAbis/>
합니다. RuntimeIdentifiers
대신 MSBuild 속성을 사용합니다.
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
자세한 내용은 런타임 식별자에 대한 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.