32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<AvaloniaResource Include="Assets\**" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Avalonia" Version="11.3.12" />
|
||
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
|
||
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
|
||
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
|
||
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
|
||
|
|
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
||
|
|
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
||
|
|
</PackageReference>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\Num.Roto.Visualization\Math\Num.Roto.Visualization.Math.csproj" />
|
||
|
|
<ProjectReference Include="..\..\Num.Roto.Visualization\SceneGraph\Num.Roto.Visualization.SceneGraph.csproj" />
|
||
|
|
<ProjectReference Include="..\NamedPipes\NamedPipes.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|