SUBD-Petrushin-Egor-PIbd-22/TaskTrackerRestApi/TaskTrackerRestApi.csproj
2024-05-14 22:01:34 +04:00

23 lines
783 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TaskTrackerBusinessLogics\TaskTrackerBusinessLogics.csproj" />
<ProjectReference Include="..\TaskTrackerDatabase\TaskTrackerDatabase.csproj" />
</ItemGroup>
</Project>