.NET für Android-Fehler 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.
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 XA0119
erwähnt, nicht in Debug
Konfigurationen verwendet werden$(RunAOTCompilation)
.