-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpaket.dependencies
52 lines (42 loc) · 1.91 KB
/
paket.dependencies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
framework: auto-detect
storage: none
source https://api.nuget.org/v3/index.json
nuget FSharp.Core >= 6.0.0 lowest_matching: true
nuget Aardvark.Build ~> 2.0.0
nuget FSharp.Data.Adaptive ~> 1.2.18
// Tests
nuget NUnit ~> 3.14.0
nuget FsUnit ~> 5.6.1
nuget NUnit3TestAdapter ~> 4.5.0
nuget Microsoft.NET.Test.Sdk ~> 17.9.0
// Group for the compiler, the adaptify .NET tool, and the MSBuild tool.
// FSharp.Compiler.Service requires a specific FSharp.Core version -> isolate in its own group.
group Compiler
framework: auto-detect
storage: none
source https://api.nuget.org/v3/index.json
nuget FSharp.Core
nuget FSharp.Compiler.Service ~> 43.9.0
nuget DotNet.Glob ~> 3.1.3
nuget Ionide.ProjInfo ~> 0.68.0
// Ionide needs Microsoft.Build.* packages implicitly (see https://github.com/ionide/proj-info/issues/154)
// Also Microsoft.Build requires different versions for different .NET versions (e.g. 17.12.X supports net9 but not net8)
// Therfore we need different versions of the adaptify tool for targeting different .NET versions...
group Net8
framework: net8
condition: NET8_0
storage: none
source https://api.nuget.org/v3/index.json
nuget Microsoft.Build ~> 17.11.4
nuget Microsoft.Build.Tasks.Core ~> 17.11.4
nuget Microsoft.Build.Framework ~> 17.11.4
nuget Microsoft.Build.Utilities.Core ~> 17.11.4
group Net9
framework: net9
condition: NET9_0
storage: none
source https://api.nuget.org/v3/index.json
nuget Microsoft.Build ~> 17.12.6
nuget Microsoft.Build.Tasks.Core ~> 17.12.6
nuget Microsoft.Build.Framework ~> 17.12.6
nuget Microsoft.Build.Utilities.Core ~> 17.12.6