Skip to content

Commit c86f215

Browse files
authored
Merge pull request #1863 from microsoft/milestones/m263
Release M263
2 parents 2658b2d + a1a8939 commit c86f215

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Validation
2222
steps:
2323
- name: Checkout source
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Validate Microsoft Git version
2727
shell: pwsh
@@ -44,12 +44,12 @@ jobs:
4444

4545
steps:
4646
- name: Checkout source
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
path: src
5050

5151
- name: Install .NET SDK
52-
uses: actions/setup-dotnet@v4
52+
uses: actions/setup-dotnet@v5
5353
with:
5454
dotnet-version: 8.0.413
5555

@@ -105,13 +105,13 @@ jobs:
105105

106106
steps:
107107
- name: Download installers
108-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@v5
109109
with:
110110
name: Installers_${{ matrix.configuration }}
111111
path: install
112112

113113
- name: Download functional tests drop
114-
uses: actions/download-artifact@v4
114+
uses: actions/download-artifact@v5
115115
with:
116116
name: FunctionalTests_${{ matrix.configuration }}
117117
path: ft

Directory.Build.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@
3434
<OutDir>$(ProjectOutPath)bin\$(Platform)\$(Configuration)\</OutDir>
3535
<IntDir>$(ProjectOutPath)intermediate\$(Platform)\$(Configuration)\</IntDir>
3636
<GeneratedIncludePath>$(IntDir)include\</GeneratedIncludePath>
37+
<!--
38+
Make sure that we don't accidentally use Windows APIs only available after
39+
Windows 10 build 16299 (aka '1709', 'RS3', and 'Fall Creators Update').
40+
The minimum Windows version that includes the final design of the
41+
Projected File System (ProjFS) APIs was actually Windows 10 version 1809
42+
(build 17763), but VFS for Git also supports using the older design of the
43+
ProjFS APIs from that version.
44+
-->
45+
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
3746
</PropertyGroup>
3847

3948
</Project>

scripts/Build.bat

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@ SET VSWHERE_VER=2.6.7
4646
"%NUGET_EXEC%" install vswhere -Version %VSWHERE_VER% -OutputDirectory %VFS_PACKAGESDIR% || exit /b 1
4747
SET VSWHERE_EXEC="%VFS_PACKAGESDIR%\vswhere.%VSWHERE_VER%\tools\vswhere.exe"
4848

49-
REM Assumes default installation location for Windows 10 SDKs
50-
IF NOT EXIST "C:\Program Files (x86)\Windows Kits\10\Include\10.0.16299.0" (
51-
ECHO ERROR: Could not find Windows 10 SDK Version 16299
52-
EXIT /B 1
53-
)
54-
5549
REM Use vswhere to find the latest VS installation with the MSBuild component
5650
REM See https://github.com/Microsoft/vswhere/wiki/Find-MSBuild
5751
FOR /F "tokens=* USEBACKQ" %%F IN (`%VSWHERE_EXEC% -all -prerelease -latest -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\amd64\MSBuild.exe`) DO (

0 commit comments

Comments
 (0)