From 1ea89b2b213723d15c93d4b63bb06666028178cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hora=C8=9Biu=20Mlendea?= Date: Sat, 16 Mar 2024 13:29:35 +0200 Subject: [PATCH] dotnet: Upgraded to .NET 8.0 --- .github/workflows/dotnet.yml | 2 +- UniversalNameGenerator.csproj | 2 +- release.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2e87db8..5af11c3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/UniversalNameGenerator.csproj b/UniversalNameGenerator.csproj index a3c42aa..2c2e6b8 100644 --- a/UniversalNameGenerator.csproj +++ b/UniversalNameGenerator.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 UniversalNameGenerator diff --git a/release.sh b/release.sh index 54db7d2..91cc576 100644 --- a/release.sh +++ b/release.sh @@ -1,4 +1,4 @@ #!/bin/bash -DOTNET_VERSION="7.0" +DOTNET_VERSION="8.0" RELEASE_SCRIPT_URL="https://raw.githubusercontent.com/hmlendea/deployment-scripts/master/release/dotnet/${DOTNET_VERSION}.sh" wget --quiet -O - "${RELEASE_SCRIPT_URL}" | bash /dev/stdin ${@}