35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>net.nehmer.sa</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
</PropertyGroup>
|
|
|
|
<!-- PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
</PropertyGroup -->
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
|
|
|
|
<PackageReference Include="Avalonia" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|