From ca9245770bd84ac81076dfdf2b9a88ba71744053 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 28 Mar 2025 13:33:18 +0100 Subject: [PATCH] UnitTest: Sync intermediate and output folders with sibling projects Signed-off-by: Simon Rozman --- UnitTests/.gitignore | 9 +-------- UnitTests/UnitTests.vcxproj | 3 ++- appveyor.yml | 2 +- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/UnitTests/.gitignore b/UnitTests/.gitignore index 1ecad244..c94ea874 100644 --- a/UnitTests/.gitignore +++ b/UnitTests/.gitignore @@ -1,10 +1,3 @@ +/.tmp /.vs /*.user -/UnitTests/Debug -/UnitTests/Release -/UnitTests/x64/Debug -/UnitTests/x64/Release -/x64/Debug -/x64/Release -/x86/Debug -/x86/Release diff --git a/UnitTests/UnitTests.vcxproj b/UnitTests/UnitTests.vcxproj index ec284c05..52ed56ea 100644 --- a/UnitTests/UnitTests.vcxproj +++ b/UnitTests/UnitTests.vcxproj @@ -64,7 +64,8 @@ - $(SolutionDir)\$(PlatformTarget)\$(Configuration)\ + $(SolutionDir).tmp\$(ShortProjectName)\$(PlatformTarget)\$(Configuration)\ + $(SolutionDir).tmp\$(ShortProjectName)\$(PlatformTarget)\$(Configuration)\ true NativeRecommendedRules.ruleset diff --git a/appveyor.yml b/appveyor.yml index a9b74539..0bd93302 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,4 +13,4 @@ build: parallel: true verbosity: minimal test_script: -- cmd: vstest.console /logger:Appveyor UnitTests\%platform%\%configuration%\UnitTests.dll +- cmd: vstest.console /logger:Appveyor UnitTests\.tmp\UnitTests\%platform%\%configuration%\UnitTests.dll