GGMM/GrossesMitaines/GrossesMitainesAPI/GrossesMitainesAPI.csproj

25 lines
1.1 KiB
XML
Raw Normal View History

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>
<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>