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

* #296 renamed configuration.json to ocelot.json in preparation * removed things we dont need for tests * another file we dont need * removed some async we dont need * refactoring to consolidate configuration code * removed another pointless abstraction * #296 started writing merge code * #296 coming up with ideas for this config merging * #296 still hacking this idea around * #296 will now do a crappy merge on the configuration * #296 change so tests pass on windows
41 lines
2.0 KiB
XML
41 lines
2.0 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>
|
|
<CodeAnalysisRuleSet>..\..\codeanalysis.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Update="Views;Areas\**\Views">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="ocelot.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.6" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.1" />
|
|
<PackageReference Include="Consul" Version="0.7.2.4" />
|
|
<PackageReference Include="Polly" Version="5.8.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project> |