CourseWork_EventVisitor/EventVisitor/EventVisitorDatabase/EventVisitorDatabase.csproj

21 lines
663 B
XML
Raw Normal View History

2024-11-03 01:20:30 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
<PackageReference Include="Npgsql" Version="8.0.5" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventVisitorLogic\EventVisitorLogic.csproj" />
<ProjectReference Include="..\EventVisitorModels\EventVisitorModels.csproj" />
</ItemGroup>
</Project>