Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7a74f6

Browse files
committed
Use latest stable .NET.
1 parent 4a90067 commit e7a74f6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ jobs:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
2424
steps:
25-
- name: Install .NET
26-
uses: actions/setup-dotnet@v3
27-
with:
28-
dotnet-version: |
29-
6.0.x
30-
8.0.x
3125
- name: Check out code
3226
uses: actions/checkout@v3
3327
with:
3428
fetch-depth: 0 # required to publish docs
29+
- name: Install .NET
30+
uses: actions/setup-dotnet@v4
3531
- name: Restore
3632
run: .\build.ps1 restore
3733
- name: Build

tools/Build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ void CodeGen(bool verify)
4444
RunCodeGen("___", "___");
4545

4646
void RunCodeGen(params string?[] args) =>
47-
RunDotNet(new[] { "run", "--no-build", "--project", $"src/{codegen}", "-f", "net6.0", "-c", configuration, "--", "--newline", "lf", verifyOption }.Concat(args));
47+
RunDotNet(new[] { "run", "--no-build", "--project", $"src/{codegen}", "-c", configuration, "--", "--newline", "lf", verifyOption }.Concat(args));
4848
}
4949
});

0 commit comments

Comments
 (0)