mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-05 05:02:50 +08:00
22 lines
885 B
XML
22 lines
885 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<Description>Stateless Web Service for Stateful OcelotApplicationApiGateway App</Description>
|
|
<Authors> </Authors>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>OcelotApplicationApiGateway</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageId>OcelotApplicationApiGateway</PackageId>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Update="ocelot.json;appsettings.json;">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.ServiceFabric" Version="6.1.456" />
|
|
<PackageReference Include="Microsoft.ServiceFabric.Services" Version="3.0.456" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\src\Ocelot\Ocelot.csproj" />
|
|
</ItemGroup>
|
|
</Project> |