Skip to content

Commit

Permalink
GM.Redis targets netstandard1.5 and depends on SE.Redis 1.2.6 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia authored Sep 4, 2017
1 parent e754499 commit 9f6ad4d
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions src/Greentube.Monitoring.Redis/Greentube.Monitoring.Redis.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard1.3;net46</TargetFrameworks>
<TargetFrameworks>netstandard1.5</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Greentube.Monitoring.Redis</AssemblyName>
<PackageVersion>0.0.0</PackageVersion>
Expand All @@ -10,8 +10,7 @@
<Description>Redis health monitor for Greentube.Monitoring allowing probes and health check of Redis databases</Description>
<PackageTags>redis;health-checks;monitor;health;load-balancer</PackageTags>
<PackageProjectUrl>https://github.com/Greentube/monitoring</PackageProjectUrl>
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.3' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
Expand All @@ -23,7 +22,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Coverage|AnyCPU'">
<DebugType>full</DebugType>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\GlobalAssemblyInfo.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
</ItemGroup>
Expand All @@ -32,14 +31,9 @@
<ProjectReference Include="..\Greentube.Monitoring\Greentube.Monitoring.csproj" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<PackageReference Include="StackExchange.Redis" Version="1.1.604-alpha" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<PackageReference Include="StackExchange.Redis" Version="1.0.488" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<ItemGroup>
<PackageReference Include="StackExchange.Redis" Version="1.2.6" />
</ItemGroup>

</Project>

0 comments on commit 9f6ad4d

Please sign in to comment.