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

* #298 initial hacking around better aggregation * #298 bit more hacking around * #298 abstraction over httpresponsemessage * #298 tidying up * #298 docs * #298 missed this * #306 example of how to do GraphQL
18 lines
594 B
XML
18 lines
594 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Update="configuration.json;appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6"/>
|
|
<PackageReference Include="Ocelot" Version="5.5.1"/>
|
|
<PackageReference Include="GraphQL" Version="2.0.0-alpha-870"/>
|
|
</ItemGroup>
|
|
</Project> |