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>
|
|
|
|
|
|
<UserSecretsId>aspnet-Northwind.Mvc-32868776-9AE7-4BFC-8CB8-DFDC975ABEA5</UserSecretsId>
|
2022-09-24 10:10:26 +02:00
|
|
|
|
|
|
|
|
|
|
<!--remove the elements below after GA release-->
|
|
|
|
|
|
<LangVersion>preview</LangVersion>
|
|
|
|
|
|
<EnablePreviewFeatures>true</EnablePreviewFeatures>
|
|
|
|
|
|
</PropertyGroup>
|
2022-03-13 17:17:01 +01:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-03-15 12:01:57 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.0-*" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0-*" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.0-*" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0-*" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0-*" />
|
2022-03-13 17:17:01 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<!-- change Sqlite to SqlServer if you prefer -->
|
|
|
|
|
|
<ProjectReference Include="..\Northwind.Common.DataContext.Sqlite\Northwind.Common.DataContext.Sqlite.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="wwwroot\images\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-03-15 12:01:57 +01:00
|
|
|
|
<ItemGroup>
|
2022-09-24 10:10:26 +02:00
|
|
|
|
<RuntimeHostConfigurationOption Include="System.Net.SocketsHttpHandler.Http3Support" Value="true" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Update="wwwroot\favicon.ico">
|
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
</Content>
|
2022-03-15 12:01:57 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-03-13 17:17:01 +01:00
|
|
|
|
</Project>
|