-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSample.AspNetCore.csproj
More file actions
23 lines (18 loc) · 719 Bytes
/
Sample.AspNetCore.csproj
File metadata and controls
23 lines (18 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<UserSecretsId>ed89c14f-ea75-4b37-83e7-078870067ffc</UserSecretsId>
<nullable>enable</nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.71.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Auth0Net.DependencyInjection\Auth0Net.DependencyInjection.csproj" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos\users.proto" GrpcServices="Server" />
</ItemGroup>
</Project>