Skip to content

Commit eb1e846

Browse files
authored
FCS update 43.9.201 (#223)
* chore: make format on save only for F# * Update FCS 43.9.201 * chore: fix CI
1 parent ed11093 commit eb1e846

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
# setup .NET SDK
2222
- name: Setup .NET
@@ -39,8 +39,8 @@ jobs:
3939
run: dotnet run --project build
4040

4141
- name: Archive test results
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343

4444
with:
45-
name: test-results
45+
name: test-results-${{ matrix.os }}
4646
path: test/**/TestResults/*.trx

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88
"test/examples",
99
"packages"
1010
],
11-
"editor.formatOnSave": true,
11+
"[fsharp]": {
12+
"editor.formatOnSave": true,
13+
},
1214
"cSpell.words": [
1315
"binlog",
1416
"inheritdoc",
1517
"tfms",
1618
"vswhere",
1719
"xbuild"
1820
]
19-
}
21+
}

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<FSharpCoreVersion>6.0.0</FSharpCoreVersion>
88
<!-- However for the FCS project, FSharpCoreCompilerVersion needs to match whats specified in
99
the FSharp.Compiler.Service dependency -->
10-
<FSharpCoreCompilerVersion>9.0.100</FSharpCoreCompilerVersion>
11-
<FSharpCompilerVersion>43.9.100</FSharpCompilerVersion>
10+
<FSharpCoreCompilerVersion>9.0.201</FSharpCoreCompilerVersion>
11+
<FSharpCompilerVersion>43.9.201</FSharpCompilerVersion>
1212
<ExpectoVersion>10.2.1</ExpectoVersion>
1313
<FakeVersion>6.1.3</FakeVersion>
1414
<NuGetAuditMode>direct</NuGetAuditMode>

0 commit comments

Comments
 (0)