Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FCS update 43.9.201 #223

Merged
merged 3 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# setup .NET SDK
- name: Setup .NET
Expand All @@ -39,8 +39,8 @@ jobs:
run: dotnet run --project build

- name: Archive test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4

with:
name: test-results
name: test-results-${{ matrix.os }}
path: test/**/TestResults/*.trx
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@
"test/examples",
"packages"
],
"editor.formatOnSave": true,
"[fsharp]": {
"editor.formatOnSave": true,
},
"cSpell.words": [
"binlog",
"inheritdoc",
"tfms",
"vswhere",
"xbuild"
]
}
}
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<FSharpCoreVersion>6.0.0</FSharpCoreVersion>
<!-- However for the FCS project, FSharpCoreCompilerVersion needs to match whats specified in
the FSharp.Compiler.Service dependency -->
<FSharpCoreCompilerVersion>9.0.100</FSharpCoreCompilerVersion>
<FSharpCompilerVersion>43.9.100</FSharpCompilerVersion>
<FSharpCoreCompilerVersion>9.0.201</FSharpCoreCompilerVersion>
<FSharpCompilerVersion>43.9.201</FSharpCompilerVersion>
<ExpectoVersion>10.2.1</ExpectoVersion>
<FakeVersion>6.1.3</FakeVersion>
<NuGetAuditMode>direct</NuGetAuditMode>
Expand Down
Loading