diff --git a/.appveyor.yml b/.appveyor.yml index 3bbaaa317..2266e068a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,9 +18,11 @@ install: - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk" - ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null - ps: Invoke-WebRequest -Uri "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" - - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.425 -InstallDir $env:DOTNET_INSTALL_DIR' + # .NET 5 required for Codecov.Tool + - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 5.0.408 -InstallDir $env:DOTNET_INSTALL_DIR' + - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.427 -InstallDir $env:DOTNET_INSTALL_DIR' - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0.409 -InstallDir $env:DOTNET_INSTALL_DIR' - - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.402 -InstallDir $env:DOTNET_INSTALL_DIR' + - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.403 -InstallDir $env:DOTNET_INSTALL_DIR' - ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path" - ps: dotnet --info diff --git a/.azuredevops/pipelines/templates/stages/build-for-integration-tests.yml b/.azuredevops/pipelines/templates/stages/build-for-integration-tests.yml index e7a1a9bfb..a8d7479da 100644 --- a/.azuredevops/pipelines/templates/stages/build-for-integration-tests.yml +++ b/.azuredevops/pipelines/templates/stages/build-for-integration-tests.yml @@ -8,6 +8,7 @@ stages: - job: CreateNuGetPackagesJob displayName: Create NuGet Packages pool: + # Run on Ubuntu 22, since Ubuntu 24.04 does not have Mono installed, which is Required for Cake.Recipe and separate Mono installation requires more time. vmImage: 'ubuntu-22.04' steps: - template: ../steps/install-required-dotnet-versions-for-building.yml diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-git-repository.yml b/.azuredevops/pipelines/templates/stages/integration-tests-git-repository.yml index 300676000..ddfe69bc7 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-git-repository.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-git-repository.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-markdownlint.yml b/.azuredevops/pipelines/templates/stages/integration-tests-markdownlint.yml index 44cd65c13..dfaa49b5c 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-markdownlint.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-markdownlint.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-msbuild.yml b/.azuredevops/pipelines/templates/stages/integration-tests-msbuild.yml index c6fa6c673..c74fe42a7 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-msbuild.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-msbuild.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-console.yml b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-console.yml index 5e496f100..703a9f511 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-console.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-console.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: @@ -45,6 +47,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-generic.yml b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-generic.yml index 58fdeb590..556b45ea3 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-generic.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-generic.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: @@ -48,6 +50,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-sarif.yml b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-sarif.yml index f0c11959f..a7a82d562 100644 --- a/.azuredevops/pipelines/templates/stages/integration-tests-reporting-sarif.yml +++ b/.azuredevops/pipelines/templates/stages/integration-tests-reporting-sarif.yml @@ -21,6 +21,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: @@ -48,6 +50,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: @@ -75,6 +79,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: @@ -102,6 +108,8 @@ stages: imageName: 'ubuntu-20.04' Ubuntu_22_04: imageName: 'ubuntu-22.04' + Ubuntu_24_04: + imageName: 'ubuntu-24.04' pool: vmImage: $(imageName) steps: diff --git a/.azuredevops/pipelines/templates/stages/unit-tests.yml b/.azuredevops/pipelines/templates/stages/unit-tests.yml index e4c4880c5..436033cdf 100644 --- a/.azuredevops/pipelines/templates/stages/unit-tests.yml +++ b/.azuredevops/pipelines/templates/stages/unit-tests.yml @@ -12,12 +12,16 @@ stages: Windows: imageName: 'windows-2022' Ubuntu: - imageName: 'ubuntu-22.04' + imageName: 'ubuntu-24.04' macOS: imageName: 'macOS-13' pool: vmImage: $(imageName) steps: - template: ../steps/install-required-dotnet-versions-for-building.yml + # Ubuntu 24.04 does not have Mono installed, which is Required for Cake.Recipe + - bash: sudo apt-get install mono-complete + condition: eq(variables['imageName'], 'ubuntu-24.04') + displayName: 'Install Mono' - bash: ./build.sh --target=Test displayName: 'Run Unit Tests' \ No newline at end of file diff --git a/.azuredevops/pipelines/templates/steps/install-net5.yml b/.azuredevops/pipelines/templates/steps/install-net5.yml new file mode 100644 index 000000000..739dff075 --- /dev/null +++ b/.azuredevops/pipelines/templates/steps/install-net5.yml @@ -0,0 +1,7 @@ +# Installs .NET 6 + +steps: + - task: UseDotNet@2 + inputs: + version: '5.x' + displayName: 'Install .NET 5' diff --git a/.azuredevops/pipelines/templates/steps/install-required-dotnet-versions-for-building.yml b/.azuredevops/pipelines/templates/steps/install-required-dotnet-versions-for-building.yml index ec1f95e72..fd7671289 100644 --- a/.azuredevops/pipelines/templates/steps/install-required-dotnet-versions-for-building.yml +++ b/.azuredevops/pipelines/templates/steps/install-required-dotnet-versions-for-building.yml @@ -1,6 +1,8 @@ # Installs required .NET SDKs for building the solution. steps: + # .NET 5 required for Codecov.Tool + - template: install-net5.yml - template: install-net6.yml - template: install-net7.yml - template: install-net8.yml diff --git a/.github/actions/prepare-integration-test/action.yml b/.github/actions/prepare-integration-test/action.yml index cd8bda0e8..8325cfb16 100644 --- a/.github/actions/prepare-integration-test/action.yml +++ b/.github/actions/prepare-integration-test/action.yml @@ -13,6 +13,6 @@ runs: name: NuGet Package path: ./BuildArtifacts/Packages/NuGet - name: Install .NET - uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4 + uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 with: dotnet-version: ${{ inputs.dotnet-version }} \ No newline at end of file diff --git a/.github/workflows/integrationtests.yml b/.github/workflows/integrationtests.yml index 3217bcafc..aa40ea740 100644 --- a/.github/workflows/integrationtests.yml +++ b/.github/workflows/integrationtests.yml @@ -16,11 +16,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Get the sources - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Fetch all tags and branches run: git fetch --prune --unshallow - name: Install .NET - uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4 + uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 with: # .NET 5 required for GitVersion dotnet-version: | @@ -32,7 +32,7 @@ jobs: run: ./build.sh --target=Create-NuGet-Packages shell: bash - name: Publish NuGet package as build artifact - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: NuGet Package path: ./BuildArtifacts/Packages/NuGet/ @@ -45,13 +45,13 @@ jobs: matrix: os: [ windows-2019, windows-2022, - ubuntu-20.04, ubuntu-22.04, + ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14] dotnet: [6.x, 7.x, 8.x] runs-on: ${{ matrix.os }} steps: - name: Get the sources - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Prepare integration tests uses: ./.github/actions/prepare-integration-test with: @@ -69,13 +69,13 @@ jobs: matrix: os: [ windows-2019, windows-2022, - ubuntu-20.04, ubuntu-22.04, + ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14] dotnet: [6.x, 7.x, 8.x] runs-on: ${{ matrix.os }} steps: - name: Get the sources - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Prepare integration tests uses: ./.github/actions/prepare-integration-test with: diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 74bd1e792..82239116d 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -17,17 +17,17 @@ jobs: matrix: os: [ windows-2019, windows-2022, - ubuntu-20.04, ubuntu-22.04, + ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, # Cake.Recipe currently does not support macOS 14 (M1) macos-13] runs-on: ${{ matrix.os }} steps: - name: Get the sources - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Fetch all tags and branches run: git fetch --prune --unshallow - name: Install .NET - uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4 + uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 with: # .NET 5 required for GitVersion dotnet-version: | @@ -35,6 +35,10 @@ jobs: 6.x 7.x 8.x + # Ubuntu 24.04 does not have Mono installed, which is Required for Cake.Recipe + - name: Install Mono + if: ${{ matrix.os == 'ubuntu-24.04' }} + run: sudo apt-get install mono-complete - name: Test run: ./build.sh --target=Test shell: bash \ No newline at end of file diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html index 28546200b..30306eccc 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html @@ -11,7 +11,7 @@ - + diff --git a/nuspec/nuget/Cake.Frosting.Issues.DocFx.nuspec b/nuspec/nuget/Cake.Frosting.Issues.DocFx.nuspec index 851a1c7ea..7502c2d93 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.DocFx.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.DocFx.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.DocFx. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting docfx docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.EsLint.nuspec b/nuspec/nuget/Cake.Frosting.Issues.EsLint.nuspec index 7f6f4f737..b26ef99ff 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.EsLint.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.EsLint.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.EsLint. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis javascript linting eslint docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.GitRepository.nuspec b/nuspec/nuget/Cake.Frosting.Issues.GitRepository.nuspec index 395ccfd4c..c7316c39b 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.GitRepository.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.GitRepository.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.GitRepository. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis linting git docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec b/nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec index 3445a4c22..ecb6da475 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.InspectCode. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider codeanalysis linting inspectcode docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Markdownlint.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Markdownlint.nuspec index cedbbaf1f..687ff9656 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Markdownlint.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Markdownlint.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Markdownlint. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting markdown markdownlint docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.MsBuild.nuspec b/nuspec/nuget/Cake.Frosting.Issues.MsBuild.nuspec index e0df2d60c..cbaca56da 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.MsBuild.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.MsBuild.nuspec @@ -30,7 +30,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.MsBuild. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis linting msbuild docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AppVeyor.nuspec b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AppVeyor.nuspec index 804823290..815305dbc 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AppVeyor.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AppVeyor.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.AppVe Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver appveyor docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AzureDevOps.nuspec b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AzureDevOps.nuspec index 34c49b175..e4aa7deb8 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AzureDevOps.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.AzureDevOps.nuspec @@ -28,7 +28,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.Azure Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest tfs azure-devops azure-devops-server docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.GitHubActions.nuspec b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.GitHubActions.nuspec index eacb5bfa8..74f0a676f 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.GitHubActions.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.GitHubActions.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.GitHu Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver github github-actions docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.nuspec b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.nuspec index d922492e4..110b667a2 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.PullRequests.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.PullRequests.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests. Copyright © Cake Issues contributors Cake Script Cake-Issues CodeAnalysis Linting Issues Pull-Requests docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Console.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Console.nuspec index 8b170307a..cd1efa738 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Console.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Console.nuspec @@ -29,7 +29,7 @@ The addin requires Cake Frosting 1.2.0 or higher. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting console docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Generic.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Generic.nuspec index a554712a0..c0f452cae 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Generic.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Generic.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Reporting.Generic. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting html markdown razor docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Sarif.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Sarif.nuspec index ff26e0b93..5d373e5de 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Reporting.Sarif.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Reporting.Sarif.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Reporting.Sarif. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting sarif docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Reporting.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Reporting.nuspec index 59cda1283..7f5f93e1b 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Reporting.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Reporting.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Reporting. Copyright © Cake Issues contributors Cake Script Cake-Issues CodeAnalysis Linting Issues Reporting docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Sarif.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Sarif.nuspec index 8507bab63..1bcc4c0d3 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Sarif.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Sarif.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Sarif. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting sarif docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Frosting.Issues.Terraform.nuspec b/nuspec/nuget/Cake.Frosting.Issues.Terraform.nuspec index 36d69cb66..33cee4388 100644 --- a/nuspec/nuget/Cake.Frosting.Issues.Terraform.nuspec +++ b/nuspec/nuget/Cake.Frosting.Issues.Terraform.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Terraform. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting terraform docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.DocFx.nuspec b/nuspec/nuget/Cake.Issues.DocFx.nuspec index c4dbd94ff..8b35ce9f2 100644 --- a/nuspec/nuget/Cake.Issues.DocFx.nuspec +++ b/nuspec/nuget/Cake.Issues.DocFx.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.DocFx. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting docfx docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.EsLint.nuspec b/nuspec/nuget/Cake.Issues.EsLint.nuspec index c46ef3f50..96d114582 100644 --- a/nuspec/nuget/Cake.Issues.EsLint.nuspec +++ b/nuspec/nuget/Cake.Issues.EsLint.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.EsLint. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis javascript linting eslint docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.GitRepository.nuspec b/nuspec/nuget/Cake.Issues.GitRepository.nuspec index cd0ea4e8b..31fa32baf 100644 --- a/nuspec/nuget/Cake.Issues.GitRepository.nuspec +++ b/nuspec/nuget/Cake.Issues.GitRepository.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.GitRepository. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis linting git docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.InspectCode.nuspec b/nuspec/nuget/Cake.Issues.InspectCode.nuspec index 48fc06ae8..d8355598d 100644 --- a/nuspec/nuget/Cake.Issues.InspectCode.nuspec +++ b/nuspec/nuget/Cake.Issues.InspectCode.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.InspectCode. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider codeanalysis linting inspectcode docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Markdownlint.nuspec b/nuspec/nuget/Cake.Issues.Markdownlint.nuspec index 7973f3969..53f99bf6c 100644 --- a/nuspec/nuget/Cake.Issues.Markdownlint.nuspec +++ b/nuspec/nuget/Cake.Issues.Markdownlint.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.Markdownlint. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting markdown markdownlint docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.MsBuild.nuspec b/nuspec/nuget/Cake.Issues.MsBuild.nuspec index 36bc1d456..8a0d0d2cf 100644 --- a/nuspec/nuget/Cake.Issues.MsBuild.nuspec +++ b/nuspec/nuget/Cake.Issues.MsBuild.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.MsBuild. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider code-analysis linting msbuild docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.PullRequests.AppVeyor.nuspec b/nuspec/nuget/Cake.Issues.PullRequests.AppVeyor.nuspec index 041e1de2e..8745aef03 100644 --- a/nuspec/nuget/Cake.Issues.PullRequests.AppVeyor.nuspec +++ b/nuspec/nuget/Cake.Issues.PullRequests.AppVeyor.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.PullRequests.Ap Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver appveyor docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.PullRequests.AzureDevOps.nuspec b/nuspec/nuget/Cake.Issues.PullRequests.AzureDevOps.nuspec index dc9ae3f94..6c4271d53 100644 --- a/nuspec/nuget/Cake.Issues.PullRequests.AzureDevOps.nuspec +++ b/nuspec/nuget/Cake.Issues.PullRequests.AzureDevOps.nuspec @@ -28,7 +28,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.PullRequests.Az Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest tfs azure-devops azure-devops-server docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.PullRequests.GitHubActions.nuspec b/nuspec/nuget/Cake.Issues.PullRequests.GitHubActions.nuspec index c5151adcb..8e8aafce5 100644 --- a/nuspec/nuget/Cake.Issues.PullRequests.GitHubActions.nuspec +++ b/nuspec/nuget/Cake.Issues.PullRequests.GitHubActions.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.PullRequests.Gi Copyright © Cake Issues contributors cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver github github-actions docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.PullRequests.nuspec b/nuspec/nuget/Cake.Issues.PullRequests.nuspec index c81530a51..26c6d9494 100644 --- a/nuspec/nuget/Cake.Issues.PullRequests.nuspec +++ b/nuspec/nuget/Cake.Issues.PullRequests.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.PullRequests. Copyright © Cake Issues contributors Cake Script Cake-Issues CodeAnalysis Linting Issues Pull-Requests docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Reporting.Console.nuspec b/nuspec/nuget/Cake.Issues.Reporting.Console.nuspec index c522f44bf..7f9ac2e39 100644 --- a/nuspec/nuget/Cake.Issues.Reporting.Console.nuspec +++ b/nuspec/nuget/Cake.Issues.Reporting.Console.nuspec @@ -29,7 +29,7 @@ The addin requires Cake 1.2.0 or higher. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting console docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Reporting.Generic.nuspec b/nuspec/nuget/Cake.Issues.Reporting.Generic.nuspec index 2d42f1c0a..9ca9748fa 100644 --- a/nuspec/nuget/Cake.Issues.Reporting.Generic.nuspec +++ b/nuspec/nuget/Cake.Issues.Reporting.Generic.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.Reporting.Gener Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting html markdown razor docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Reporting.Sarif.nuspec b/nuspec/nuget/Cake.Issues.Reporting.Sarif.nuspec index 22f916f89..a3ffccafe 100644 --- a/nuspec/nuget/Cake.Issues.Reporting.Sarif.nuspec +++ b/nuspec/nuget/Cake.Issues.Reporting.Sarif.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.Reporting.Sarif Copyright © Cake Issues contributors cake cake-addin cake-issues cake-reportformat issues reporting sarif docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Reporting.nuspec b/nuspec/nuget/Cake.Issues.Reporting.nuspec index 76ebfe542..b9fe04d32 100644 --- a/nuspec/nuget/Cake.Issues.Reporting.nuspec +++ b/nuspec/nuget/Cake.Issues.Reporting.nuspec @@ -27,7 +27,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.Reporting. Copyright © Cake Issues contributors Cake Script Cake-Issues CodeAnalysis Linting Issues Reporting docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.Sarif.nuspec b/nuspec/nuget/Cake.Issues.Sarif.nuspec index 89b8113ab..3c72ead5c 100644 --- a/nuspec/nuget/Cake.Issues.Sarif.nuspec +++ b/nuspec/nuget/Cake.Issues.Sarif.nuspec @@ -29,7 +29,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.Issues.Sarif. Copyright © Cake Issues contributors cake cake-addin cake-issues cake-issueprovider linting sarif docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/nuspec/nuget/Cake.Issues.nuspec b/nuspec/nuget/Cake.Issues.nuspec index 2c7e9882f..5438f438f 100644 --- a/nuspec/nuget/Cake.Issues.nuspec +++ b/nuspec/nuget/Cake.Issues.nuspec @@ -25,7 +25,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin Copyright © Cake Issues contributors cake cake-addin cake-issues code-analysis linting issues docs\README.md - https://github.com/cake-contrib/Cake.Issues/releases/tag/4.11.0 + https://github.com/cake-contrib/Cake.Issues/releases/tag/4.12.0 diff --git a/src/Cake.Issues.MsBuild/Cake.Issues.MsBuild.csproj b/src/Cake.Issues.MsBuild/Cake.Issues.MsBuild.csproj index 610a38c70..d9fca15ba 100644 --- a/src/Cake.Issues.MsBuild/Cake.Issues.MsBuild.csproj +++ b/src/Cake.Issues.MsBuild/Cake.Issues.MsBuild.csproj @@ -8,7 +8,7 @@ - + diff --git a/src/Cake.Issues.PullRequests.AppVeyor.Tests/Cake.Issues.PullRequests.AppVeyor.Tests.csproj b/src/Cake.Issues.PullRequests.AppVeyor.Tests/Cake.Issues.PullRequests.AppVeyor.Tests.csproj index 7b4086449..d71a435c6 100644 --- a/src/Cake.Issues.PullRequests.AppVeyor.Tests/Cake.Issues.PullRequests.AppVeyor.Tests.csproj +++ b/src/Cake.Issues.PullRequests.AppVeyor.Tests/Cake.Issues.PullRequests.AppVeyor.Tests.csproj @@ -4,7 +4,7 @@ - + diff --git a/src/Cake.Issues.PullRequests.AzureDevOps.Tests/Cake.Issues.PullRequests.AzureDevOps.Tests.csproj b/src/Cake.Issues.PullRequests.AzureDevOps.Tests/Cake.Issues.PullRequests.AzureDevOps.Tests.csproj index 604b8fcca..f5ac23fae 100644 --- a/src/Cake.Issues.PullRequests.AzureDevOps.Tests/Cake.Issues.PullRequests.AzureDevOps.Tests.csproj +++ b/src/Cake.Issues.PullRequests.AzureDevOps.Tests/Cake.Issues.PullRequests.AzureDevOps.Tests.csproj @@ -5,7 +5,7 @@ - + diff --git a/src/Cake.Issues.PullRequests.Tests/Cake.Issues.PullRequests.Tests.csproj b/src/Cake.Issues.PullRequests.Tests/Cake.Issues.PullRequests.Tests.csproj index 86088d697..4f5de8c3f 100644 --- a/src/Cake.Issues.PullRequests.Tests/Cake.Issues.PullRequests.Tests.csproj +++ b/src/Cake.Issues.PullRequests.Tests/Cake.Issues.PullRequests.Tests.csproj @@ -3,9 +3,9 @@ Tests for the Cake.Issues.PullRequests addin - - - + + + diff --git a/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue.verified.txt b/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue.verified.txt index 15a5d8b9d..f622bb24e 100644 --- a/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue.verified.txt +++ b/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue.verified.txt @@ -11,8 +11,8 @@ │ │ └────────────┴───────────┴───────────┘ │ │ Number of registered IssueFilters │ 0 │ └─────────────────────────────────────┴────────────────────────────────────────┘ -┌──────────┬──────┬────────────────────────────────────────────────────────────┐ -│ Rule │ Line │ File │ -├──────────┼──────┼────────────────────────────────────────────────────────────┤ -│ Rule Foo │ 10 │ src/Cake.Issues.Tests/FakeIssueProvider.cs │ -└──────────┴──────┴────────────────────────────────────────────────────────────┘ +┌──────────┬──────┬────────────────────────────────────────────┐ +│ Rule │ Line │ File │ +├──────────┼──────┼────────────────────────────────────────────┤ +│ Rule Foo │ 10 │ src/Cake.Issues.Tests/FakeIssueProvider.cs │ +└──────────┴──────┴────────────────────────────────────────────┘ diff --git a/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue_Not_Related_To_A_File.verified.txt b/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue_Not_Related_To_A_File.verified.txt index 2e8569a94..f436ca1c0 100644 --- a/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue_Not_Related_To_A_File.verified.txt +++ b/src/Cake.Issues.PullRequests.Tests/OrchestratorTests.TheRunMethod.Should_Post_Issue_Not_Related_To_A_File.verified.txt @@ -11,8 +11,8 @@ │ │ └────────────┴───────────┴───────────┘ │ │ Number of registered IssueFilters │ 0 │ └─────────────────────────────────────┴────────────────────────────────────────┘ -┌──────────┬─────────────────────────┬─────────────────────────────────────────┐ -│ Rule │ Line │ File │ -├──────────┼─────────────────────────┼─────────────────────────────────────────┤ -│ Rule Foo │ [italic grey]Not set[/] │ [italic grey]Not set[/] │ -└──────────┴─────────────────────────┴─────────────────────────────────────────┘ +┌──────────┬─────────────────────────┬─────────────────────────┐ +│ Rule │ Line │ File │ +├──────────┼─────────────────────────┼─────────────────────────┤ +│ Rule Foo │ [italic grey]Not set[/] │ [italic grey]Not set[/] │ +└──────────┴─────────────────────────┴─────────────────────────┘ diff --git a/src/Cake.Issues.PullRequests/Cake.Issues.PullRequests.csproj b/src/Cake.Issues.PullRequests/Cake.Issues.PullRequests.csproj index 3b6ffcc86..9536b70b6 100644 --- a/src/Cake.Issues.PullRequests/Cake.Issues.PullRequests.csproj +++ b/src/Cake.Issues.PullRequests/Cake.Issues.PullRequests.csproj @@ -3,8 +3,8 @@ Addin for the Cake build automation system for writing code analyzer or linter issues as comments to pull requests - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Cake.Issues.Reporting.Generic.Tests/Cake.Issues.Reporting.Generic.Tests.csproj b/src/Cake.Issues.Reporting.Generic.Tests/Cake.Issues.Reporting.Generic.Tests.csproj index 17f3b213d..747a56acf 100644 --- a/src/Cake.Issues.Reporting.Generic.Tests/Cake.Issues.Reporting.Generic.Tests.csproj +++ b/src/Cake.Issues.Reporting.Generic.Tests/Cake.Issues.Reporting.Generic.Tests.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs b/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs index 720d1c990..7afe1627e 100644 --- a/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs +++ b/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs @@ -489,7 +489,7 @@ public enum HtmlDxDataGridOption /// /// Version of jsPDF-AutoTable plugin which should be used. /// This version needs to match the version required by the selected . - /// Default value is 3.8.3. + /// Default value is 3.8.4. /// JsPdfAutotableVersion, } diff --git a/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml b/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml index 97a2ef34f..b952855fb 100644 --- a/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml +++ b/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml @@ -75,7 +75,7 @@ string jsPdfVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfVersion, "2.5.2").Trim(); string jsPdfAutoTableLocation = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/").Trim(); jsPdfAutoTableLocation = jsPdfAutoTableLocation.WithEnding("/"); - string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfAutoTableVersion, "3.8.3").Trim(); + string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfAutoTableVersion, "3.8.4").Trim(); string devExtremeLocation = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeLocation, "https://cdn3.devexpress.com/jslib/").Trim(); devExtremeLocation = devExtremeLocation.WithEnding("/"); string devExtremeVersion = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeVersion, "23.1.11").Trim(); diff --git a/src/global.json b/src/global.json index d5871b503..a83ed4da6 100644 --- a/src/global.json +++ b/src/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "8.0.402", + "version": "8.0.403", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.GitRepository/script-runner/global.json b/tests/Cake.Issues.GitRepository/script-runner/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.GitRepository/script-runner/global.json +++ b/tests/Cake.Issues.GitRepository/script-runner/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Markdownlint/script-runner/global.json b/tests/Cake.Issues.Markdownlint/script-runner/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Markdownlint/script-runner/global.json +++ b/tests/Cake.Issues.Markdownlint/script-runner/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Console/frosting/net6.0/global.json b/tests/Cake.Issues.Reporting.Console/frosting/net6.0/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Console/frosting/net6.0/global.json +++ b/tests/Cake.Issues.Reporting.Console/frosting/net6.0/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Console/script-runner/global.json b/tests/Cake.Issues.Reporting.Console/script-runner/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Console/script-runner/global.json +++ b/tests/Cake.Issues.Reporting.Console/script-runner/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Generic/frosting/global.json b/tests/Cake.Issues.Reporting.Generic/frosting/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Generic/frosting/global.json +++ b/tests/Cake.Issues.Reporting.Generic/frosting/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Generic/script-runner/global.json b/tests/Cake.Issues.Reporting.Generic/script-runner/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Generic/script-runner/global.json +++ b/tests/Cake.Issues.Reporting.Generic/script-runner/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Sarif/frosting/net6/global.json b/tests/Cake.Issues.Reporting.Sarif/frosting/net6/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Sarif/frosting/net6/global.json +++ b/tests/Cake.Issues.Reporting.Sarif/frosting/net6/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Sarif/frosting/net8/global.json b/tests/Cake.Issues.Reporting.Sarif/frosting/net8/global.json index d5871b503..a83ed4da6 100644 --- a/tests/Cake.Issues.Reporting.Sarif/frosting/net8/global.json +++ b/tests/Cake.Issues.Reporting.Sarif/frosting/net8/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "8.0.402", + "version": "8.0.403", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/Cake.Issues.Reporting.Sarif/script-runner/global.json b/tests/Cake.Issues.Reporting.Sarif/script-runner/global.json index b1256f628..ec034b02d 100644 --- a/tests/Cake.Issues.Reporting.Sarif/script-runner/global.json +++ b/tests/Cake.Issues.Reporting.Sarif/script-runner/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/tests/TestDataGenerator/global.json b/tests/TestDataGenerator/global.json index b1256f628..ec034b02d 100644 --- a/tests/TestDataGenerator/global.json +++ b/tests/TestDataGenerator/global.json @@ -1,7 +1,7 @@ { "sdk": { "allowPrerelease": true, - "version": "6.0.425", + "version": "6.0.427", "rollForward": "latestFeature" } } \ No newline at end of file