diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index 9e8fa32..fea0fab 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET 7.0 + - name: Setup .NET 8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c4b8fb2..7ef5cde 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,10 +16,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET 7.0 + - name: Setup .NET 8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore @@ -39,12 +39,12 @@ jobs: - name: Setting up build version run: | version=$(($GITHUB_RUN_NUMBER)) - echo "BUILD_VERSION=1.0.$version" >> ${GITHUB_ENV} + echo "BUILD_VERSION=2.0.$version" >> ${GITHUB_ENV} - - name: Setup .NET Core 7.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore diff --git a/src/Soenneker.Swashbuckle.SmartEnumFilter.csproj b/src/Soenneker.Swashbuckle.SmartEnumFilter.csproj index 8952650..f9fbad0 100644 --- a/src/Soenneker.Swashbuckle.SmartEnumFilter.csproj +++ b/src/Soenneker.Swashbuckle.SmartEnumFilter.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable AnyCPU $(NoWarn);1591 @@ -9,7 +9,7 @@ A Swashbuckle Schema filter for SmartEnum - 1.0.0 + 2.0.0 $(BUILD_VERSION) Soenneker.Swashbuckle.SmartEnumFilter Soenneker.Swashbuckle.SmartEnumFilter diff --git a/test/Soenneker.Swashbuckle.SmartEnumFilter.Tests.csproj b/test/Soenneker.Swashbuckle.SmartEnumFilter.Tests.csproj index 55e8473..14ff5a8 100644 --- a/test/Soenneker.Swashbuckle.SmartEnumFilter.Tests.csproj +++ b/test/Soenneker.Swashbuckle.SmartEnumFilter.Tests.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable false