mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-26 08:12:49 +08:00
24 lines
627 B
XML
24 lines
627 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="ocelot.json;appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Ocelot" Version="13.5.1" />
|
|
<PackageReference Include="Ocelot.Provider.Eureka" Version="13.5.1" />
|
|
<PackageReference Include="Ocelot.Provider.Polly" Version="13.5.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|