From 8053a403b24e7732d83e271b272bc12b5a7b2ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hora=C8=9Biu=20Mlendea?= Date: Thu, 14 Mar 2024 23:26:34 +0200 Subject: [PATCH] dotnet: Upgraded to .NET 8 --- .github/workflows/dotnet.yml | 2 +- .../IptvPlaylistAggregator.UnitTests.csproj | 2 +- IptvPlaylistAggregator/IptvPlaylistAggregator.csproj | 2 +- release.sh | 2 +- 4 files changed, 4 insertions(+), 4 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/IptvPlaylistAggregator.UnitTests/IptvPlaylistAggregator.UnitTests.csproj b/IptvPlaylistAggregator.UnitTests/IptvPlaylistAggregator.UnitTests.csproj index 615e562..31883da 100644 --- a/IptvPlaylistAggregator.UnitTests/IptvPlaylistAggregator.UnitTests.csproj +++ b/IptvPlaylistAggregator.UnitTests/IptvPlaylistAggregator.UnitTests.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 IptvPlaylistAggregator.UnitTests diff --git a/IptvPlaylistAggregator/IptvPlaylistAggregator.csproj b/IptvPlaylistAggregator/IptvPlaylistAggregator.csproj index 76f6d0e..2d45dd7 100644 --- a/IptvPlaylistAggregator/IptvPlaylistAggregator.csproj +++ b/IptvPlaylistAggregator/IptvPlaylistAggregator.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 IptvPlaylistAggregator diff --git a/release.sh b/release.sh index 764cb2b..dbef5ea 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" curl -sSL "${RELEASE_SCRIPT_URL}" | bash -s ${1} --no-trim \ No newline at end of file