Web-Development-with-Blazor.../Chapter05/MyBlog/BlazorWebAssembly/Server/BlazorWebAssembly.Server.csproj
2023-02-17 15:28:17 +01:00

20 lines
527 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\BlazorWebAssembly.Client.csproj" />
<ProjectReference Include="..\Shared\BlazorWebAssembly.Shared.csproj" />
</ItemGroup>
</Project>