also from csproj files excluded direct specification of runtime to make compile happy if on a system we have higher version.
14 lines
482 B
XML
14 lines
482 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.4</TargetFramework>
|
|
<RootNamespace>Microsoft.eShopOnContainers.BuildingBlocks.Resilience.Http</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.1.2" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
|
<PackageReference Include="Polly" Version="5.1.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |