[REFACTOR] Reworking auth implementation

This commit is contained in:
max
2024-12-16 02:34:30 +01:00
parent eb277e0937
commit e8438c807d
8 changed files with 81 additions and 30 deletions

View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<Folder Include="Services\" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNetCore.Components.Authorization">
<HintPath>..\..\..\.nuget\packages\microsoft.aspnetcore.components.authorization\8.0.11\lib\net8.0\Microsoft.AspNetCore.Components.Authorization.dll</HintPath>
</Reference>
</ItemGroup>
</Project>