Skip to content

Commit

Permalink
Fixed package dependencies - code contracts is not required by some t…
Browse files Browse the repository at this point in the history
…arget frameworks.
  • Loading branch information
alexshtf committed Nov 10, 2017
1 parent 331367b commit 2e9f6e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AutoDiff/Core/AutoDiff/AutoDiff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<LangVersion>6</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Diagnostics.Contracts" Version="4.0.1" />
<PackageReference Condition="$(TargetFramework) == 'netstandard1.1'" Include="System.Diagnostics.Contracts" Version="4.0.1" />
<PackageReference Condition="$(TargetFramework) == 'netstandard1.4'" Include="System.Diagnostics.Contracts" Version="4.0.1" />
<PackageReference Condition="$(TargetFramework) == 'netstandard1.6'" Include="System.Diagnostics.Contracts" Version="4.0.1" />
</ItemGroup>
</Project>

0 comments on commit 2e9f6e3

Please sign in to comment.