cs11dotnet7/vscode/PracticalApps/Northwind.Web/Northwind.Web.csproj

24 lines
727 B
XML
Raw Normal View History

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>
2022-03-15 12:01:57 +01:00
<!--remove the elements below after GA release-->
2022-03-13 17:17:01 +01:00
<LangVersion>preview</LangVersion>
2022-03-15 12:01:57 +01:00
<EnablePreviewFeatures>true</EnablePreviewFeatures>
2022-03-13 17:17:01 +01:00
</PropertyGroup>
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
<!-- change Sqlite to SqlServer if you prefer -->
<ItemGroup>
<ProjectReference Include="..\Northwind.Common.DataContext.Sqlite\Northwind.Common.DataContext.Sqlite.csproj" />
<ProjectReference Include="..\Northwind.Razor.Employees\Northwind.Razor.Employees.csproj" />
</ItemGroup>
</Project>