diff --git a/.github/workflows/azure-publish.yml b/.github/workflows/azure-publish.yml index 75103a8..d99a42e 100644 --- a/.github/workflows/azure-publish.yml +++ b/.github/workflows/azure-publish.yml @@ -16,15 +16,15 @@ jobs: - name: 'Checkout GitHub Action' uses: actions/checkout@v2 - - name: Setup .NET Core 6.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100 + dotnet-version: 8.0.100 - - name: Setup .NET Core 7.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' include-prerelease: true - name: 'Build Functions' diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index e08ad0b..550b995 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -15,15 +15,15 @@ jobs: - name: 'Checkout' uses: actions/checkout@v2 - - name: Setup .NET Core 6.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100 + dotnet-version: 8.0.100 - - name: Setup .NET Core 7.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' include-prerelease: true - name: Restore diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 6ca76c8..657d8f1 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -14,15 +14,15 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Setup .NET Core 6.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100 + dotnet-version: 8.0.100 - - name: Setup .NET Core 7.0 + - name: Setup .NET Core 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' include-prerelease: true - name: Restore dependencies diff --git a/.vscode/launch.json b/.vscode/launch.json index a27fb33..c5369d5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/runfo/bin/Debug/netcoreapp3.1/runfo.dll", + "program": "${workspaceFolder}/runfo/bin/Debug/net8.0/runfo.dll", "args": [ "timeline", "-b", @@ -26,7 +26,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/scratch/bin/Debug/net6.0/scratch.dll", + "program": "${workspaceFolder}/scratch/bin/Debug/net8.0/scratch.dll", "args": [ ], "cwd": "${workspaceFolder}/scratch", @@ -39,7 +39,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/triage/bin/Debug/netcoreapp3.1/triage.dll", + "program": "${workspaceFolder}/triage/bin/Debug/net8.0/triage.dll", "args": [ "scratch" ], @@ -52,7 +52,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/DevOps.Status/bin/Debug/netcoreapp3.1/DevOps.Status.dll", + "program": "${workspaceFolder}/DevOps.Status/bin/Debug/net8.0/DevOps.Status.dll", "args": [], "cwd": "${workspaceFolder}/DevOps.Status", "stopAtEntry": false, diff --git a/.vscode/settings.json b/.vscode/settings.json index 79efe92..2a46243 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,7 +5,7 @@ "Runfo", "nuget" ], - "azureFunctions.deploySubpath": "DevOps.Functions/bin/Release/netcoreapp3.1/publish", + "azureFunctions.deploySubpath": "DevOps.Functions/bin/Release/net8.0/publish", "azureFunctions.projectLanguage": "C#", "azureFunctions.projectRuntime": "~3", "debug.internalConsoleOptions": "neverOpen", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a9dadb1..15a3875 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -67,7 +67,7 @@ "type": "func", "dependsOn": "build", "options": { - "cwd": "${workspaceFolder}/DevOps.Functions/bin/Debug/netcoreapp3.1" + "cwd": "${workspaceFolder}/DevOps.Functions/bin/Debug/net8.0" }, "command": "host start", "isBackground": true, diff --git a/DevOps.Functions/DevOps.Functions.csproj b/DevOps.Functions/DevOps.Functions.csproj index 13bcabf..1d2b95e 100644 --- a/DevOps.Functions/DevOps.Functions.csproj +++ b/DevOps.Functions/DevOps.Functions.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 v4 diff --git a/DevOps.Status/.vscode/settings.json b/DevOps.Status/.vscode/settings.json index c191efc..b5774fd 100644 --- a/DevOps.Status/.vscode/settings.json +++ b/DevOps.Status/.vscode/settings.json @@ -1,4 +1,4 @@ { "appService.preDeployTask": "publish-release", - "appService.deploySubpath": "bin/Release/netcoreapp3.1/publish" + "appService.deploySubpath": "bin/Release/net8.0/publish" } \ No newline at end of file diff --git a/DevOps.Status/DevOps.Status.csproj b/DevOps.Status/DevOps.Status.csproj index 191fdc3..90c0e28 100644 --- a/DevOps.Status/DevOps.Status.csproj +++ b/DevOps.Status/DevOps.Status.csproj @@ -1,13 +1,13 @@  - net6.0 + net8.0 67c4a872-5dd7-422a-acad-fdbe907ace33 - + diff --git a/DevOps.Util.DotNet/DevOps.Util.DotNet.csproj b/DevOps.Util.DotNet/DevOps.Util.DotNet.csproj index 0d0fbd9..3be02fa 100644 --- a/DevOps.Util.DotNet/DevOps.Util.DotNet.csproj +++ b/DevOps.Util.DotNet/DevOps.Util.DotNet.csproj @@ -1,11 +1,11 @@  - net6.0 + net8.0 - + diff --git a/DevOps.Util.UnitTests/DevOps.Util.UnitTests.csproj b/DevOps.Util.UnitTests/DevOps.Util.UnitTests.csproj index d042257..4bed146 100644 --- a/DevOps.Util.UnitTests/DevOps.Util.UnitTests.csproj +++ b/DevOps.Util.UnitTests/DevOps.Util.UnitTests.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 false diff --git a/DevOps.Util/DevOps.Util.csproj b/DevOps.Util/DevOps.Util.csproj index 10698e9..6138242 100644 --- a/DevOps.Util/DevOps.Util.csproj +++ b/DevOps.Util/DevOps.Util.csproj @@ -1,11 +1,11 @@  - net6.0;net7.0 + net8.0 - + diff --git a/global.json b/global.json index ee8659b..31431f8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.100", + "version": "8.0.100", "rollForward": "minor" } } diff --git a/runfo/runfo.csproj b/runfo/runfo.csproj index a8a9986..9a34c1d 100644 --- a/runfo/runfo.csproj +++ b/runfo/runfo.csproj @@ -1,13 +1,13 @@ Exe - net7.0 + net8.0 Major true runfo - 0.7.0 + 0.9.0 Tool for quickly analyzing Azure Pipelines Build failures. diff --git a/scratch/scratch.csproj b/scratch/scratch.csproj index 5b3b5cb..537c4d0 100644 --- a/scratch/scratch.csproj +++ b/scratch/scratch.csproj @@ -2,12 +2,12 @@ Exe - net6.0 + net8.0 67c4a872-5dd7-422a-acad-fdbe907ace33 - +