Files
Semi.Avalonia/demo/Semi.Avalonia.Demo.Desktop/Semi.Avalonia.Demo.Desktop.csproj

33 lines
1.1 KiB
XML
Raw Normal View History

2023-01-20 23:08:33 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
2023-01-20 23:08:33 +08:00
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<!-- Uncomment below to enable Native AOT compilation-->
2024-09-02 20:37:40 +08:00
<!--<PublishAot>true</PublishAot>-->
<!--<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>-->
2023-01-20 23:08:33 +08:00
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
<IsTrimmable>true</IsTrimmable>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
2023-01-20 23:08:33 +08:00
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
2024-12-30 14:08:24 +08:00
<TrimmerRootDescriptor Include="Roots.xml"/>
</ItemGroup>
2023-01-20 23:08:33 +08:00
<ItemGroup>
2024-12-30 14:08:24 +08:00
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)"/>
2023-01-20 23:08:33 +08:00
</ItemGroup>
<ItemGroup>
2024-12-30 14:08:24 +08:00
<ProjectReference Include="..\Semi.Avalonia.Demo\Semi.Avalonia.Demo.csproj"/>
2023-01-20 23:08:33 +08:00
</ItemGroup>
</Project>