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

* +semver: major upgrading from net5.0 to net6.0 * packages upgraded * removed global.json for ocelot sf sample * update build image * test new build * remove make * fix tests * make test fail like in CI * tests passing locally * updated docs Co-authored-by: TGP <thomasgardham-pallister@Thomass-MacBook-Pro-2.local>
18 lines
516 B
XML
18 lines
516 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Update="ocelot.json;appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Ocelot" Version="17.0.1" />
|
|
<PackageReference Include="GraphQL" Version="4.7.1" />
|
|
</ItemGroup>
|
|
</Project>
|