2022-10-08 13:22:12 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2022-09-27 14:26:56 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-10-18 11:50:06 -04:00
|
|
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
|
2022-10-21 18:22:53 -04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.10">
|
2022-10-08 13:22:12 -04:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-10-21 18:22:53 -04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.10">
|
2022-10-08 13:22:12 -04:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
2022-09-27 14:26:56 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|