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