2024-07-17 18:13:01 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-11-10 20:24:33 +00:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-07-17 18:13:01 +00:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-08-15 19:46:43 +00:00
|
|
|
|
<RootNamespace>StarsAssistant</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-11-10 20:24:33 +00:00
|
|
|
|
<LangVersion>default</LangVersion>
|
2024-07-17 18:13:01 +00:00
|
|
|
|
</PropertyGroup>
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
2024-07-31 15:50:03 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
|
|
|
|
</ItemGroup>
|
2024-07-17 18:13:01 +00:00
|
|
|
|
|
2024-07-19 17:08:37 +00:00
|
|
|
|
<ItemGroup>
|
2024-11-10 20:24:33 +00:00
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.2.0" />
|
2024-07-19 17:08:37 +00:00
|
|
|
|
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
2024-10-04 17:05:23 +00:00
|
|
|
|
<!-- PackageReference Include="DynamicData" Version="9.0.4" /-->
|
2024-09-23 20:40:18 +00:00
|
|
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="2.1.10" />
|
2024-11-10 20:24:33 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
2024-11-10 20:24:33 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="11.2.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.2.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.2.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.0" />
|
2024-07-23 07:40:10 +00:00
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
2024-11-10 20:24:33 +00:00
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.0" />
|
|
|
|
|
<PackageReference Include="ReactiveUI.SourceGenerators" Version="2.0.17">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Splat" Version="15.2.22" />
|
2024-08-23 15:59:02 +00:00
|
|
|
|
<PackageReference Include="System.Reactive" Version="6.0.1" />
|
2024-07-19 17:08:37 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-07-17 18:13:01 +00:00
|
|
|
|
</Project>
|