23 lines
774 B
XML
23 lines
774 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.4" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Core\Core.csproj" />
|
||
|
<ProjectReference Include="..\Infrastucture\Infrastucture.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|