mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-24 09:32:51 +08:00
18 lines
516 B
XML
18 lines
516 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.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="14.0.9" />
|
|
<PackageReference Include="GraphQL" Version="3.1.5" />
|
|
</ItemGroup>
|
|
</Project>
|