From bd180086008e848fab91ca8b4cefe01f045b48f1 Mon Sep 17 00:00:00 2001 From: Oskar Gewalli Date: Sat, 14 Oct 2023 18:34:48 +0300 Subject: [PATCH] Previous merge changes --- docsrc/content/abstraction-alternative.fsx | 2 +- docsrc/content/abstraction-applicative.fsx | 2 +- docsrc/content/abstraction-bifoldable.fsx | 2 +- docsrc/content/abstraction-bifunctor.fsx | 2 +- docsrc/content/abstraction-bitraversable.fsx | 2 +- docsrc/content/abstraction-comonad.fsx | 2 +- docsrc/content/abstraction-contravariant.fsx | 2 +- docsrc/content/abstraction-foldable.fsx | 2 +- docsrc/content/abstraction-functor.fsx | 2 +- docsrc/content/abstraction-misc.fsx | 2 +- docsrc/content/abstraction-monad.fsx | 2 +- docsrc/content/abstraction-monoid.fsx | 2 +- docsrc/content/abstraction-profunctor.fsx | 2 +- docsrc/content/abstraction-traversable.fsx | 2 +- docsrc/content/applicative-functors.fsx | 2 +- docsrc/content/computation-expressions.fsx | 2 +- docsrc/content/extension-methods.fsx | 2 +- docsrc/content/extensions.fsx | 2 +- docsrc/content/generic-doc.fsx | 2 +- docsrc/content/index.fsx | 2 +- docsrc/content/lens.fsx | 2 +- docsrc/content/numerics.fsx | 2 +- docsrc/content/operators-common.fsx | 2 +- docsrc/content/parsing.fsx | 2 +- docsrc/content/type-all.fsx | 2 +- docsrc/content/type-any.fsx | 2 +- docsrc/content/type-choicet.fsx | 2 +- docsrc/content/type-compose.fsx | 2 +- docsrc/content/type-const.fsx | 2 +- docsrc/content/type-cont.fsx | 2 +- docsrc/content/type-contt.fsx | 2 +- docsrc/content/type-coproduct.fsx | 2 +- docsrc/content/type-dlist.fsx | 2 +- docsrc/content/type-dual.fsx | 2 +- docsrc/content/type-endo.fsx | 2 +- docsrc/content/type-first.fsx | 2 +- docsrc/content/type-free.fsx | 2 +- docsrc/content/type-identity.fsx | 2 +- docsrc/content/type-kleisli.fsx | 2 +- docsrc/content/type-last.fsx | 2 +- docsrc/content/type-listt.fsx | 2 +- docsrc/content/type-matrix.fsx | 2 +- docsrc/content/type-mult.fsx | 2 +- docsrc/content/type-nonempty-map.fsx | 2 +- docsrc/content/type-nonempty-set.fsx | 2 +- docsrc/content/type-nonempty.fsx | 2 +- docsrc/content/type-optiont.fsx | 2 +- docsrc/content/type-parallelarray.fsx | 2 +- docsrc/content/type-reader.fsx | 2 +- docsrc/content/type-readert.fsx | 2 +- docsrc/content/type-resultt.fsx | 2 +- docsrc/content/type-state.fsx | 2 +- docsrc/content/type-statet.fsx | 2 +- docsrc/content/type-validation.fsx | 2 +- docsrc/content/type-vector.fsx | 2 +- docsrc/content/type-writer.fsx | 2 +- docsrc/content/type-writert.fsx | 2 +- docsrc/content/type-ziplist.fsx | 2 +- .../FSharpPlusFable.Tests/FSharpPlusFable.Tests.fsproj | 10 ---------- 59 files changed, 58 insertions(+), 68 deletions(-) diff --git a/docsrc/content/abstraction-alternative.fsx b/docsrc/content/abstraction-alternative.fsx index 509687ef3..c44440264 100644 --- a/docsrc/content/abstraction-alternative.fsx +++ b/docsrc/content/abstraction-alternative.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Alternative diff --git a/docsrc/content/abstraction-applicative.fsx b/docsrc/content/abstraction-applicative.fsx index ffd4f1e5f..94eb91cac 100644 --- a/docsrc/content/abstraction-applicative.fsx +++ b/docsrc/content/abstraction-applicative.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Applicative diff --git a/docsrc/content/abstraction-bifoldable.fsx b/docsrc/content/abstraction-bifoldable.fsx index 534d1a6f9..3d8fb12e0 100644 --- a/docsrc/content/abstraction-bifoldable.fsx +++ b/docsrc/content/abstraction-bifoldable.fsx @@ -94,7 +94,7 @@ Examples -------- *) -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus open FSharpPlus.Control diff --git a/docsrc/content/abstraction-bifunctor.fsx b/docsrc/content/abstraction-bifunctor.fsx index 8452f3683..7863e501e 100644 --- a/docsrc/content/abstraction-bifunctor.fsx +++ b/docsrc/content/abstraction-bifunctor.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Bifunctor ======= diff --git a/docsrc/content/abstraction-bitraversable.fsx b/docsrc/content/abstraction-bitraversable.fsx index 9c594389b..f41a72897 100644 --- a/docsrc/content/abstraction-bitraversable.fsx +++ b/docsrc/content/abstraction-bitraversable.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Bitraversable diff --git a/docsrc/content/abstraction-comonad.fsx b/docsrc/content/abstraction-comonad.fsx index f05ee0448..2a18d3164 100644 --- a/docsrc/content/abstraction-comonad.fsx +++ b/docsrc/content/abstraction-comonad.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Comonad diff --git a/docsrc/content/abstraction-contravariant.fsx b/docsrc/content/abstraction-contravariant.fsx index da97b7175..1932bc072 100644 --- a/docsrc/content/abstraction-contravariant.fsx +++ b/docsrc/content/abstraction-contravariant.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Contravariant diff --git a/docsrc/content/abstraction-foldable.fsx b/docsrc/content/abstraction-foldable.fsx index 90149d1df..0dfd35df1 100644 --- a/docsrc/content/abstraction-foldable.fsx +++ b/docsrc/content/abstraction-foldable.fsx @@ -81,7 +81,7 @@ Examples -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus open FSharpPlus.Data diff --git a/docsrc/content/abstraction-functor.fsx b/docsrc/content/abstraction-functor.fsx index 0469f3d86..be70ca172 100644 --- a/docsrc/content/abstraction-functor.fsx +++ b/docsrc/content/abstraction-functor.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Functor diff --git a/docsrc/content/abstraction-misc.fsx b/docsrc/content/abstraction-misc.fsx index 538f70abd..bd103b0b3 100644 --- a/docsrc/content/abstraction-misc.fsx +++ b/docsrc/content/abstraction-misc.fsx @@ -16,7 +16,7 @@ Here are some other abstractions, not present in the diagram. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open System open FSharpPlus diff --git a/docsrc/content/abstraction-monad.fsx b/docsrc/content/abstraction-monad.fsx index 8a9200b5b..eb1fce5ad 100644 --- a/docsrc/content/abstraction-monad.fsx +++ b/docsrc/content/abstraction-monad.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Monad diff --git a/docsrc/content/abstraction-monoid.fsx b/docsrc/content/abstraction-monoid.fsx index da627346a..25c467606 100644 --- a/docsrc/content/abstraction-monoid.fsx +++ b/docsrc/content/abstraction-monoid.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Monoid diff --git a/docsrc/content/abstraction-profunctor.fsx b/docsrc/content/abstraction-profunctor.fsx index 688837628..e8ac497ca 100644 --- a/docsrc/content/abstraction-profunctor.fsx +++ b/docsrc/content/abstraction-profunctor.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Profunctor diff --git a/docsrc/content/abstraction-traversable.fsx b/docsrc/content/abstraction-traversable.fsx index e311912a6..411cb8a52 100644 --- a/docsrc/content/abstraction-traversable.fsx +++ b/docsrc/content/abstraction-traversable.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Traversable diff --git a/docsrc/content/applicative-functors.fsx b/docsrc/content/applicative-functors.fsx index 7d9b81c9a..3252bc7c9 100644 --- a/docsrc/content/applicative-functors.fsx +++ b/docsrc/content/applicative-functors.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Functors and Applicatives diff --git a/docsrc/content/computation-expressions.fsx b/docsrc/content/computation-expressions.fsx index 3e4314ed9..6f125148d 100644 --- a/docsrc/content/computation-expressions.fsx +++ b/docsrc/content/computation-expressions.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus open FSharpPlus.Data diff --git a/docsrc/content/extension-methods.fsx b/docsrc/content/extension-methods.fsx index dfb12634f..407bf610d 100644 --- a/docsrc/content/extension-methods.fsx +++ b/docsrc/content/extension-methods.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus (** diff --git a/docsrc/content/extensions.fsx b/docsrc/content/extensions.fsx index f27cfad25..bb38da66a 100644 --- a/docsrc/content/extensions.fsx +++ b/docsrc/content/extensions.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Extensions diff --git a/docsrc/content/generic-doc.fsx b/docsrc/content/generic-doc.fsx index d57f5246e..9dfeece0c 100644 --- a/docsrc/content/generic-doc.fsx +++ b/docsrc/content/generic-doc.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus (** diff --git a/docsrc/content/index.fsx b/docsrc/content/index.fsx index dedb7df5f..ce5baf743 100644 --- a/docsrc/content/index.fsx +++ b/docsrc/content/index.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** FSharpPlus diff --git a/docsrc/content/lens.fsx b/docsrc/content/lens.fsx index 4918a1444..37c3815ef 100644 --- a/docsrc/content/lens.fsx +++ b/docsrc/content/lens.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Lens diff --git a/docsrc/content/numerics.fsx b/docsrc/content/numerics.fsx index d0e3003dd..8fdacae31 100644 --- a/docsrc/content/numerics.fsx +++ b/docsrc/content/numerics.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus (** diff --git a/docsrc/content/operators-common.fsx b/docsrc/content/operators-common.fsx index 853a6a335..f309e5996 100644 --- a/docsrc/content/operators-common.fsx +++ b/docsrc/content/operators-common.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus (** diff --git a/docsrc/content/parsing.fsx b/docsrc/content/parsing.fsx index 4df42f858..09d7aa09d 100644 --- a/docsrc/content/parsing.fsx +++ b/docsrc/content/parsing.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. open System -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus (** # Parsing diff --git a/docsrc/content/type-all.fsx b/docsrc/content/type-all.fsx index 334a42eec..c9e96f19f 100644 --- a/docsrc/content/type-all.fsx +++ b/docsrc/content/type-all.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** All diff --git a/docsrc/content/type-any.fsx b/docsrc/content/type-any.fsx index 0bb7aefb9..efdc9e7d6 100644 --- a/docsrc/content/type-any.fsx +++ b/docsrc/content/type-any.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Any diff --git a/docsrc/content/type-choicet.fsx b/docsrc/content/type-choicet.fsx index c5da2144a..9eb6099f0 100644 --- a/docsrc/content/type-choicet.fsx +++ b/docsrc/content/type-choicet.fsx @@ -10,6 +10,6 @@ Examples *) -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus \ No newline at end of file diff --git a/docsrc/content/type-compose.fsx b/docsrc/content/type-compose.fsx index 3849495ef..674a7e4a4 100644 --- a/docsrc/content/type-compose.fsx +++ b/docsrc/content/type-compose.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Compose diff --git a/docsrc/content/type-const.fsx b/docsrc/content/type-const.fsx index 0e1f19438..d908c9753 100644 --- a/docsrc/content/type-const.fsx +++ b/docsrc/content/type-const.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Const<'T,'U> ============ diff --git a/docsrc/content/type-cont.fsx b/docsrc/content/type-cont.fsx index a89be5fb5..9ab3b3669 100644 --- a/docsrc/content/type-cont.fsx +++ b/docsrc/content/type-cont.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Cont<'R,'U> diff --git a/docsrc/content/type-contt.fsx b/docsrc/content/type-contt.fsx index 1331c6f3f..549fe4532 100644 --- a/docsrc/content/type-contt.fsx +++ b/docsrc/content/type-contt.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! diff --git a/docsrc/content/type-coproduct.fsx b/docsrc/content/type-coproduct.fsx index 753314c25..438e6b391 100644 --- a/docsrc/content/type-coproduct.fsx +++ b/docsrc/content/type-coproduct.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! diff --git a/docsrc/content/type-dlist.fsx b/docsrc/content/type-dlist.fsx index 23a829a1c..23c946ac6 100644 --- a/docsrc/content/type-dlist.fsx +++ b/docsrc/content/type-dlist.fsx @@ -2,7 +2,7 @@ // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** DList diff --git a/docsrc/content/type-dual.fsx b/docsrc/content/type-dual.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-dual.fsx +++ b/docsrc/content/type-dual.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-endo.fsx b/docsrc/content/type-endo.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-endo.fsx +++ b/docsrc/content/type-endo.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-first.fsx b/docsrc/content/type-first.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-first.fsx +++ b/docsrc/content/type-first.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-free.fsx b/docsrc/content/type-free.fsx index 4dcb934bb..c886aff5d 100644 --- a/docsrc/content/type-free.fsx +++ b/docsrc/content/type-free.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Free<'Functor<'T>, 'T> ====================== diff --git a/docsrc/content/type-identity.fsx b/docsrc/content/type-identity.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-identity.fsx +++ b/docsrc/content/type-identity.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-kleisli.fsx b/docsrc/content/type-kleisli.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-kleisli.fsx +++ b/docsrc/content/type-kleisli.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-last.fsx b/docsrc/content/type-last.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-last.fsx +++ b/docsrc/content/type-last.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-listt.fsx b/docsrc/content/type-listt.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-listt.fsx +++ b/docsrc/content/type-listt.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-matrix.fsx b/docsrc/content/type-matrix.fsx index 6e86c9204..4258dd9ba 100644 --- a/docsrc/content/type-matrix.fsx +++ b/docsrc/content/type-matrix.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" #r @"../../src/FSharpPlus.TypeLevel/bin/Release/net45/FSharpPlus.TypeLevel.dll" (** diff --git a/docsrc/content/type-mult.fsx b/docsrc/content/type-mult.fsx index c5da2144a..9eb6099f0 100644 --- a/docsrc/content/type-mult.fsx +++ b/docsrc/content/type-mult.fsx @@ -10,6 +10,6 @@ Examples *) -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus \ No newline at end of file diff --git a/docsrc/content/type-nonempty-map.fsx b/docsrc/content/type-nonempty-map.fsx index b56ce988f..53c4bc450 100644 --- a/docsrc/content/type-nonempty-map.fsx +++ b/docsrc/content/type-nonempty-map.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** NonEmptyMap<'Key, 'Value> ================ diff --git a/docsrc/content/type-nonempty-set.fsx b/docsrc/content/type-nonempty-set.fsx index 89584754a..0bd1365f2 100644 --- a/docsrc/content/type-nonempty-set.fsx +++ b/docsrc/content/type-nonempty-set.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** NonEmptySet<'T> ================ diff --git a/docsrc/content/type-nonempty.fsx b/docsrc/content/type-nonempty.fsx index 3bc935630..ddfcd2d64 100644 --- a/docsrc/content/type-nonempty.fsx +++ b/docsrc/content/type-nonempty.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** NonEmptyList<'T> ================ diff --git a/docsrc/content/type-optiont.fsx b/docsrc/content/type-optiont.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-optiont.fsx +++ b/docsrc/content/type-optiont.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-parallelarray.fsx b/docsrc/content/type-parallelarray.fsx index f67f00a2f..8eeb15681 100644 --- a/docsrc/content/type-parallelarray.fsx +++ b/docsrc/content/type-parallelarray.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** ParallelArray<'T> ================= diff --git a/docsrc/content/type-reader.fsx b/docsrc/content/type-reader.fsx index a5fe390f8..5e516eba3 100644 --- a/docsrc/content/type-reader.fsx +++ b/docsrc/content/type-reader.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Reader<'R,'T> ============= diff --git a/docsrc/content/type-readert.fsx b/docsrc/content/type-readert.fsx index c33b4ec3b..b6da36f54 100644 --- a/docsrc/content/type-readert.fsx +++ b/docsrc/content/type-readert.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-resultt.fsx b/docsrc/content/type-resultt.fsx index ac415a163..c0fd33567 100644 --- a/docsrc/content/type-resultt.fsx +++ b/docsrc/content/type-resultt.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** TO-DO Add some docs here ! ========================= diff --git a/docsrc/content/type-state.fsx b/docsrc/content/type-state.fsx index 77c675c7c..e47190152 100644 --- a/docsrc/content/type-state.fsx +++ b/docsrc/content/type-state.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** State<'S,'T> ============ diff --git a/docsrc/content/type-statet.fsx b/docsrc/content/type-statet.fsx index c5da2144a..9eb6099f0 100644 --- a/docsrc/content/type-statet.fsx +++ b/docsrc/content/type-statet.fsx @@ -10,6 +10,6 @@ Examples *) -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus \ No newline at end of file diff --git a/docsrc/content/type-validation.fsx b/docsrc/content/type-validation.fsx index fda0393aa..3e0738849 100644 --- a/docsrc/content/type-validation.fsx +++ b/docsrc/content/type-validation.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Validation<'Error, 'T> ====================== diff --git a/docsrc/content/type-vector.fsx b/docsrc/content/type-vector.fsx index 3c968c00f..4402f7bce 100644 --- a/docsrc/content/type-vector.fsx +++ b/docsrc/content/type-vector.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" #r @"../../src/FSharpPlus.TypeLevel/bin/Release/net45/FSharpPlus.TypeLevel.dll" (** diff --git a/docsrc/content/type-writer.fsx b/docsrc/content/type-writer.fsx index ecb3b78bf..76513a840 100644 --- a/docsrc/content/type-writer.fsx +++ b/docsrc/content/type-writer.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** Writer<'Monoid,'T> ================== diff --git a/docsrc/content/type-writert.fsx b/docsrc/content/type-writert.fsx index c5da2144a..9eb6099f0 100644 --- a/docsrc/content/type-writert.fsx +++ b/docsrc/content/type-writert.fsx @@ -10,6 +10,6 @@ Examples *) -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" open FSharpPlus \ No newline at end of file diff --git a/docsrc/content/type-ziplist.fsx b/docsrc/content/type-ziplist.fsx index 491e7361c..2b0e29d82 100644 --- a/docsrc/content/type-ziplist.fsx +++ b/docsrc/content/type-ziplist.fsx @@ -1,7 +1,7 @@ (*** hide ***) // This block of code is omitted in the generated HTML documentation. Use // it to define helpers that you do not want to show in the documentation. -#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll" +#r @"../../src/FSharpPlus/bin/Release/netstandard2.0/FSharpPlus.dll" (** ZipList<'T> =========== diff --git a/tests/FSharpPlusFable.Tests/FSharpPlusFable.Tests.fsproj b/tests/FSharpPlusFable.Tests/FSharpPlusFable.Tests.fsproj index c1b6bd6d0..170b7d0e2 100644 --- a/tests/FSharpPlusFable.Tests/FSharpPlusFable.Tests.fsproj +++ b/tests/FSharpPlusFable.Tests/FSharpPlusFable.Tests.fsproj @@ -11,16 +11,6 @@ net6.0 - - Exe - Debug;Release;Fable;Fable3 - AnyCPU - 6.0 - $(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_FAKE - $(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_3;FABLE_COMPILER_FAKE - net6.0 - -