From 45f4e8073bb6b1d82b6ee9631307249483840c7f Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Thu, 16 Nov 2023 11:35:53 -0500 Subject: [PATCH] Upgrade to .NET 8 --- .github/workflows/CI.yml | 2 +- .github/workflows/CodeQL.yml | 2 +- .github/workflows/Release.yml | 4 ++-- .github/workflows/Sonar.yml | 2 +- README.md | 2 +- src/LoadTestToolbox.csproj | 8 ++++---- test/LoadTestToolbox.Tests.csproj | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d0c1498..727f5f4 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: 6.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 4d66430..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: 6.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/Release.yml b/.github/workflows/Release.yml index 511ced8..53583f1 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -14,7 +14,7 @@ jobs: permissions: contents: write env: - targets: linux-x64 linux-arm64 linux-arm osx-x64 osx-arm64 win-x64 win-arm64 win-arm + targets: linux-x64 linux-arm64 linux-arm osx-x64 osx-arm64 win-x64 win-arm64 steps: - uses: actions/checkout@v3 @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Run tests run: dotnet test diff --git a/.github/workflows/Sonar.yml b/.github/workflows/Sonar.yml index b577b72..d224b51 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: 6.0.x + dotnet-version: 8.0.x - name: Install Sonar Scanner run: dotnet tool install --global dotnet-sonarscanner diff --git a/README.md b/README.md index c0b4dbe..5a94dba 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Lightweight tools for load testing web applications, written in C# ### Install as a .NET Global Tool -`~$ dotnet tool install --global LoadTestToolbox` (requires .NET 6 SDK) +`~$ dotnet tool install --global LoadTestToolbox` (requires .NET 8 SDK) ## Usage diff --git a/src/LoadTestToolbox.csproj b/src/LoadTestToolbox.csproj index 541e4ff..e1e2026 100644 --- a/src/LoadTestToolbox.csproj +++ b/src/LoadTestToolbox.csproj @@ -1,10 +1,10 @@ - 1.1.0 + 2.0.0 Exe true ltt - net6.0 + net8.0 Lightweight tools for load testing web applications ecoAPM LLC ecoAPM LLC @@ -23,8 +23,8 @@ - - + + diff --git a/test/LoadTestToolbox.Tests.csproj b/test/LoadTestToolbox.Tests.csproj index 16170e4..48bb0f4 100644 --- a/test/LoadTestToolbox.Tests.csproj +++ b/test/LoadTestToolbox.Tests.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 enable enable