Skip to content

Commit

Permalink
Merge pull request #210 from bender2k14/also_target_net_framework
Browse files Browse the repository at this point in the history
Also target net45
  • Loading branch information
moodmosaic authored Jul 20, 2020
2 parents 1945cbb + 2c5950d commit 07d71bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Hedgehog/Hedgehog.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard1.6;netstandard2.0;net45</TargetFrameworks>
<Version>0.8.3</Version>
<Description>Release with confidence.</Description>
<Authors>Jacob Stanley;Nikos Baxevanis</Authors>
Expand Down
2 changes: 1 addition & 1 deletion tests/Hedgehog.CSharp.Tests/Hedgehog.CSharp.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
Expand Down
2 changes: 1 addition & 1 deletion tests/Hedgehog.Tests/GenTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ let ``dateTime shrinks to correct mid-value`` () =
}
|> Property.report
|> Report.render
|> (fun x -> x.Split System.Environment.NewLine)
|> (fun x -> x.Split ([|System.Environment.NewLine|], System.StringSplitOptions.None))
|> Array.item 1
|> System.DateTime.Parse
System.DateTime (2000, 1, 1) =! result
Expand Down
2 changes: 1 addition & 1 deletion tests/Hedgehog.Tests/Hedgehog.Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 07d71bf

Please sign in to comment.