blob: 439e5d765ce2ba77acdd1f8b13fa8f9f84f92f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="npgsql" Version="8.0.2" />
</ItemGroup>
</Project>
|