Leggere in inglese

Condividi tramite


Errore .NET per Android XA1030

Messaggi di esempio

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.

Soluzione

Anziché usare:

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

Usare il valore predefinito per $(PublishTrimmed) e $(AndroidLinkMode) :

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

Inoltre, come indicato da XA0119, non è consigliabile usare $(RunAOTCompilation) nelle Debug configurazioni.