mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-23 22:22:51 +08:00
17 lines
531 B
XML
17 lines
531 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="5.5.1" />
|
|
<PackageReference Include="GraphQL" Version="2.0.0-alpha-870" />
|
|
</ItemGroup>
|
|
</Project> |