영어로 읽기

다음을 통해 공유


Android용 .NET 오류 XA1030

예제 메시지

The 'RunAOTCompilation' MSBuild property is only supported when trimming is enabled. Edit the project file in a text editor to set 'PublishTrimmed' to 'true' for this build configuration.

솔루션

대신 다음을 사용합니다.

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  <RunAOTCompilation>true</RunAOTCompilation>
  <!-- Either of these disable the linker/trimmer -->
  <PublishTrimmed>false</PublishTrimmed>
  <AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>

대신 기본값을 사용합니다.$(PublishTrimmed) $(AndroidLinkMode)

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  <RunAOTCompilation>true</RunAOTCompilation>
</PropertyGroup>

또한 설명한 XA0119대로 구성에 Debug 사용하면 $(RunAOTCompilation) 안 됩니다.