cs11dotnet7/vscode/PracticalApps/Northwind.BlazorWasm/Server/Northwind.BlazorWasm.Server.csproj

24 lines
732 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>
</PropertyGroup>
<ItemGroup>
2022-03-15 12:01:57 +01:00
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.0-*" />
2022-03-13 17:17:01 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\Northwind.BlazorWasm.Client.csproj" />
<ProjectReference Include="..\Shared\Northwind.BlazorWasm.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<!-- change Sqlite to SqlServer if you prefer -->
<ProjectReference Include="..\..\Northwind.Common.DataContext.Sqlite\Northwind.Common.DataContext.Sqlite.csproj" />
</ItemGroup>
</Project>