|
|
@ -15,11 +15,14 @@ jobs:
|
|
|
|
- name: Fix Projects
|
|
|
|
- name: Fix Projects
|
|
|
|
shell: powershell
|
|
|
|
shell: powershell
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
# Replace v110 toolset with v142. Only v141 and v142 toolsets are available on CI workers.
|
|
|
|
|
|
|
|
# Replace 8.1 platform sdk with 10.0.18362.0. Workers do not contain legacy SDKs.
|
|
|
|
|
|
|
|
# WARNING: This will need updating if toolset/sdk change in project files!
|
|
|
|
# WARNING: This will need updating if toolset/sdk change in project files!
|
|
|
|
gci -recurse -filter "*.vcxproj" | ForEach-Object {
|
|
|
|
gci -recurse -filter "*.vcxproj" | ForEach-Object {
|
|
|
|
(Get-Content $_.FullName) -Replace "<PlatformToolset>v110</PlatformToolset>","<PlatformToolset>v142</PlatformToolset>" -Replace "<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>","<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>" | Set-Content -Path $_.FullName
|
|
|
|
# Fix SDK and toolset for most samples.
|
|
|
|
|
|
|
|
(Get-Content $_.FullName) -Replace "<PlatformToolset>v110</PlatformToolset>","<PlatformToolset>v142</PlatformToolset>" | Set-Content -Path $_.FullName
|
|
|
|
|
|
|
|
(Get-Content $_.FullName) -Replace "<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>","<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>" | Set-Content -Path $_.FullName
|
|
|
|
|
|
|
|
# Fix SDK and toolset for samples that require newer SDK/toolset. At the moment it is only dx12.
|
|
|
|
|
|
|
|
(Get-Content $_.FullName) -Replace "<PlatformToolset>v140</PlatformToolset>","<PlatformToolset>v142</PlatformToolset>" | Set-Content -Path $_.FullName
|
|
|
|
|
|
|
|
(Get-Content $_.FullName) -Replace "<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>","<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>" | Set-Content -Path $_.FullName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Build x86
|
|
|
|
- name: Build x86
|
|
|
|