From 3fbf46d88315b0d701f331ac21daedabafe85499 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 04:33:28 +0000 Subject: [PATCH] Bump microsoft/setup-msbuild from 2.0.0 to 3.0.0 Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 2.0.0 to 3.0.0. - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v2.0.0...v3.0.0) --- updated-dependencies: - dependency-name: microsoft/setup-msbuild dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI_build.yml | 98 +++++++++++++++++----------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 61f52f5..3dfc78f 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -1,49 +1,49 @@ -name: Continuous Integration - -on: - push: - paths-ignore: - - 'docs/**' - - 'NppCSharpPluginPack/*.zip' - - '*.md' - - '*.txt' - - '*.PNG' - - 'makerelease.bat' - - 'testfiles/**' - - 'translation/**' - -jobs: - build: - runs-on: windows-2022 - strategy: - max-parallel: 4 - matrix: - build_configuration: [Release, Debug] - build_platform: [x64, x86] - - steps: - - name: Checkout repo - uses: actions/checkout@v6 - - - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v2.0.0 - - - name: MSBuild of solution - run: > - msbuild /t:Restore NppCSharpPluginPack/NppCSharpPluginPack.sln; - msbuild NppCSharpPluginPack/NppCSharpPluginPack.sln /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /m /verbosity:minimal - - - name: Archive artifacts for x64 - if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v7 - with: - name: plugin_dll_x64 - path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}-x64\CSharpPluginPack.dll - - - name: Archive artifacts for x86 - if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v7 - with: - name: plugin_dll_x86 - path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}\CSharpPluginPack.dll - +name: Continuous Integration + +on: + push: + paths-ignore: + - 'docs/**' + - 'NppCSharpPluginPack/*.zip' + - '*.md' + - '*.txt' + - '*.PNG' + - 'makerelease.bat' + - 'testfiles/**' + - 'translation/**' + +jobs: + build: + runs-on: windows-2022 + strategy: + max-parallel: 4 + matrix: + build_configuration: [Release, Debug] + build_platform: [x64, x86] + + steps: + - name: Checkout repo + uses: actions/checkout@v6 + + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v3.0.0 + + - name: MSBuild of solution + run: > + msbuild /t:Restore NppCSharpPluginPack/NppCSharpPluginPack.sln; + msbuild NppCSharpPluginPack/NppCSharpPluginPack.sln /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /m /verbosity:minimal + + - name: Archive artifacts for x64 + if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' + uses: actions/upload-artifact@v7 + with: + name: plugin_dll_x64 + path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}-x64\CSharpPluginPack.dll + + - name: Archive artifacts for x86 + if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' + uses: actions/upload-artifact@v7 + with: + name: plugin_dll_x86 + path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}\CSharpPluginPack.dll +