sa/Stars Assistant/Stars Assistant.csproj

35 lines
1.4 KiB
XML
Raw Normal View History

2024-07-17 18:13:01 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
2024-07-19 17:08:37 +00:00
<RootNamespace>net.nehmer.sa</RootNamespace>
2024-07-17 18:13:01 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-07-23 07:40:10 +00:00
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
2024-07-17 18:13:01 +00:00
</PropertyGroup>
2024-07-23 07:40:10 +00:00
<!-- PropertyGroup>
<OutputType>WinExe</OutputType>
</PropertyGroup -->
2024-07-17 18:13:01 +00:00
2024-07-19 17:08:37 +00:00
<ItemGroup>
2024-07-23 07:40:10 +00:00
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
2024-07-19 17:08:37 +00:00
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
2024-07-23 07:40:10 +00:00
<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.10" />
2024-07-23 07:40:10 +00:00
<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" />
2024-07-19 17:08:37 +00:00
</ItemGroup>
2024-07-17 18:13:01 +00:00
</Project>