From fd9ac1c9e04070344ba2db3e186ea302d057fc56 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Fri, 6 Sep 2019 20:56:37 -0700 Subject: [PATCH] appveyor: WDK 1903 hackfix --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5abcac82..77957461 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,11 +16,11 @@ init: install: - ps: | - # Hack to make WDK 1903 work on VS2015. - # See https://github.com/appveyor-tests/WDK-10.0.14393.0/blob/31cf12217fe0c92b218c70d7027dfe145be4f4cb/appveyor.yml#L7 - [xml]$targets = get-content "C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.Common.targets" + # Hack to make WDK 1903 work on VS2015. + # See https://github.com/appveyor-tests/WDK-10.0.14393.0/blob/31cf12217fe0c92b218c70d7027dfe145be4f4cb/appveyor.yml#L7 + [xml]$targets = get-content "C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.Common.targets" $usingTask = $targets.ChildNodes[1].UsingTask | ? {$_.TaskName -eq "ValidateNTTargetVersion"} - $usingTask.AssemblyFile = '$(WDKContentRoot)build\bin\Microsoft.DriverKit.Build.Tasks.16.0.dll' + $usingTask.AssemblyFile = '$(WDKContentRoot)build\bin\Microsoft.DriverKit.Build.Tasks.16.0.dll' $targets.Save("C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.Common.targets") - git submodule update --init --recursive - appveyor AddMessage "Change boot configuration and reboot" -Category Information