Auf Englisch lesen

Freigeben über


.NET für Android-Fehler XA1030

Beispielnachrichten

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.

Lösung

Statt Folgendes zu verwenden:

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

Verwenden Sie stattdessen den Standardwert für $(PublishTrimmed) und $(AndroidLinkMode) stattdessen:

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

Darüber hinaus sollten Sie, wie bereits XA0119erwähnt, nicht in Debug Konfigurationen verwendet werden$(RunAOTCompilation).