1
0
Flawless-Version-Control/Flawless.Server/Flawless.Server.csproj
cardidi d83ba632e0 proto(new): Add brand-new auth.proto
Auth part provide with 3 hub:

 - Auth.ServiceStatus
 - Auth.Token
 - Auth.User

which provides information related to authorize and authorize state check.
2024-10-16 01:52:02 +08:00

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>