Skip to content

Commit 78b491d

Browse files
authored
Fix netstandard2 package version (#237)
1 parent bdf075b commit 78b491d

File tree

14 files changed

+208
-301
lines changed

14 files changed

+208
-301
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"paket": {
6-
"version": "7.2.0-alpha003",
6+
"version": "8.0.0",
77
"commands": [
88
"paket"
99
]

benchmarks/paket.references

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ group Benchmarks
22
FSharp.Core
33
BenchmarkDotNet
44
BenchmarkDotNet.Annotations
5-
BenchmarkDotNet.Diagnostics.Windows
5+
BenchmarkDotNet.Diagnostics.Windows

build/build.fs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,7 @@ let initTargets () =
416416
==>! "Build"
417417

418418
"Build"
419-
==> "DotnetTest"
420-
==>! "DotnetPack"
419+
==>! "DotnetTest"
421420
//*** Dotnet Build ***//
422421

423422

paket.dependencies

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,21 @@ source https://api.nuget.org/v3/index.json
22

33

44
storage: none
5-
framework: netstandard2.0, netstandard2.1, net6.0, net7.0
6-
nuget FSharp.Core >= 7.0.0
7-
nuget Hopac
8-
nuget FSharp.Control.AsyncSeq 3.2.1
5+
96
nuget Microsoft.SourceLink.GitHub prerelease copy_local: true
10-
nuget Ply
11-
nuget Expecto
12-
nuget Expecto.Hopac
13-
nuget Microsoft.NET.Test.Sdk
14-
nuget YoloDev.Expecto.TestSdk
15-
nuget Fable.Mocha
16-
nuget Fable.Pyxpecto
17-
nuget Fable.Core >= 4.0.0
7+
188

199

2010

2111
group NetStandard2
2212
source https://api.nuget.org/v3/index.json
13+
lowest_matching: true
14+
strategy: min
2315
nuget FSharp.Core >= 4.7.2
2416
nuget Ply
2517
nuget Hopac
2618
nuget FSharp.Control.AsyncSeq
27-
nuget Expecto
28-
nuget Expecto.Hopac
29-
nuget Microsoft.NET.Test.Sdk
30-
nuget YoloDev.Expecto.TestSdk
31-
nuget Fable.Mocha
32-
nuget Fable.Pyxpecto
33-
nuget Fable.Core >= 4.0.0
19+
nuget Fable.Core >= 4.2.0
3420
framework: netstandard2.0, net6.0
3521
storage: none
3622
condition: netstandard2_0
@@ -40,21 +26,31 @@ condition: netstandard2_0
4026

4127
group NetStandard2_1
4228
source https://api.nuget.org/v3/index.json
29+
lowest_matching: true
30+
strategy: min
4331
nuget FSharp.Core >= 7.0.0
4432
nuget Hopac
4533
nuget FSharp.Control.AsyncSeq
34+
nuget IcedTasks >= 0.7.0
35+
framework: netstandard2.1, net7.0
36+
storage: none
37+
condition: netstandard2_1
38+
39+
group Test
40+
source https://api.nuget.org/v3/index.json
41+
storage: none
42+
lowest_matching: true
43+
strategy: min
44+
nuget FSharp.Core ~> 7.0.0
4645
nuget Expecto
4746
nuget Expecto.Hopac
4847
nuget Microsoft.NET.Test.Sdk
4948
nuget YoloDev.Expecto.TestSdk
49+
nuget Fable.Core
5050
nuget Fable.Mocha
51+
nuget Fable.Python
5152
nuget Fable.Pyxpecto
52-
nuget Fable.Core >= 4.0.0
53-
nuget IcedTasks >= 0.7.0
54-
framework: netstandard2.1, net7.0
55-
storage: none
56-
condition: netstandard2_1
57-
53+
nuget Ply
5854

5955
group Benchmarks
6056
source https://api.nuget.org/v3/index.json

paket.lock

Lines changed: 145 additions & 212 deletions
Large diffs are not rendered by default.

tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/Main.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ let main argv =
2222
Mocha.runTests allTests
2323
#endif
2424
#if !FABLE_COMPILER
25-
Tests.runTestsWithArgs defaultConfig argv allTests
25+
Tests.runTestsWithCLIArgs [] argv allTests
2626
#endif
Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
group NetStandard2
2-
Ply
3-
Expecto
4-
Fable.Mocha
5-
Microsoft.NET.Test.Sdk
6-
YoloDev.Expecto.TestSdk
7-
Fable.Pyxpecto
8-
9-
group NetStandard2_1
10-
Expecto
11-
Fable.Mocha
12-
Microsoft.NET.Test.Sdk
13-
YoloDev.Expecto.TestSdk
14-
Fable.Pyxpecto
1+
group Test
2+
FSharp.Core
3+
Expecto
4+
Expecto.Hopac
5+
Microsoft.NET.Test.Sdk
6+
YoloDev.Expecto.TestSdk
7+
Fable.Mocha
8+
Fable.Pyxpecto

tests/FsToolkit.ErrorHandling.IcedTasks.Tests/Main.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ open Expecto
55
module Main =
66
[<EntryPoint>]
77
let main argv =
8-
Tests.runTestsInAssembly defaultConfig argv
8+
Tests.runTestsInAssemblyWithCLIArgs [] argv

tests/FsToolkit.ErrorHandling.IcedTasks.Tests/paket.references

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
group NetStandard2_1
1+
group Test
22
Expecto
33
Microsoft.NET.Test.Sdk
44
YoloDev.Expecto.TestSdk

tests/FsToolkit.ErrorHandling.JobResult.Tests/Main.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ open Expecto
44

55
[<EntryPoint>]
66
let main argv =
7-
Tests.runTestsInAssembly defaultConfig argv
7+
Tests.runTestsInAssemblyWithCLIArgs [] argv

0 commit comments

Comments
 (0)