Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Bump github/codeql-action from 4.31.2 to 4.32.3 (#72) #111

Bump github/codeql-action from 4.31.2 to 4.32.3 (#72)

Bump github/codeql-action from 4.31.2 to 4.32.3 (#72) #111

Workflow file for this run

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# http://go.microsoft.com/fwlink/?LinkId=271568
name: MSBuild
on:
push:
branches: "main"
paths-ignore:
- '*.md'
- LICENSE
- '.azuredevops/**'
- '.nuget/*'
pull_request:
branches: "main"
paths-ignore:
- '*.md'
- LICENSE
- '.azuredevops/**'
- '.nuget/*'
permissions:
contents: read
jobs:
build:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
vs: [2019, 2022]
build_type: [Debug, Release]
platformx: [Win32, x64]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0
- name: Build
working-directory: ${{ github.workspace }}
run: >
msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }}
Effects11_${{ matrix.vs }}_Win10.sln
- if: (matrix.vs == '2022' && matrix.platformx != 'Win32')
name: 'Build (UWP) x64'
working-directory: ${{ github.workspace }}
run: >
msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }}
Effects11_Windows10.sln
- if: (matrix.vs == '2022' && matrix.platformx == 'Win32')
name: 'Build (UWP) x86'
working-directory: ${{ github.workspace }}
run: >
msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=x86
Effects11_Windows10.sln