mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-24 12:32:49 +08:00

* Upgrading nugets * doc changes * more changes to remove warnings * one more fix * one more fix * forcing the build
17 lines
522 B
XML
17 lines
522 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Update="ocelot.json;appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Ocelot" Version="14.0.9" />
|
|
<PackageReference Include="GraphQL" Version="2.4.0" />
|
|
</ItemGroup>
|
|
</Project> |