From 9066fa05b0d3e958367be98d93438af84dcf7f64 Mon Sep 17 00:00:00 2001 From: stanislav Date: Wed, 25 Dec 2024 09:59:29 +0200 Subject: [PATCH] Update pipeline for .net 9.0 --- .github/workflows/dotnet.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4b20e56..e9adac8 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,6 +24,10 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: '8.0.x' + - name: Setup .NET 9 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '9.0.x' - name: Restore dependencies run: dotnet restore - name: Build And Pack