Web-Development-with-Blazor.../Chapter12/MyBlog/BlazorServer/BlazorServer.csproj

19 lines
475 B
XML
Raw Normal View History

2023-02-17 15:28:17 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Auth0.AspNetCore.Authentication" Version="1.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Components\Components.csproj" />
<ProjectReference Include="..\Data\Data.csproj" />
</ItemGroup>
</Project>