blob: 1f94eab10f35566cb22676de7e0885366f86caf7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.2" />
<PackageReference Include="MySqlConnector" Version="2.1.7" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<Watch Include="**\*.cs" />
</ItemGroup>
</Project>
|