Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.OcelotGateway/Yi.Framework.OcelotGateway.csproj

25 lines
803 B
XML
Raw Normal View History

2022-04-02 17:44:50 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2021-10-20 18:03:43 +08:00
<PropertyGroup>
2021-12-25 14:50:54 +08:00
<TargetFramework>net6.0</TargetFramework>
2022-04-02 17:44:50 +08:00
<Nullable>enable</Nullable>
2021-10-20 18:03:43 +08:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2022-04-02 17:44:50 +08:00
<DocumentationFile>./Config/SwaggerDoc.xml</DocumentationFile>
2021-10-20 18:03:43 +08:00
<NoWarn>1701;1702;CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
2021-12-25 14:50:54 +08:00
<PackageReference Include="Ocelot" Version="17.0.1" />
<PackageReference Include="Ocelot.Cache.CacheManager" Version="17.0.1" />
<PackageReference Include="Ocelot.Provider.Consul" Version="17.0.1" />
<PackageReference Include="Ocelot.Provider.Polly" Version="17.0.1" />
2021-10-20 18:03:43 +08:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Yi.Framework.WebCore\Yi.Framework.WebCore.csproj" />
</ItemGroup>
</Project>