You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
984 B
XML
27 lines
984 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.3" />
|
|
<PackageReference Include="Minio" Version="6.0.4" />
|
|
<PackageReference Include="WindowsAPICodePack-Shell" Version="1.1.1" />
|
|
<PackageReference Include="WPF-UI" Version="4.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|