-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGateway.Api.csproj
More file actions
24 lines (19 loc) · 880 Bytes
/
Gateway.Api.csproj
File metadata and controls
24 lines (19 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="handlers\ApiKeyHandler.cs" />
<Compile Remove="handlers\NoEncodingHandler.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.8" />
<PackageReference Include="MMLib.SwaggerForOcelot" Version="9.0.0" />
<PackageReference Include="Ocelot" Version="24.0.1" />
<PackageReference Include="Ocelot.Cache.CacheManager" Version="24.0.0" />
<PackageReference Include="Ocelot.Provider.Consul" Version="24.0.0" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties ocelot_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
</Project>