File tree Expand file tree Collapse file tree 3 files changed +14
-11
lines changed
Expand file tree Collapse file tree 3 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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
4747SET 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-
5549REM Use vswhere to find the latest VS installation with the MSBuild component
5650REM See https://github.com/Microsoft/vswhere/wiki/Find-MSBuild
5751FOR /F " tokens=* USEBACKQ" %%F IN (`%VSWHERE_EXEC% -all -prerelease -latest -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\amd64\MSBuild.exe`) DO (
You can’t perform that action at this time.
0 commit comments