File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed
Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1212jobs :
1313 publish :
1414
15- runs-on : ubuntu-latest
15+ runs-on : ubuntu-22.04
1616
1717 steps :
1818 - name : Checkout
3232
3333 - name : Add version to global.json
3434 run : |
35- $version = "8 .0.403 "
35+ $version = "9 .0.200 "
3636 $globalJsonPath = "global.json"
3737 $globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
3838 if ($null -eq $globalJson.sdk.version) {
4646 - name : Install .NET Core
4747 uses : actions/setup-dotnet@v4
4848 with :
49- dotnet-version : 8 .0.403
49+ dotnet-version : 9 .0.200
5050
5151 - name : Add the GitHub source
5252 run : dotnet nuget add source --username USERNAME --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text --name "github.com" "https://nuget.pkg.github.com/fsprojects/index.json"
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 publish :
15- runs-on : ubuntu-latest
15+ runs-on : ubuntu-22.04
1616
1717 steps :
1818 - name : Checkout
3434
3535 - name : Add version to global.json
3636 run : |
37- $version = "8 .0.403 "
37+ $version = "9 .0.200 "
3838 $globalJsonPath = "global.json"
3939 $globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
4040 if ($null -eq $globalJson.sdk.version) {
4848 - name : Install .NET Core
4949 uses : actions/setup-dotnet@v4
5050 with :
51- dotnet-version : 8 .0.403
51+ dotnet-version : 9 .0.200
5252
5353 - name : Install local tools
5454 run : dotnet tool restore
Original file line number Diff line number Diff line change 2020 strategy :
2121 fail-fast : false
2222 matrix :
23- os : [ubuntu-latest , windows-latest, macOS-latest]
24- dotnet : [8 .0.403 ]
23+ os : [ubuntu-22.04 , windows-latest, macOS-latest]
24+ dotnet : [9 .0.200 ]
2525 runs-on : ${{ matrix.os }}
2626
2727 steps :
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <DotNetVersion >net8.0</DotNetVersion >
5- <LangVersion >8 .0</LangVersion >
6- <FSharpCoreVersion >8 .0.*</FSharpCoreVersion >
5+ <LangVersion >9 .0</LangVersion >
6+ <FSharpCoreVersion >9 .0.*</FSharpCoreVersion >
77 <AccelerateBuildsInVisualStudio >true</AccelerateBuildsInVisualStudio >
88 <DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
99 <NoWarn >$(NoWarn);NU1504;NU1701</NoWarn >
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ let ctx = Context.forceFakeContext ()
3232let embedAll = ctx.Arguments |> List.exists ( fun arg -> arg = BuildArguments.EmbedAll)
3333
3434module DotNetCli =
35- let setVersion ( o : DotNet.Options ) = { o with Version = Some " 8 .0.403 " }
35+ let setVersion ( o : DotNet.Options ) = { o with Version = Some " 9 .0.200 " }
3636 let setRestoreOptions ( o : DotNet.RestoreOptions ) = o.WithCommon setVersion
3737
3838let configurationString = Environment.environVarOrDefault " CONFIGURATION" " Release"
You can’t perform that action at this time.
0 commit comments