Files
Semi.Avalonia/demo/Semi.Avalonia.Demo.Drm/Semi.Avalonia.Demo.Drm.csproj
T

35 lines
1.2 KiB
XML
Raw Normal View History

2023-07-09 09:24:41 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2024-08-18 17:51:59 +08:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
2024-08-18 17:51:59 +08:00
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationIcon>..\Semi.Avalonia.Demo\Assets\irihi.ico</ApplicationIcon>
2024-08-18 17:51:59 +08:00
<!-- Uncomment below to enable Native AOT compilation-->
2024-09-02 20:37:40 +08:00
<!--<PublishAot>true</PublishAot>-->
2024-08-18 17:51:59 +08:00
</PropertyGroup>
2023-07-09 09:24:41 +08:00
2024-08-18 17:51:59 +08:00
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
<IsTrimmable>true</IsTrimmable>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
2023-07-09 09:24:41 +08:00
2024-08-18 17:51:59 +08:00
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
2023-07-09 09:24:41 +08:00
2024-08-18 17:51:59 +08:00
<ItemGroup>
2024-12-30 14:08:24 +08:00
<TrimmerRootDescriptor Include="Roots.xml"/>
2024-08-18 17:51:59 +08:00
</ItemGroup>
2023-07-09 09:24:41 +08:00
2024-08-18 17:51:59 +08:00
<ItemGroup>
2025-11-19 15:38:29 +08:00
<PackageReference Include="Avalonia.Desktop"/>
<PackageReference Include="Avalonia.LinuxFramebuffer"/>
2024-08-18 17:51:59 +08:00
</ItemGroup>
<ItemGroup>
2024-12-30 14:08:24 +08:00
<ProjectReference Include="..\Semi.Avalonia.Demo\Semi.Avalonia.Demo.csproj"/>
<ProjectReference Include="..\Semi.Avalonia.Demo.Fonts\Semi.Avalonia.Demo.Fonts.csproj"/>
2024-08-18 17:51:59 +08:00
</ItemGroup>
2023-07-09 09:24:41 +08:00
</Project>