From 954385df85088c37ff86c82bb9b6977ea9153de5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:56:28 +0000 Subject: [PATCH 1/5] build(deps): bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 79a4e4cc8..84e2362f0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -105,13 +105,13 @@ jobs: steps: - name: Download installers - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: Installers_${{ matrix.configuration }} path: install - name: Download functional tests drop - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: FunctionalTests_${{ matrix.configuration }} path: ft From 03169c88562f998940670133af5e368f7c6ee8b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 22:09:25 +0000 Subject: [PATCH 2/5] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 79a4e4cc8..be2e9958d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -21,7 +21,7 @@ jobs: name: Validation steps: - name: Checkout source - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Validate Microsoft Git version shell: pwsh @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout source - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: src From 81f8806b71d92ab5daefe8590fc14dafccf116d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:24:32 +0000 Subject: [PATCH 3/5] build(deps): bump actions/setup-dotnet from 4 to 5 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 4 to 5. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 79a4e4cc8..b1038f706 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -49,7 +49,7 @@ jobs: path: src - name: Install .NET SDK - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: 8.0.413 From 16f692b815d3b60169dd27f83ee2a83eb6f9fc17 Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Wed, 10 Sep 2025 09:59:26 +0100 Subject: [PATCH 4/5] Directory.Build.props: set minimum Windows API version Enforce a minimum Windows API version of build 16299 (aka '1709', aka 'Redstone 3', aka 'Fall Creators Update'). This was the previous target SDK version before 240f73ee5 changed the native projects to use the latest Windows SDK installed. Setting the TargetPlatformMinVersion property for the native projects will prevent use of APIs newer that the specified version, with newer Windows SDKs. Signed-off-by: Matthew John Cheetham --- Directory.Build.props | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Directory.Build.props b/Directory.Build.props index 61e42400d..76c51bce4 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -34,6 +34,15 @@ $(ProjectOutPath)bin\$(Platform)\$(Configuration)\ $(ProjectOutPath)intermediate\$(Platform)\$(Configuration)\ $(IntDir)include\ + + 10.0.16299.0 From b14c5a2d25e42eb1757667a9e00f8c1f823192d9 Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Wed, 10 Sep 2025 10:02:44 +0100 Subject: [PATCH 5/5] Build.bat: loosen Windows SDK checks Since we now build with the latest installed Windows SDKs (whilst still enforcing a minimum API compatibility), we can delete this check for a specific Windows SDK installation. Signed-off-by: Matthew John Cheetham --- scripts/Build.bat | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/Build.bat b/scripts/Build.bat index cf8ebefd1..e51c8ebe8 100644 --- a/scripts/Build.bat +++ b/scripts/Build.bat @@ -46,12 +46,6 @@ SET VSWHERE_VER=2.6.7 "%NUGET_EXEC%" install vswhere -Version %VSWHERE_VER% -OutputDirectory %VFS_PACKAGESDIR% || exit /b 1 SET VSWHERE_EXEC="%VFS_PACKAGESDIR%\vswhere.%VSWHERE_VER%\tools\vswhere.exe" -REM Assumes default installation location for Windows 10 SDKs -IF NOT EXIST "C:\Program Files (x86)\Windows Kits\10\Include\10.0.16299.0" ( - ECHO ERROR: Could not find Windows 10 SDK Version 16299 - EXIT /B 1 -) - REM Use vswhere to find the latest VS installation with the MSBuild component REM See https://github.com/Microsoft/vswhere/wiki/Find-MSBuild FOR /F "tokens=* USEBACKQ" %%F IN (`%VSWHERE_EXEC% -all -prerelease -latest -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\amd64\MSBuild.exe`) DO (