From 51205293504b59453c5f4d7b86f7675bcd23db08 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 12 Apr 2019 13:10:26 +0200 Subject: [PATCH] Fix output folder The compiled result is put into $(SolutionDir)$(Platform)\ $(ConfigurationName) by default. Unfortunately Static Driver Verifier sets the $(SolutionDir) without a trailing backslash, resulting some files end up in a "wintunx64" folder of the project parent folder. Until driver building and packaging is automated, the output folder has been manually matched to the intermediate folder. Signed-off-by: Simon Rozman --- wintun.vcxproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wintun.vcxproj b/wintun.vcxproj index 3af0b06..acafbc2 100644 --- a/wintun.vcxproj +++ b/wintun.vcxproj @@ -85,18 +85,22 @@ true $(WDKContentRoot)CodeAnalysis\DriverMustFixRules.ruleset + $(ConfigurationName)\ true AllRules.ruleset + $(ConfigurationName)\ true $(WDKContentRoot)CodeAnalysis\DriverMustFixRules.ruleset + $(Platform)\$(ConfigurationName)\ true AllRules.ruleset + $(Platform)\$(ConfigurationName)\