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

* hacked together load balancing reroutes in fileconfig * some renaming and refactoring * more renames * hacked away the old config json * test for issue 213 * renamed key * dont share ports * oops * updated docs * mvoed docs around * port being used
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>0.0.0-dev</VersionPrefix>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<AssemblyName>Ocelot.ManualTest</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageId>Ocelot.ManualTest</PackageId>
|
|
<RuntimeIdentifiers>osx.10.11-x64;osx.10.12-x64;win7-x64;win10-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Views;Areas\**\Views">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="configuration.json;appsettings.json;idsrv3test.pfx">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Ocelot\Ocelot.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.0" />
|
|
<PackageReference Include="Consul" Version="0.7.2.3" />
|
|
<PackageReference Include="Polly" Version="5.3.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|