Skip to content

Commit 0db95c1

Browse files
committed
Updated SDK to 9.0.307
1 parent 4289217 commit 0db95c1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/publish-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Add version to global.json
3434
run: |
35-
$version = "9.0.304"
35+
$version = "9.0.307"
3636
$globalJsonPath = "global.json"
3737
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
3838
if ($null -eq $globalJson.sdk.version) {

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Add version to global.json
3636
run: |
37-
$version = "9.0.304"
37+
$version = "9.0.307"
3838
$globalJsonPath = "global.json"
3939
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
4040
if ($null -eq $globalJson.sdk.version) {

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-22.04, windows-latest, macOS-latest]
24-
dotnet: [9.0.304]
24+
dotnet: [9.0.307]
2525
runs-on: ${{ matrix.os }}
2626

2727
steps:

build/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let ctx = Context.forceFakeContext ()
3232
let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.EmbedAll)
3333

3434
module DotNetCli =
35-
let setVersion (o : DotNet.Options) = { o with Version = Some "9.0.304" }
35+
let setVersion (o : DotNet.Options) = { o with Version = Some "9.0.307" }
3636
let setRestoreOptions (o : DotNet.RestoreOptions) = o.WithCommon setVersion
3737

3838
let configurationString = Environment.environVarOrDefault "CONFIGURATION" "Release"

0 commit comments

Comments
 (0)