Files
Progrart/Progrart.Desktop/Progrart.Desktop.csproj
T

33 lines
1.4 KiB
XML
Raw Normal View History

2025-12-14 00:25:51 +11:00
<Project Sdk="Microsoft.NET.Sdk">
2026-01-10 03:40:54 +11:00
<PropertyGroup>
<OutputType>WinExe</OutputType><!--If you are willing to use platform-specific APIs, use conditional compilation.
2025-12-14 00:25:51 +11:00
See https://docs.avaloniaui.net/docs/guides/platforms/platform-specific-code/dotnet for more details.-->
2026-01-10 03:40:54 +11:00
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<AssemblyName>ProgrartDesktop</AssemblyName>
2026-01-10 03:40:54 +11:00
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>progrart_app_icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="progrart_app_icon.ico"/>
2026-01-10 03:40:54 +11:00
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="Progrart"/>
<TrimmerRootAssembly Include="Progrart.Core"/>
<TrimmerRootAssembly Include="Jint"/>
2026-01-10 03:40:54 +11:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop"/><!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
2026-01-10 03:40:54 +11:00
<PackageReference Include="Avalonia.Diagnostics">
<IncludeAssets Condition="&apos;$(Configuration)&apos; != &apos;Debug&apos;">None</IncludeAssets>
<PrivateAssets Condition="&apos;$(Configuration)&apos; != &apos;Debug&apos;">All</PrivateAssets>
2026-01-10 03:40:54 +11:00
</PackageReference>
<PackageReference Include="SkiaSharp.NativeAssets.Linux"/>
2026-01-10 03:40:54 +11:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Progrart\Progrart.csproj"/>
2026-01-10 03:40:54 +11:00
</ItemGroup>
</Project>