Replace MSAL and custom cookie auth with Microsoft.Identity.EntityFramework Also some UI redesign to accommodate different login experience.
18 lines
510 B
XML
18 lines
510 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<AnalysisLevel>5</AnalysisLevel>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
|
<Title>Shogi Service Models</Title>
|
|
<Description>Contains DTOs use for http requests to Shogi backend services.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Api\Queries\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|