Skip to content

Commit

Permalink
make sure net461 is declared as framework in fsharp build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz committed Jun 19, 2019
1 parent 32a3764 commit 0dabac8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/scripts/Projects.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ module Projects =

type DotNetFramework =
| NetStandard2_0
| Net461
| NetCoreApp2_1
static member All = [NetStandard2_0]
static member All = [NetStandard2_0; Net461]
member this.Identifier =
match this with
| NetStandard2_0 -> { MSBuild = "netstandard2.0"; Nuget = "netstandard2.0"; DefineConstants = ""; }
| NetCoreApp2_1 -> { MSBuild = "netcoreapp2.1"; Nuget = "netcoreapp2.1"; DefineConstants = ""; }
| Net461 -> { MSBuild = "net461"; Nuget = "net461"; DefineConstants = ""; }

type Project =
| Nest
Expand Down

0 comments on commit 0dabac8

Please sign in to comment.