From b7f620865b262b2339dff0a06592ad78e724793c Mon Sep 17 00:00:00 2001 From: carlossanlop <1175054+carlossanlop@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:22:48 -0700 Subject: [PATCH 1/6] global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } } From aab543dcb302aaf022431b65691f7f0f2a6a2df2 Mon Sep 17 00:00:00 2001 From: carlossanlop <1175054+carlossanlop@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:23:29 -0700 Subject: [PATCH 2/6] vscode files --- .vscode/launch.json | 8 ++++---- .vscode/settings.json | 2 +- .vscode/tasks.json | 2 +- DevOps.Status/.vscode/settings.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) 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.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 From 9021fbc657bdc758e43af8188b80230f010953a0 Mon Sep 17 00:00:00 2001 From: carlossanlop <1175054+carlossanlop@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:24:17 -0700 Subject: [PATCH 3/6] Dependencies --- DevOps.Functions/DevOps.Functions.csproj | 2 +- DevOps.Status/DevOps.Status.csproj | 4 ++-- DevOps.Util.DotNet/DevOps.Util.DotNet.csproj | 4 ++-- DevOps.Util.UnitTests/DevOps.Util.UnitTests.csproj | 2 +- DevOps.Util/DevOps.Util.csproj | 4 ++-- scratch/scratch.csproj | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) 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/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/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 - + From 9e1fa2da1ca827e8e9a54a254e868c2ca012571d Mon Sep 17 00:00:00 2001 From: carlossanlop <1175054+carlossanlop@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:24:28 -0700 Subject: [PATCH 4/6] runfo --- runfo/runfo.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runfo/runfo.csproj b/runfo/runfo.csproj index a8a9986..3522575 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.8.0 Tool for quickly analyzing Azure Pipelines Build failures. From a8776dadf9e42942da78d124130421d42e9ec2b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez=20L=C3=B3pez?= <1175054+carlossanlop@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:55:30 -0700 Subject: [PATCH 5/6] Update ymls --- .github/workflows/azure-publish.yml | 8 ++++---- .github/workflows/dotnet-core.yml | 8 ++++---- .github/workflows/nuget-publish.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) 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 From e643444627a56bedbe5c445a982cbb1073b4b338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez=20L=C3=B3pez?= <1175054+carlossanlop@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:55:44 -0700 Subject: [PATCH 6/6] Bump runfo.csproj PackageVersion --- runfo/runfo.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runfo/runfo.csproj b/runfo/runfo.csproj index 3522575..9a34c1d 100644 --- a/runfo/runfo.csproj +++ b/runfo/runfo.csproj @@ -7,7 +7,7 @@ true runfo - 0.8.0 + 0.9.0 Tool for quickly analyzing Azure Pipelines Build failures.