2022-03-13 17:17:01 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
|
2022-03-15 12:01:57 +01:00
|
|
|
|
|
|
|
|
|
|
<!--remove the elements below after GA release-->
|
|
|
|
|
|
<LangVersion>preview</LangVersion>
|
|
|
|
|
|
<EnablePreviewFeatures>true</EnablePreviewFeatures>
|
2022-03-13 17:17:01 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="7.0.0-*" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<!-- change Sqlite to SqlServer if you prefer -->
|
|
|
|
|
|
<ProjectReference Include="..\Northwind.Common.DataContext.Sqlite\Northwind.Common.DataContext.Sqlite.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Using Include="System.Console" Static="true" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|