Update to Avalonia 0.9.10 and changed to more agressive Ilc settings
This commit is contained in:
parent
6a2851bfae
commit
a4e6e5477a
@ -3,8 +3,6 @@
|
||||
<!-- if you want to check exceptions, change this to "Exe" and start your app from the console -->
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<!-- This is a hack. Avalonia 0.9.9 depends on a version of System.Reactive prior 4.4.1, which contains a critical fix for building with CoreRT -->
|
||||
<!--<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>-->
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
@ -12,8 +10,8 @@
|
||||
<!-- these can help when debugging weird exceptions especially when reflection is involved. See https://github.com/dotnet/corert/blob/master/Documentation/using-corert/optimizing-corert.md -->
|
||||
<RootAllApplicationAssemblies>false</RootAllApplicationAssemblies>
|
||||
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
|
||||
<IlcGenerateStackTraceData>true</IlcGenerateStackTraceData>
|
||||
<IlcDisableUnhandledExceptionExperience>false</IlcDisableUnhandledExceptionExperience>
|
||||
<IlcGenerateStackTraceData>false</IlcGenerateStackTraceData>
|
||||
<IlcDisableUnhandledExceptionExperience>true</IlcDisableUnhandledExceptionExperience>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="$(RuntimeIdentifier.StartsWith('win'))">
|
||||
@ -34,15 +32,15 @@
|
||||
<EmbeddedResource Include="windows.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Avalonia" Version="0.9.9" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="0.9.9" />
|
||||
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.9" />
|
||||
<PackageReference Include="Avalonia" Version="0.9.10" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="0.9.10" />
|
||||
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.10" />
|
||||
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="1.0.0-alpha-*" />
|
||||
<!-- This is a hack. Avalonia 0.9.7 depends on a version of System.Reactive prior 4.4.1, which contains a critical fix for building with CoreRT -->
|
||||
<!-- This is a hack. Avalonia 0.9.10 depends on a version of System.Reactive prior 4.4.1, which contains a critical fix for building with CoreRT -->
|
||||
<PackageReference Include="System.Reactive" Version="4.4.1" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<!-- Avalonis relies heavily on reflection. Describe types needed here. -->
|
||||
<!-- Avalonia relies heavily on reflection. Describe types reflected upon here. -->
|
||||
<RdXmlFile Include="rd.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user