Skip to content

Commit

Permalink
Downgrade FsCheck to 2.7.0 - See fscheck/FsCheck#380
Browse files Browse the repository at this point in the history
Target .net framework net452 and net461
  • Loading branch information
blumu committed Aug 26, 2017
1 parent 4b3b09a commit c55c9f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion FSharpLu.Json/FSharpLu.Json.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net452;net461</TargetFrameworks>
<PackageId>Microsoft.FSharpLu.Json</PackageId>
<Authors>[email protected]</Authors>
<Company>Microsoft</Company>
Expand Down
4 changes: 2 additions & 2 deletions FSharpLu.Tests/FSharpLu.Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<TargetFrameworks>net452;net461</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
Expand All @@ -10,9 +10,9 @@
<Content Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsCheck" Version="2.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.1.18" />
<PackageReference Include="MSTest.TestFramework" Version="1.1.18" />
<PackageReference Include="FsCheck" Version="2.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharpLu.Json\FSharpLu.Json.fsproj" />
Expand Down
9 changes: 7 additions & 2 deletions FSharpLu/FSharpLu.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<TargetFrameworks>net452;net461</TargetFrameworks>
<Authors>[email protected]</Authors>
<PackageProjectUrl>https://github.com/Microsoft/fsharplu</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Microsoft/fsharplu/blob/master/LICENSE.MD</PackageLicenseUrl>
Expand Down Expand Up @@ -33,9 +33,14 @@
<Compile Include="AssemblyInfo.fs" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<PackageReference Include="System.Configuration" Version="2.0.5" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
<Reference Include="System.Configuration" />
</ItemGroup>


</Project>

0 comments on commit c55c9f7

Please sign in to comment.