60 lines
2.4 KiB
XML
60 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
<ApplicationIcon>res/logo.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.3.11" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.3.11" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.11" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.11" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.11">
|
|
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
|
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Lucide.Avalonia" Version="0.1.35"/>
|
|
<PackageReference Include="PdfSharp" Version="6.2.4"/>
|
|
<!-- <PackageReference Include="PdfSharp.System" Version="6.2.4"/> -->
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8"/>
|
|
</ItemGroup>
|
|
|
|
<!-- <ItemGroup>
|
|
<Reference Include="PdfSharp">
|
|
<HintPath>lib/pdfsharp/PdfSharp.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="PdfSharp.System">
|
|
<HintPath>lib/pdfsharp/PdfSharp.System.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="Microsoft.Extensions.Logging.Abstractions">
|
|
<HintPath>lib/pdfsharp/Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
</ItemGroup> -->
|
|
|
|
<ItemGroup>
|
|
<None Remove="res\logo.ico"/>
|
|
<AvaloniaResource Include="res\logo.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</AvaloniaResource>
|
|
<None Remove="res\logo.png"/>
|
|
<AvaloniaResource Include="res\logo.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</AvaloniaResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="res/fonts/*.ttf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|