diff --git a/src/FSharp.Control.TaskSeq.SmokeTests/FSharp.Control.TaskSeq.SmokeTests.fsproj b/src/FSharp.Control.TaskSeq.SmokeTests/FSharp.Control.TaskSeq.SmokeTests.fsproj index ce465298..5442f1b6 100644 --- a/src/FSharp.Control.TaskSeq.SmokeTests/FSharp.Control.TaskSeq.SmokeTests.fsproj +++ b/src/FSharp.Control.TaskSeq.SmokeTests/FSharp.Control.TaskSeq.SmokeTests.fsproj @@ -2,6 +2,7 @@ net6.0 + True diff --git a/src/FSharp.Control.TaskSeq.Test/FSharp.Control.TaskSeq.Test.fsproj b/src/FSharp.Control.TaskSeq.Test/FSharp.Control.TaskSeq.Test.fsproj index ffe3bbec..ceb5ab14 100644 --- a/src/FSharp.Control.TaskSeq.Test/FSharp.Control.TaskSeq.Test.fsproj +++ b/src/FSharp.Control.TaskSeq.Test/FSharp.Control.TaskSeq.Test.fsproj @@ -1,7 +1,8 @@ - + net6.0 + True diff --git a/src/FSharp.Control.TaskSeq.Test/TaskSeq.MaxMin.Tests.fs b/src/FSharp.Control.TaskSeq.Test/TaskSeq.MaxMin.Tests.fs index 1cb47865..8f122b52 100644 --- a/src/FSharp.Control.TaskSeq.Test/TaskSeq.MaxMin.Tests.fs +++ b/src/FSharp.Control.TaskSeq.Test/TaskSeq.MaxMin.Tests.fs @@ -296,7 +296,7 @@ module SideSeffects = } [)>] - let ``TaskSeq-minBy, maxBy with sequence that changes length`` (minMax: MinMax) = task { + let ``TaskSeq-minBy, maxBy with sequence that changes length`` (minMax: MinMax) = let mutable i = 0 let ts = taskSeq { @@ -311,7 +311,8 @@ module SideSeffects = else minMaxFn id ts |> Task.map (should equal v) - do! test (MinMax.getByFunction minMax) 10 - do! test (MinMax.getByFunction minMax) 20 - do! test (MinMax.getByFunction minMax) 30 - } + task { + do! test (MinMax.getByFunction minMax) 10 + do! test (MinMax.getByFunction minMax) 20 + do! test (MinMax.getByFunction minMax) 30 + } diff --git a/src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj b/src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj index 33f0ce77..297af81f 100644 --- a/src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj +++ b/src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj @@ -2,6 +2,7 @@ netstandard2.1 + True true True Computation expression 'taskSeq' for processing IAsyncEnumerable sequences and module functions @@ -27,11 +28,9 @@ Generates optimized IL code through resumable state machines, and comes with a c - - True