2024-10-17 16:08:02 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-10-23 07:06:56 +00:00
|
|
|
|
<ItemGroup>
|
2024-11-11 20:02:21 +00:00
|
|
|
|
<PackageReference Include="ClosedXML" Version="0.104.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.8" />
|
2024-10-24 11:13:46 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkcore" Version="8.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2024-10-23 07:06:56 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
|
2024-10-24 11:13:46 +00:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
2024-10-23 07:06:56 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-10-17 16:08:02 +00:00
|
|
|
|
</Project>
|