19 lines
460 B
XML
Raw Normal View History

2024-05-05 09:40:46 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-05-05 11:39:21 +03:00
<ItemGroup>
<PackageReference Include="Npgsql" Version="7.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarServiceDataBaseImplements\CarServiceDataBaseImplements.csproj" />
</ItemGroup>
2024-05-05 09:40:46 +03:00
</Project>