Skip to content

Commit 61b8075

Browse files
committed
Updating the Github Actions to build with .NET 9
1 parent b68f02b commit 61b8075

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build-dumpify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 8.0.x
21+
dotnet-version: 9.0.x
2222
- name: Restore dependencies
2323
run: dotnet restore ./src
2424
- name: Build

.github/workflows/publish-dumpify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v4
1616
with:
17-
dotnet-version: 8.0.x
17+
dotnet-version: 9.0.x
1818

1919
- name: Restore dependencies
2020
run: dotnet restore ./src

src/Dumpify.Playground/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// DumpConfig.Default.TableConfig.ShowMemberTypes = true;
1515
// new DirectoryInfo("C:\\Program Files").Dump();
1616
(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "14", "15", 16, 17, 18).Dump();
17+
Tuple.Create(1, 2, 3, 4, 5, 6, 7, Tuple.Create(8, 9, 10, 11)).Dump();
1718
Console.WriteLine("---------------------");
1819

1920
// TestSpecific();

0 commit comments

Comments
 (0)