Skip to content

Commit 350f5cb

Browse files
committed
-.net framework
1 parent c33c188 commit 350f5cb

File tree

77 files changed

+87
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+87
-128
lines changed

Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,21 @@
3838
<MonoRoot Condition="'$(MonoRoot)' == '' and $([MSBuild]::IsOsPlatform('OSX'))">/Library/Frameworks/Mono.framework/Versions/Current</MonoRoot>
3939
<MonoLibFolder>$(MonoRoot)/lib/mono</MonoLibFolder>
4040
<MonoPackaging Condition="$(TargetFramework.StartsWith('net4'))">true</MonoPackaging>
41+
<!-- End Date: Jan 12, 2016 : net45 -->
4142
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net45'">$(MonoLibFolder)/4.5-api</FrameworkPathOverride>
43+
<!-- End Date: Jan 12, 2016 : net451 -->
4244
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net451'">$(MonoLibFolder)/4.5.1-api</FrameworkPathOverride>
45+
<!-- End Date: Apr 26, 2022 : net452 -->
4346
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net452'">$(MonoLibFolder)/4.5.2-api</FrameworkPathOverride>
47+
<!-- End Date: Apr 26, 2022 : net46 -->
4448
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net46'">$(MonoLibFolder)/4.6-api</FrameworkPathOverride>
49+
<!-- End Date: Apr 26, 2022 : net461 -->
4550
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net461'">$(MonoLibFolder)/4.6.1-api</FrameworkPathOverride>
4651
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net462'">$(MonoLibFolder)/4.6.2-api</FrameworkPathOverride>
4752
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net47'">$(MonoLibFolder)/4.7-api</FrameworkPathOverride>
4853
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net471'">$(MonoLibFolder)/4.7.1-api</FrameworkPathOverride>
4954
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net472'">$(MonoLibFolder)/4.7.2-api</FrameworkPathOverride>
55+
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net48'">$(MonoLibFolder)/4.8-api</FrameworkPathOverride>
5056
</PropertyGroup>
5157

5258
</Project>

docsrc/content/abstraction-alternative.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Alternative

docsrc/content/abstraction-applicative.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Applicative

docsrc/content/abstraction-bifoldable.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Examples
9393
--------
9494
*)
9595

96-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
96+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
9797

9898
open FSharpPlus
9999
open FSharpPlus.Control

docsrc/content/abstraction-bifunctor.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
44

5-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
5+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
66
(**
77
Bifunctor
88
=======

docsrc/content/abstraction-bitraversable.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Bitraversable

docsrc/content/abstraction-comonad.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Comonad

docsrc/content/abstraction-contravariant.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Contravariant

docsrc/content/abstraction-foldable.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Examples
8080

8181

8282

83-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
83+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
8484

8585
open FSharpPlus
8686
open FSharpPlus.Data

docsrc/content/abstraction-functor.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*** hide ***)
22
// This block of code is omitted in the generated HTML documentation. Use
33
// it to define helpers that you do not want to show in the documentation.
4-
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
4+
#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll"
55

66
(**
77
Functor

0 commit comments

Comments
 (0)