diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 8f57acf..4269479 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: 9.0.x + dotnet-version: 10.0.x - name: Setup MGCB run: | dotnet tool install --global dotnet-mgcb diff --git a/SokoGrump.csproj b/SokoGrump.csproj index e0e9b9f..163692f 100644 --- a/SokoGrump.csproj +++ b/SokoGrump.csproj @@ -2,7 +2,7 @@ WinExe - net9.0 + net10.0 SokoGrump Horațiu Mlendea Copyright 2025 © Horațiu Mlendea diff --git a/release.sh b/release.sh index 272169c..3b805e2 100644 --- a/release.sh +++ b/release.sh @@ -1,4 +1,4 @@ #!/bin/bash -DOTNET_VERSION="9.0" +DOTNET_VERSION='10.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 ${@}