pgLabII/pgLabII.Desktop/pgLabII.Desktop.csproj

29 lines
1.1 KiB
XML
Raw Normal View History

2024-11-16 14:16:04 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
One for Windows with net8.0-windows TFM, one for MacOS with net8.0-macos and one with net8.0 TFM for Linux.-->
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
2025-08-18 19:41:36 +02:00
<Platforms>AnyCPU;x64</Platforms>
2024-11-16 14:16:04 +01:00
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
2025-08-18 19:41:36 +02:00
<PackageReference Include="Avalonia.Diagnostics">
2024-11-16 14:16:04 +01:00
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\pgLabII\pgLabII.csproj" />
</ItemGroup>
</Project>