Skip to content

Commit c92b005

Browse files
dsymeDon Syme
andauthored
update FCS, allow fsdocs to roll forward to net5.0 (#621)
* roll forward to net5 * roll forward SDK * remove global.json * remove debug code * debug code * right script location * update matrix * update to 38.0.2 * fix build * fix tests on 5.0 * fix tests on 5.0 * fix tests * fix tests on 5.0 * fix tests on 5.0 Co-authored-by: Don Syme <[email protected]>
1 parent 34814bf commit c92b005

Some content is hidden

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

42 files changed

+658
-371
lines changed

.github/workflows/pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
dotnet: [3.1.302]
15+
dotnet: [3.1.302, 5.0.100]
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:

docs/apidocs.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** condition: prepare ***)
22
#nowarn "211"
3-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
3+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
44
#r "FSharp.Formatting.Common.dll"
55
#r "FSharp.Formatting.Markdown.dll"
66
#r "FSharp.Formatting.CodeFormat.dll"

docs/codeformat.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** condition: prepare ***)
22
#nowarn "211"
3-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
3+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
44
#r "FSharp.Formatting.Common.dll"
55
#r "FSharp.Formatting.Markdown.dll"
66
#r "FSharp.Formatting.CodeFormat.dll"

docs/content.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** condition: prepare ***)
22
#nowarn "211"
3-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
3+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
44
#r "FSharp.Formatting.Common.dll"
55
#r "FSharp.Formatting.Markdown.dll"
66
#r "FSharp.Formatting.CodeFormat.dll"

docs/evaluation.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** condition: prepare ***)
22
#nowarn "211"
3-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
3+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
44
#r "FSharp.Formatting.Common.dll"
55
#r "FSharp.Formatting.Markdown.dll"
66
#r "FSharp.Formatting.CodeFormat.dll"

docs/literate.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** condition: prepare ***)
22
#nowarn "211"
3-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
3+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
44
#r "FSharp.Formatting.Common.dll"
55
#r "FSharp.Formatting.Markdown.dll"
66
#r "FSharp.Formatting.CodeFormat.dll"
@@ -177,7 +177,7 @@ A header may be needed to get the code to load, a typical example is this:
177177
178178
(*** condition: prepare ***)
179179
#nowarn "211"
180-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
180+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
181181
#r "FSharp.Formatting.Common.dll"
182182
#r "FSharp.Formatting.Markdown.dll"
183183
#r "FSharp.Formatting.CodeFormat.dll"

docs/markdown.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** condition: prepare ***)
2-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
2+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
33
#r "FSharp.Formatting.Common.dll"
44
#r "FSharp.Formatting.Markdown.dll"
55
(*** condition: fsx ***)

global.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

paket.dependencies

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
version 5.249.0
22
source https://api.nuget.org/v3/index.json
3+
source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json
34
framework: auto-detect
45
storage: none
56

67
nuget FSharp.Core >= 4.7 lowest_matching:true
7-
nuget FSharp.Compiler.Service ~> 36.0
8+
nuget FSharp.Compiler.Service 38.0.2
89
nuget CommandLineParser ~> 2.8
10+
nuget Microsoft.Build.Framework
11+
nuget Microsoft.Build.Tasks.Core
12+
nuget Microsoft.Build.Utilities.Core
913
nuget Dotnet.ProjInfo
1014
nuget Dotnet.ProjInfo.Workspace
1115
nuget Newtonsoft.Json
@@ -31,6 +35,7 @@ group Fake
3135
source https://api.nuget.org/v3/index.json
3236
storage: none
3337

38+
nuget FSharp.Core ~> 4.7
3439
nuget Fake.Core.Target ~> 5.20.0
3540
nuget Fake.Core.ReleaseNotes ~> 5.20.0
3641
nuget Fake.DotNet.AssemblyInfoFile ~> 5.20.0

paket.lock

Lines changed: 565 additions & 308 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)