From 0ea1254115c05165419339b41a14e73677a520c7 Mon Sep 17 00:00:00 2001 From: Coen van den Munckhof Date: Mon, 26 Aug 2024 19:29:48 +0200 Subject: [PATCH] chore: Update .NET SDK version to 6.0.x --- .azuredevops/Pipelines/pull-request.yaml | 12 ++++++------ .github/workflows/on-push-do-docs.yml | 4 ++++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.azuredevops/Pipelines/pull-request.yaml b/.azuredevops/Pipelines/pull-request.yaml index c2bb82a5..df43adaa 100644 --- a/.azuredevops/Pipelines/pull-request.yaml +++ b/.azuredevops/Pipelines/pull-request.yaml @@ -35,12 +35,12 @@ stages: - script: git submodule update --init --recursive displayName: Update git submodules - # required for mdsnippets?! - - task: UseDotNet@2 - displayName: "Use dotnet sdk 6.0.x" - inputs: - version: 6.0.x - includePreviewVersions: false + # # required for mdsnippets?! + # - task: UseDotNet@2 + # displayName: "Use dotnet sdk 6.0.x" + # inputs: + # version: 6.0.x + # includePreviewVersions: false - task: UseDotNet@2 displayName: "Use dotnet sdk 8.0.401" diff --git a/.github/workflows/on-push-do-docs.yml b/.github/workflows/on-push-do-docs.yml index 7ee93ff7..729d99cc 100644 --- a/.github/workflows/on-push-do-docs.yml +++ b/.github/workflows/on-push-do-docs.yml @@ -6,6 +6,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.x - name: Run MarkdownSnippets run: | dotnet tool install --global --version 27.0.2 MarkdownSnippets.Tool