Auth part provide with 3 hub: - Auth.ServiceStatus - Auth.Token - Auth.User which provides information related to authorize and authorize state check.
23 lines
860 B
XML
23 lines
860 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
<Protobuf Include="..\Flawless.Shared\Protos\*.proto" GrpcServices="Server"/>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.57.0"/>
|
|
<Protobuf Update="..\Flawless.Shared\Protos\auth.proto">
|
|
<Link>Protos\auth.proto</Link>
|
|
</Protobuf>
|
|
<Protobuf Update="..\Flawless.Shared\Protos\auth_token.proto">
|
|
<Link>Protos\auth_token.proto</Link>
|
|
</Protobuf>
|
|
</ItemGroup>
|
|
|
|
</Project>
|