From 3a2507c717651df0c925c5e1c0a4aaf5c3020510 Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Thu, 16 Nov 2023 10:16:10 -0500 Subject: [PATCH] Upgrade to .NET 8 --- .github/workflows/CI.yml | 2 +- .github/workflows/CodeQL.yml | 2 +- .github/workflows/Sonar.yml | 2 +- .github/workflows/nuget.yml | 2 +- Examples/CLI/CLI.csproj | 2 +- Examples/Components/DotMatrix/DotMatrix.csproj | 2 +- Examples/Components/Motor/Motor.csproj | 2 +- Examples/Components/RGBLED/RGBLED.csproj | 2 +- Examples/Components/RotaryEncoder/RotaryEncoder.csproj | 2 +- .../Components/SevenSegmentDisplay/SevenSegmentDisplay.csproj | 2 +- Examples/Components/ShiftRegister/ShiftRegister.csproj | 2 +- Examples/Input/Input.csproj | 2 +- Examples/PWM/PWM.csproj | 2 +- Examples/Web/Web.csproj | 2 +- SimpleGPIO.Tests/SimpleGPIO.Tests.csproj | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7ee791c..1572b5c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore run: dotnet restore diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index a47f645..657ef08 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -53,7 +53,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) diff --git a/.github/workflows/Sonar.yml b/.github/workflows/Sonar.yml index b51200f..4e1aef5 100644 --- a/.github/workflows/Sonar.yml +++ b/.github/workflows/Sonar.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install Sonar Scanner run: dotnet tool install --global dotnet-sonarscanner diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index d3ee3e6..3fab8fc 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Run tests run: dotnet test diff --git a/Examples/CLI/CLI.csproj b/Examples/CLI/CLI.csproj index e13ae5d..651d144 100644 --- a/Examples/CLI/CLI.csproj +++ b/Examples/CLI/CLI.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 linux-arm latest enable diff --git a/Examples/Components/DotMatrix/DotMatrix.csproj b/Examples/Components/DotMatrix/DotMatrix.csproj index eef9834..aa252a3 100644 --- a/Examples/Components/DotMatrix/DotMatrix.csproj +++ b/Examples/Components/DotMatrix/DotMatrix.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Components.DotMatrix diff --git a/Examples/Components/Motor/Motor.csproj b/Examples/Components/Motor/Motor.csproj index c698338..e557fe5 100644 --- a/Examples/Components/Motor/Motor.csproj +++ b/Examples/Components/Motor/Motor.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Components.Motor diff --git a/Examples/Components/RGBLED/RGBLED.csproj b/Examples/Components/RGBLED/RGBLED.csproj index 5ea2ff8..ffde74f 100644 --- a/Examples/Components/RGBLED/RGBLED.csproj +++ b/Examples/Components/RGBLED/RGBLED.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Components.RGBLED diff --git a/Examples/Components/RotaryEncoder/RotaryEncoder.csproj b/Examples/Components/RotaryEncoder/RotaryEncoder.csproj index b42efc9..e6a4438 100644 --- a/Examples/Components/RotaryEncoder/RotaryEncoder.csproj +++ b/Examples/Components/RotaryEncoder/RotaryEncoder.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable diff --git a/Examples/Components/SevenSegmentDisplay/SevenSegmentDisplay.csproj b/Examples/Components/SevenSegmentDisplay/SevenSegmentDisplay.csproj index 01d679b..a153b24 100644 --- a/Examples/Components/SevenSegmentDisplay/SevenSegmentDisplay.csproj +++ b/Examples/Components/SevenSegmentDisplay/SevenSegmentDisplay.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Components.SevenSegmentDisplay diff --git a/Examples/Components/ShiftRegister/ShiftRegister.csproj b/Examples/Components/ShiftRegister/ShiftRegister.csproj index f00d5d1..21e5121 100644 --- a/Examples/Components/ShiftRegister/ShiftRegister.csproj +++ b/Examples/Components/ShiftRegister/ShiftRegister.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Components.ShiftRegister diff --git a/Examples/Input/Input.csproj b/Examples/Input/Input.csproj index 127a0dd..5d0ca5a 100644 --- a/Examples/Input/Input.csproj +++ b/Examples/Input/Input.csproj @@ -1,7 +1,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Input diff --git a/Examples/PWM/PWM.csproj b/Examples/PWM/PWM.csproj index 908b30b..3156524 100644 --- a/Examples/PWM/PWM.csproj +++ b/Examples/PWM/PWM.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 enable enable SimpleGPIO.Examples.PWM diff --git a/Examples/Web/Web.csproj b/Examples/Web/Web.csproj index 02ad232..0395902 100644 --- a/Examples/Web/Web.csproj +++ b/Examples/Web/Web.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 enable enable SimpleGPIO.Examples.Web diff --git a/SimpleGPIO.Tests/SimpleGPIO.Tests.csproj b/SimpleGPIO.Tests/SimpleGPIO.Tests.csproj index 9d5b043..4de90ba 100644 --- a/SimpleGPIO.Tests/SimpleGPIO.Tests.csproj +++ b/SimpleGPIO.Tests/SimpleGPIO.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 enable enable