- Removed the Blazor authentication pages and went back to Razor pages - Fixed issues with dashboard charts that were pulling data on render and causing the database context to be open longer than it should - Switched back to UserManager and RoleManager - Temporarily disabled authentication state in pages that might try to use user claims/roles - Reverted spacing changes to forms to allow for validation messages - Moved initialization of database connection to database context - Updated PostgreSQL provider - Rescaffolded MySQL migrations - Added a bunch of logging stuff that should eventually be stripped out
18 lines
536 B
XML
18 lines
536 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LANCommander.Server.Data\LANCommander.Server.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|