From c39e306784191eb742813553076884a65f1d9aee Mon Sep 17 00:00:00 2001 From: David Federman Date: Fri, 22 Mar 2024 03:29:14 -0700 Subject: [PATCH] [Build]Unify PCH usage (#31055) * Unify PCH usage * Add back CIBuild property * Add back CIBuild property --- .github/actions/spell-check/expect.txt | 1 + .../ci/templates/build-powertoys-ci.yml | 4 ++-- Cpp.Build.props | 10 ++-------- Directory.Build.props | 3 +++ .../CustomAction.cpp | 2 +- .../PowerToysSetupCustomActions.vcxproj | 12 +++-------- ...owerToysSetupCustomActions.vcxproj.filters | 4 ++-- installer/PowerToysSetupCustomActions/pch.cpp | 5 +++++ .../{stdafx.h => pch.h} | 0 .../PowerToysSetupCustomActions/stdafx.cpp | 4 ---- src/common/Display/Display.vcxproj | 1 - src/common/GPOWrapper/GPOWrapper.vcxproj | 2 -- src/common/SettingsAPI/SettingsAPI.vcxproj | 2 +- .../UnitTests-CommonLib.vcxproj | 2 +- src/common/logger/logger.vcxproj | 2 +- .../BackgroundActivatorDLL.vcxproj | 2 +- .../notifications/notifications.vcxproj | 2 +- src/common/updating/updating.vcxproj | 2 +- .../CropAndLock/CropAndLock.vcxproj | 2 +- .../CropAndLockModuleInterface.vcxproj | 2 +- ...nvironmentVariablesModuleInterface.vcxproj | 4 +--- .../FileLocksmithContextMenu.vcxproj | 4 +--- .../FileLocksmithExt/FileLocksmithExt.vcxproj | 4 +--- .../FileLocksmithLib/FileLocksmithLib.vcxproj | 4 +--- .../FileLocksmithLibInterop.vcxproj | 20 ++----------------- .../HostsModuleInterface.vcxproj | 8 +------- .../PowerToys.MeasureToolCore.vcxproj | 6 ------ .../MeasureToolModuleInterface.vcxproj | 8 +------- .../FindMyMouse/FindMyMouse.vcxproj | 8 +------- .../MouseHighlighter/MouseHighlighter.vcxproj | 8 +------- .../MouseUtils/MouseJump/MouseJump.vcxproj | 8 +------- .../MousePointerCrosshairs.vcxproj | 8 +------- ...MouseWithoutBordersModuleInterface.vcxproj | 2 +- .../PowerOCRModuleInterface.vcxproj | 2 +- .../ShortcutGuide/ShortcutGuide.vcxproj | 2 +- .../ShortcutGuideModuleInterface.vcxproj | 2 +- .../AlwaysOnTop/AlwaysOnTop.vcxproj | 9 +-------- .../AlwaysOnTopModuleInterface.vcxproj | 2 +- .../AwakeModuleInterface.vcxproj | 3 +-- .../CmdNotFoundModuleInterface.vcxproj | 4 +--- .../ColorPicker/ColorPicker.vcxproj | 2 +- .../fancyzones/FancyZones/FancyZones.vcxproj | 9 +-------- .../FancyZonesLib/FancyZonesLib.vcxproj | 2 +- .../FancyZonesModuleInterface.vcxproj | 2 +- .../UnitTests/UnitTests.vcxproj | 2 +- .../ImageResizerContextMenu.vcxproj | 4 +--- .../ImageResizerLib/ImageResizerLib.vcxproj | 4 +--- .../imageresizer/dll/ImageResizerExt.vcxproj | 12 +++++------ .../KeyboardManagerEditor.vcxproj | 10 +--------- .../KeyboardManagerEditorLibrary.vcxproj | 2 +- .../KeyboardManagerEditorTest.vcxproj | 2 +- .../KeyboardManagerEngine.vcxproj | 2 +- .../KeyboardManagerEngineLibrary.vcxproj | 2 +- .../KeyboardManagerEngineTest.vcxproj | 2 +- .../common/KeyboardManagerCommon.vcxproj | 2 +- .../dll/KeyboardManager.vcxproj | 2 +- .../Microsoft.Launcher.vcxproj | 2 +- .../PastePlainModuleInterface.vcxproj | 2 +- src/modules/peek/peek/peek.vcxproj | 2 +- .../PowerAccentKeyboardService.vcxproj | 2 -- .../PowerAccentModuleInterface.vcxproj | 3 +-- .../PowerRenameContextMenu.vcxproj | 4 +--- .../PowerRenameUILib/PowerRenameUI.vcxproj | 2 -- .../powerrename/dll/PowerRenameExt.vcxproj | 2 +- .../powerrename/lib/PowerRenameLib.vcxproj | 2 +- .../testapp/PowerRenameTest.vcxproj | 2 +- .../unittests/PowerRenameLibUnitTests.vcxproj | 2 +- .../GcodePreviewHandlerCpp.vcxproj | 4 +--- .../GcodeThumbnailProviderCpp.vcxproj | 4 +--- .../MarkdownPreviewHandlerCpp.vcxproj | 4 +--- .../MonacoPreviewHandlerCpp.vcxproj | 4 +--- .../PdfPreviewHandlerCpp.vcxproj | 4 +--- .../PdfThumbnailProviderCpp.vcxproj | 4 +--- .../QoiPreviewHandlerCpp.vcxproj | 4 +--- .../QoiThumbnailProviderCpp.vcxproj | 4 +--- .../StlThumbnailProviderCpp.vcxproj | 4 +--- .../SvgPreviewHandlerCpp.vcxproj | 4 +--- .../SvgThumbnailProviderCpp.vcxproj | 4 +--- .../powerpreview/powerpreview.vcxproj | 2 +- .../RegistryPreviewExt.vcxproj | 5 +---- .../VideoConference.vcxproj | 7 +------ src/runner/runner.vcxproj | 2 +- .../MonitorReportTool.vcxproj | 2 +- .../StylesReportTool/StylesReportTool.vcxproj | 2 +- .../ModuleTemplate/ModuleTemplate.vcxproj | 8 +------- .../ModuleTemplateCompileTest.vcxproj | 7 +------ 86 files changed, 95 insertions(+), 250 deletions(-) create mode 100644 installer/PowerToysSetupCustomActions/pch.cpp rename installer/PowerToysSetupCustomActions/{stdafx.h => pch.h} (100%) delete mode 100644 installer/PowerToysSetupCustomActions/stdafx.cpp diff --git a/.github/actions/spell-check/expect.txt b/.github/actions/spell-check/expect.txt index ffc4aec16f..41a9796d15 100644 --- a/.github/actions/spell-check/expect.txt +++ b/.github/actions/spell-check/expect.txt @@ -1109,6 +1109,7 @@ pcb pcch pcelt pch +pchast PCIDLIST PCWSTR pdisp diff --git a/.pipelines/ci/templates/build-powertoys-ci.yml b/.pipelines/ci/templates/build-powertoys-ci.yml index 2d39da65b9..19f2ff864d 100644 --- a/.pipelines/ci/templates/build-powertoys-ci.yml +++ b/.pipelines/ci/templates/build-powertoys-ci.yml @@ -4,10 +4,10 @@ parameters: default: 'Release' - name: platform type: string - default: '/p:RestorePackagesConfig=true -m' + default: 'x64' - name: additionalBuildArguments type: string - default: '/p:RestorePackagesConfig=true -m' + default: '-p:RestorePackagesConfig=true -m' - name: enableCaching type: boolean default: false diff --git a/Cpp.Build.props b/Cpp.Build.props index b98ae459a6..bd5f42910b 100644 --- a/Cpp.Build.props +++ b/Cpp.Build.props @@ -22,14 +22,6 @@ - - - - true - Use - - - true @@ -48,6 +40,8 @@ + true + Use pch.h Level4 4679;5271;%(DisableSpecificWarnings) diff --git a/Directory.Build.props b/Directory.Build.props index f4a108e69a..a08b81865f 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -55,6 +55,9 @@ + + false + 202310210737 diff --git a/installer/PowerToysSetupCustomActions/CustomAction.cpp b/installer/PowerToysSetupCustomActions/CustomAction.cpp index a24713b5ac..8384d9ba7c 100644 --- a/installer/PowerToysSetupCustomActions/CustomAction.cpp +++ b/installer/PowerToysSetupCustomActions/CustomAction.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "pch.h" #include "resource.h" #include "RcResource.h" #include diff --git a/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj b/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj index 0bc8deb1f5..46c20790a8 100644 --- a/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj +++ b/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj @@ -130,16 +130,10 @@ HighestAvailable - - - Use - stdafx.h - - - - Create + + Create @@ -150,7 +144,7 @@ - + diff --git a/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj.filters b/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj.filters index 71e80f20f2..f4cf974dc0 100644 --- a/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj.filters +++ b/installer/PowerToysSetupCustomActions/PowerToysSetupCustomActions.vcxproj.filters @@ -2,10 +2,10 @@ - + - + Telemetry diff --git a/installer/PowerToysSetupCustomActions/pch.cpp b/installer/PowerToysSetupCustomActions/pch.cpp new file mode 100644 index 0000000000..64b7eef6d6 --- /dev/null +++ b/installer/PowerToysSetupCustomActions/pch.cpp @@ -0,0 +1,5 @@ +// pch.cpp: source file corresponding to the pre-compiled header + +#include "pch.h" + +// When you are using pre-compiled headers, this source file is necessary for compilation to succeed. diff --git a/installer/PowerToysSetupCustomActions/stdafx.h b/installer/PowerToysSetupCustomActions/pch.h similarity index 100% rename from installer/PowerToysSetupCustomActions/stdafx.h rename to installer/PowerToysSetupCustomActions/pch.h diff --git a/installer/PowerToysSetupCustomActions/stdafx.cpp b/installer/PowerToysSetupCustomActions/stdafx.cpp deleted file mode 100644 index 9a5cc24eaa..0000000000 --- a/installer/PowerToysSetupCustomActions/stdafx.cpp +++ /dev/null @@ -1,4 +0,0 @@ -#include "stdafx.h" - -// TODO: reference any additional headers you need in STDAFX.H -// and not in this file diff --git a/src/common/Display/Display.vcxproj b/src/common/Display/Display.vcxproj index 79d3e9bc99..e69a2ada2d 100644 --- a/src/common/Display/Display.vcxproj +++ b/src/common/Display/Display.vcxproj @@ -26,7 +26,6 @@ NotUsing ..\..\..\;%(AdditionalIncludeDirectories) _LIB;%(PreprocessorDefinitions) - NotUsing diff --git a/src/common/GPOWrapper/GPOWrapper.vcxproj b/src/common/GPOWrapper/GPOWrapper.vcxproj index 032d4d19fb..c77620493d 100644 --- a/src/common/GPOWrapper/GPOWrapper.vcxproj +++ b/src/common/GPOWrapper/GPOWrapper.vcxproj @@ -50,8 +50,6 @@ - Use - pch.h $(IntDir)pch.pch Level4 %(AdditionalOptions) /bigobj diff --git a/src/common/SettingsAPI/SettingsAPI.vcxproj b/src/common/SettingsAPI/SettingsAPI.vcxproj index bf2eaec6dc..d09e33a334 100644 --- a/src/common/SettingsAPI/SettingsAPI.vcxproj +++ b/src/common/SettingsAPI/SettingsAPI.vcxproj @@ -37,7 +37,7 @@ - Create + Create diff --git a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj index aff6610d66..cc25f7ae43 100644 --- a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj +++ b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj @@ -36,7 +36,7 @@ - Create + Create diff --git a/src/common/logger/logger.vcxproj b/src/common/logger/logger.vcxproj index 49efbd6f86..3e5529a747 100644 --- a/src/common/logger/logger.vcxproj +++ b/src/common/logger/logger.vcxproj @@ -67,7 +67,7 @@ - Create + Create diff --git a/src/common/notifications/BackgroundActivatorDLL/BackgroundActivatorDLL.vcxproj b/src/common/notifications/BackgroundActivatorDLL/BackgroundActivatorDLL.vcxproj index 3a96d7d46f..88a9a6b5f2 100644 --- a/src/common/notifications/BackgroundActivatorDLL/BackgroundActivatorDLL.vcxproj +++ b/src/common/notifications/BackgroundActivatorDLL/BackgroundActivatorDLL.vcxproj @@ -59,7 +59,7 @@ - Create + Create diff --git a/src/common/notifications/notifications.vcxproj b/src/common/notifications/notifications.vcxproj index 9ff8830793..8c6808cf6c 100644 --- a/src/common/notifications/notifications.vcxproj +++ b/src/common/notifications/notifications.vcxproj @@ -35,7 +35,7 @@ - Create + Create diff --git a/src/common/updating/updating.vcxproj b/src/common/updating/updating.vcxproj index 48c3d5d483..bfcf1f22b4 100644 --- a/src/common/updating/updating.vcxproj +++ b/src/common/updating/updating.vcxproj @@ -44,7 +44,7 @@ - Create + Create diff --git a/src/modules/CropAndLock/CropAndLock/CropAndLock.vcxproj b/src/modules/CropAndLock/CropAndLock/CropAndLock.vcxproj index ebaed7e24f..e9a10fb07b 100644 --- a/src/modules/CropAndLock/CropAndLock/CropAndLock.vcxproj +++ b/src/modules/CropAndLock/CropAndLock/CropAndLock.vcxproj @@ -115,7 +115,7 @@ - Create + Create diff --git a/src/modules/CropAndLock/CropAndLockModuleInterface/CropAndLockModuleInterface.vcxproj b/src/modules/CropAndLock/CropAndLockModuleInterface/CropAndLockModuleInterface.vcxproj index 6aa29bfe95..0917a14602 100644 --- a/src/modules/CropAndLock/CropAndLockModuleInterface/CropAndLockModuleInterface.vcxproj +++ b/src/modules/CropAndLock/CropAndLockModuleInterface/CropAndLockModuleInterface.vcxproj @@ -84,7 +84,7 @@ - Create + Create diff --git a/src/modules/EnvironmentVariables/EnvironmentVariablesModuleInterface/EnvironmentVariablesModuleInterface.vcxproj b/src/modules/EnvironmentVariables/EnvironmentVariablesModuleInterface/EnvironmentVariablesModuleInterface.vcxproj index b332a8c8e4..068a0ad590 100644 --- a/src/modules/EnvironmentVariables/EnvironmentVariablesModuleInterface/EnvironmentVariablesModuleInterface.vcxproj +++ b/src/modules/EnvironmentVariables/EnvironmentVariablesModuleInterface/EnvironmentVariablesModuleInterface.vcxproj @@ -44,7 +44,6 @@ true WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use Windows @@ -60,7 +59,6 @@ true WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use Windows @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/FileLocksmith/FileLocksmithContextMenu/FileLocksmithContextMenu.vcxproj b/src/modules/FileLocksmith/FileLocksmithContextMenu/FileLocksmithContextMenu.vcxproj index f1d35839c0..46af84bd14 100644 --- a/src/modules/FileLocksmith/FileLocksmithContextMenu/FileLocksmithContextMenu.vcxproj +++ b/src/modules/FileLocksmith/FileLocksmithContextMenu/FileLocksmithContextMenu.vcxproj @@ -44,7 +44,6 @@ true WIN32;_DEBUG;FILELOCKSMITHCONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..;../../..; @@ -67,7 +66,6 @@ MakeAppx.exe pack /d . /p $(OutDir)FileLocksmithContextMenuPackage.msix /nvtrue WIN32;NDEBUG;FILELOCKSMITHCONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..;../../..; @@ -92,7 +90,7 @@ MakeAppx.exe pack /d . /p $(OutDir)FileLocksmithContextMenuPackage.msix /nv - Create + Create diff --git a/src/modules/FileLocksmith/FileLocksmithExt/FileLocksmithExt.vcxproj b/src/modules/FileLocksmith/FileLocksmithExt/FileLocksmithExt.vcxproj index 969658a40a..9bfad7f8a8 100644 --- a/src/modules/FileLocksmith/FileLocksmithExt/FileLocksmithExt.vcxproj +++ b/src/modules/FileLocksmith/FileLocksmithExt/FileLocksmithExt.vcxproj @@ -41,7 +41,6 @@ true WIN32;_DEBUG;FILELOCKSMITHEXT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..;../../;../../../;%(AdditionalIncludeDirectories) @@ -59,7 +58,6 @@ true WIN32;NDEBUG;FILELOCKSMITHEXT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..;../../;../../../;%(AdditionalIncludeDirectories) @@ -91,7 +89,7 @@ - Create + Create diff --git a/src/modules/FileLocksmith/FileLocksmithLib/FileLocksmithLib.vcxproj b/src/modules/FileLocksmith/FileLocksmithLib/FileLocksmithLib.vcxproj index 3e3ecc8756..5253d30779 100644 --- a/src/modules/FileLocksmith/FileLocksmithLib/FileLocksmithLib.vcxproj +++ b/src/modules/FileLocksmith/FileLocksmithLib/FileLocksmithLib.vcxproj @@ -35,7 +35,6 @@ true WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) true - Use ../../..;../..; @@ -52,7 +51,6 @@ true WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) true - Use ../../..;../..; @@ -77,7 +75,7 @@ - Create + Create diff --git a/src/modules/FileLocksmith/FileLocksmithLibInterop/FileLocksmithLibInterop.vcxproj b/src/modules/FileLocksmith/FileLocksmithLibInterop/FileLocksmithLibInterop.vcxproj index 50ba1ec7da..f645de558f 100644 --- a/src/modules/FileLocksmith/FileLocksmithLibInterop/FileLocksmithLibInterop.vcxproj +++ b/src/modules/FileLocksmith/FileLocksmithLibInterop/FileLocksmithLibInterop.vcxproj @@ -114,7 +114,6 @@ true _DEBUG;FILELOCKSMITHLIBINTEROP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use NetCore stdcpp17 MultiThreadedDebugDLL @@ -132,7 +131,6 @@ true _DEBUG;FILELOCKSMITHLIBINTEROP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use NetCore stdcpp17 MultiThreadedDebugDLL @@ -152,7 +150,6 @@ true NDEBUG;FILELOCKSMITHLIBINTEROP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use NetCore stdcpp17 /Zc:twoPhase- @@ -174,7 +171,6 @@ true NDEBUG;FILELOCKSMITHLIBINTEROP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use NetCore stdcpp17 /Zc:twoPhase- @@ -190,23 +186,11 @@ - - Create - Create - Create - Create - Create - Create - + - Create - Create - Create - Create - Create - Create + Create diff --git a/src/modules/Hosts/HostsModuleInterface/HostsModuleInterface.vcxproj b/src/modules/Hosts/HostsModuleInterface/HostsModuleInterface.vcxproj index 19d77eac82..ec9c3857c8 100644 --- a/src/modules/Hosts/HostsModuleInterface/HostsModuleInterface.vcxproj +++ b/src/modules/Hosts/HostsModuleInterface/HostsModuleInterface.vcxproj @@ -49,12 +49,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -65,7 +59,7 @@ - Create + Create diff --git a/src/modules/MeasureTool/MeasureToolCore/PowerToys.MeasureToolCore.vcxproj b/src/modules/MeasureTool/MeasureToolCore/PowerToys.MeasureToolCore.vcxproj index 34208a7891..84114dc2f7 100644 --- a/src/modules/MeasureTool/MeasureToolCore/PowerToys.MeasureToolCore.vcxproj +++ b/src/modules/MeasureTool/MeasureToolCore/PowerToys.MeasureToolCore.vcxproj @@ -59,12 +59,6 @@ Dbghelp.lib;Shell32.lib;Shcore.lib;dcomp.lib;DXGI.lib;Dwmapi.lib;Gdi32.lib;%(AdditionalDependencies) - - - Use - pch.h - - diff --git a/src/modules/MeasureTool/MeasureToolModuleInterface/MeasureToolModuleInterface.vcxproj b/src/modules/MeasureTool/MeasureToolModuleInterface/MeasureToolModuleInterface.vcxproj index 727520bc54..557564781f 100644 --- a/src/modules/MeasureTool/MeasureToolModuleInterface/MeasureToolModuleInterface.vcxproj +++ b/src/modules/MeasureTool/MeasureToolModuleInterface/MeasureToolModuleInterface.vcxproj @@ -46,12 +46,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -61,7 +55,7 @@ - Create + Create diff --git a/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj b/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj index 5b53ada1a7..9d4dbd2b28 100644 --- a/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj +++ b/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj @@ -82,12 +82,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -99,7 +93,7 @@ - Create + Create diff --git a/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj b/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj index b5e3be202a..df0df021da 100644 --- a/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj +++ b/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj @@ -82,12 +82,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -98,7 +92,7 @@ - Create + Create diff --git a/src/modules/MouseUtils/MouseJump/MouseJump.vcxproj b/src/modules/MouseUtils/MouseJump/MouseJump.vcxproj index 0cfc9bf811..29e8f444bf 100644 --- a/src/modules/MouseUtils/MouseJump/MouseJump.vcxproj +++ b/src/modules/MouseUtils/MouseJump/MouseJump.vcxproj @@ -82,12 +82,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -96,7 +90,7 @@ - Create + Create diff --git a/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj b/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj index 0310019c50..7da54a51e9 100644 --- a/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj +++ b/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj @@ -83,12 +83,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -99,7 +93,7 @@ - Create + Create diff --git a/src/modules/MouseWithoutBorders/ModuleInterface/MouseWithoutBordersModuleInterface.vcxproj b/src/modules/MouseWithoutBorders/ModuleInterface/MouseWithoutBordersModuleInterface.vcxproj index 91f3fd9585..414c6f74ec 100644 --- a/src/modules/MouseWithoutBorders/ModuleInterface/MouseWithoutBordersModuleInterface.vcxproj +++ b/src/modules/MouseWithoutBorders/ModuleInterface/MouseWithoutBordersModuleInterface.vcxproj @@ -45,7 +45,7 @@ - Create + Create diff --git a/src/modules/PowerOCR/PowerOCRModuleInterface/PowerOCRModuleInterface.vcxproj b/src/modules/PowerOCR/PowerOCRModuleInterface/PowerOCRModuleInterface.vcxproj index c270fbd640..53b1dd8336 100644 --- a/src/modules/PowerOCR/PowerOCRModuleInterface/PowerOCRModuleInterface.vcxproj +++ b/src/modules/PowerOCR/PowerOCRModuleInterface/PowerOCRModuleInterface.vcxproj @@ -49,7 +49,7 @@ - Create + Create diff --git a/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj b/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj index b1be2d5c82..508620c3f0 100644 --- a/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj +++ b/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj @@ -84,7 +84,7 @@ - Create + Create diff --git a/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj b/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj index 22853eb9df..be903fbe3e 100644 --- a/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj +++ b/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj @@ -56,7 +56,7 @@ - Create + Create diff --git a/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj b/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj index 581326eaf5..95e051238e 100644 --- a/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj +++ b/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj @@ -6,16 +6,9 @@ - - - true - Use - - - pch.h Level3 false true @@ -131,7 +124,7 @@ - Create + Create diff --git a/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj b/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj index 0e6ebada69..5f63a0e628 100644 --- a/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj +++ b/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj @@ -47,7 +47,7 @@ - Create + Create diff --git a/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj b/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj index 3aba624af3..e1ce05608a 100644 --- a/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj +++ b/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj @@ -44,8 +44,7 @@ - Create - pch.h + Create diff --git a/src/modules/cmdNotFound/CmdNotFoundModuleInterface/CmdNotFoundModuleInterface.vcxproj b/src/modules/cmdNotFound/CmdNotFoundModuleInterface/CmdNotFoundModuleInterface.vcxproj index c0fa3ec63e..34d556683a 100644 --- a/src/modules/cmdNotFound/CmdNotFoundModuleInterface/CmdNotFoundModuleInterface.vcxproj +++ b/src/modules/cmdNotFound/CmdNotFoundModuleInterface/CmdNotFoundModuleInterface.vcxproj @@ -40,7 +40,6 @@ true WIN32;_DEBUG;CMDNOTFOUNDMODULEINTERFACE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use Windows @@ -57,7 +56,6 @@ true WIN32;NDEBUG;CMDNOTFOUNDMODULEINTERFACE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use Windows @@ -86,7 +84,7 @@ - Create + Create diff --git a/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj b/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj index 99042906fe..2a354198b8 100644 --- a/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj +++ b/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj @@ -49,7 +49,7 @@ - Create + Create diff --git a/src/modules/fancyzones/FancyZones/FancyZones.vcxproj b/src/modules/fancyzones/FancyZones/FancyZones.vcxproj index a26e00dcb1..d61eeb60fd 100644 --- a/src/modules/fancyzones/FancyZones/FancyZones.vcxproj +++ b/src/modules/fancyzones/FancyZones/FancyZones.vcxproj @@ -3,16 +3,9 @@ - - - true - Use - - - pch.h Level3 false true @@ -133,7 +126,7 @@ - Create + Create diff --git a/src/modules/fancyzones/FancyZonesLib/FancyZonesLib.vcxproj b/src/modules/fancyzones/FancyZonesLib/FancyZonesLib.vcxproj index e3be24801a..8b8315edb6 100644 --- a/src/modules/fancyzones/FancyZonesLib/FancyZonesLib.vcxproj +++ b/src/modules/fancyzones/FancyZonesLib/FancyZonesLib.vcxproj @@ -121,7 +121,7 @@ - Create + Create diff --git a/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj b/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj index 4d0f7fbece..fcc2a70ef4 100644 --- a/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj +++ b/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj @@ -44,7 +44,7 @@ - Create + Create diff --git a/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj b/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj index 685c63ca17..f1c2e8975e 100644 --- a/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj +++ b/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj @@ -51,7 +51,7 @@ - Create + Create diff --git a/src/modules/imageresizer/ImageResizerContextMenu/ImageResizerContextMenu.vcxproj b/src/modules/imageresizer/ImageResizerContextMenu/ImageResizerContextMenu.vcxproj index bd62017a6c..4631dadaf9 100644 --- a/src/modules/imageresizer/ImageResizerContextMenu/ImageResizerContextMenu.vcxproj +++ b/src/modules/imageresizer/ImageResizerContextMenu/ImageResizerContextMenu.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;IMAGERESIZERCONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\ImageResizerLib;..\..\..\common\inc;..\..\..\common\Telemetry;..\..\;..\..\..\;%(AdditionalIncludeDirectories) @@ -64,7 +63,6 @@ MakeAppx.exe pack /d . /p $(OutDir)ImageResizerContextMenuPackage.msix /nvtrue NDEBUG;IMAGERESIZERCONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\ImageResizerLib;..\..\..\common\inc;..\..\..\common\Telemetry;..\..\;..\..\..\;%(AdditionalIncludeDirectories) @@ -90,7 +88,7 @@ MakeAppx.exe pack /d . /p $(OutDir)ImageResizerContextMenuPackage.msix /nv - Create + Create diff --git a/src/modules/imageresizer/ImageResizerLib/ImageResizerLib.vcxproj b/src/modules/imageresizer/ImageResizerLib/ImageResizerLib.vcxproj index cce1ca9bac..7aad6f2cd5 100644 --- a/src/modules/imageresizer/ImageResizerLib/ImageResizerLib.vcxproj +++ b/src/modules/imageresizer/ImageResizerLib/ImageResizerLib.vcxproj @@ -37,7 +37,6 @@ Level3 WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - Use ..\..\..\common\Telemetry;..\..\..\;%(AdditionalIncludeDirectories) @@ -52,7 +51,6 @@ true true WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - Use ..\..\..\common\Telemetry;..\..\..\;%(AdditionalIncludeDirectories) @@ -72,7 +70,7 @@ - Create + Create diff --git a/src/modules/imageresizer/dll/ImageResizerExt.vcxproj b/src/modules/imageresizer/dll/ImageResizerExt.vcxproj index e669a76994..90bcd8e357 100644 --- a/src/modules/imageresizer/dll/ImageResizerExt.vcxproj +++ b/src/modules/imageresizer/dll/ImageResizerExt.vcxproj @@ -79,18 +79,16 @@ - false - - + false + - false - - + false + - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEditor/KeyboardManagerEditor.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEditor/KeyboardManagerEditor.vcxproj index a21ca7a12a..bc40022427 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEditor/KeyboardManagerEditor.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEditor/KeyboardManagerEditor.vcxproj @@ -7,17 +7,9 @@ 81010002 - - - - true - Use - - - pch.h Level3 false true @@ -126,7 +118,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEditorLibrary/KeyboardManagerEditorLibrary.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEditorLibrary/KeyboardManagerEditorLibrary.vcxproj index 5e99c8cf71..22fd5467a3 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEditorLibrary/KeyboardManagerEditorLibrary.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEditorLibrary/KeyboardManagerEditorLibrary.vcxproj @@ -69,7 +69,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj index 61f7494694..26b64786da 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj @@ -40,7 +40,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj index 96e6a36275..55d97e0b00 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj @@ -53,7 +53,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardManagerEngineLibrary.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardManagerEngineLibrary.vcxproj index f0c1c56702..21cf6729f2 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardManagerEngineLibrary.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardManagerEngineLibrary.vcxproj @@ -43,7 +43,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj index 5c5e1e90bb..6120ba8646 100644 --- a/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj +++ b/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj @@ -45,7 +45,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj b/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj index 3fdd382256..e1bb19f0cd 100644 --- a/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj +++ b/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj @@ -42,7 +42,7 @@ - Create + Create diff --git a/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj b/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj index b66361ff99..255ded7abd 100644 --- a/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj +++ b/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj @@ -50,7 +50,7 @@ - Create + Create diff --git a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj index 667b63a8ca..fc1f8a1c85 100644 --- a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj +++ b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj @@ -51,7 +51,7 @@ - Create + Create diff --git a/src/modules/pasteplain/PastePlainModuleInterface/PastePlainModuleInterface.vcxproj b/src/modules/pasteplain/PastePlainModuleInterface/PastePlainModuleInterface.vcxproj index 22371b8947..a285ae5bae 100644 --- a/src/modules/pasteplain/PastePlainModuleInterface/PastePlainModuleInterface.vcxproj +++ b/src/modules/pasteplain/PastePlainModuleInterface/PastePlainModuleInterface.vcxproj @@ -49,7 +49,7 @@ - Create + Create diff --git a/src/modules/peek/peek/peek.vcxproj b/src/modules/peek/peek/peek.vcxproj index 4dae4791d3..3da3b2e7de 100644 --- a/src/modules/peek/peek/peek.vcxproj +++ b/src/modules/peek/peek/peek.vcxproj @@ -43,7 +43,7 @@ - Create + Create diff --git a/src/modules/poweraccent/PowerAccentKeyboardService/PowerAccentKeyboardService.vcxproj b/src/modules/poweraccent/PowerAccentKeyboardService/PowerAccentKeyboardService.vcxproj index 38592d22d9..4f96f21e66 100644 --- a/src/modules/poweraccent/PowerAccentKeyboardService/PowerAccentKeyboardService.vcxproj +++ b/src/modules/poweraccent/PowerAccentKeyboardService/PowerAccentKeyboardService.vcxproj @@ -50,8 +50,6 @@ - Use - pch.h $(IntDir)pch.pch Level4 %(AdditionalOptions) /bigobj diff --git a/src/modules/poweraccent/PowerAccentModuleInterface/PowerAccentModuleInterface.vcxproj b/src/modules/poweraccent/PowerAccentModuleInterface/PowerAccentModuleInterface.vcxproj index e60d4a42d9..06f2722733 100644 --- a/src/modules/poweraccent/PowerAccentModuleInterface/PowerAccentModuleInterface.vcxproj +++ b/src/modules/poweraccent/PowerAccentModuleInterface/PowerAccentModuleInterface.vcxproj @@ -45,8 +45,7 @@ - Create - pch.h + Create diff --git a/src/modules/powerrename/PowerRenameContextMenu/PowerRenameContextMenu.vcxproj b/src/modules/powerrename/PowerRenameContextMenu/PowerRenameContextMenu.vcxproj index a5a93705d7..dc55cbab6f 100644 --- a/src/modules/powerrename/PowerRenameContextMenu/PowerRenameContextMenu.vcxproj +++ b/src/modules/powerrename/PowerRenameContextMenu/PowerRenameContextMenu.vcxproj @@ -45,7 +45,6 @@ true _DEBUG;POWERRENAMECONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\..\..\;..\lib\;..\..\;..\..\..\common\telemetry;%(AdditionalIncludeDirectories) @@ -68,7 +67,6 @@ MakeAppx.exe pack /d . /p $(OutDir)PowerRenameContextMenuPackage.msix /nvtrue NDEBUG;POWERRENAMECONTEXTMENU_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\..\..\;..\lib\;..\..\;..\..\..\common\telemetry;%(AdditionalIncludeDirectories) @@ -94,7 +92,7 @@ MakeAppx.exe pack /d . /p $(OutDir)PowerRenameContextMenuPackage.msix /nv - Create + Create diff --git a/src/modules/powerrename/PowerRenameUILib/PowerRenameUI.vcxproj b/src/modules/powerrename/PowerRenameUILib/PowerRenameUI.vcxproj index 642a8da77f..92cd4dd82e 100644 --- a/src/modules/powerrename/PowerRenameUILib/PowerRenameUI.vcxproj +++ b/src/modules/powerrename/PowerRenameUILib/PowerRenameUI.vcxproj @@ -57,8 +57,6 @@ - Use - pch.h $(IntDir)pch.pch Level4 %(AdditionalOptions) /bigobj diff --git a/src/modules/powerrename/dll/PowerRenameExt.vcxproj b/src/modules/powerrename/dll/PowerRenameExt.vcxproj index 0e269b53f1..a994c25148 100644 --- a/src/modules/powerrename/dll/PowerRenameExt.vcxproj +++ b/src/modules/powerrename/dll/PowerRenameExt.vcxproj @@ -46,7 +46,7 @@ - Create + Create diff --git a/src/modules/powerrename/lib/PowerRenameLib.vcxproj b/src/modules/powerrename/lib/PowerRenameLib.vcxproj index 143f531169..0f8c1e726d 100644 --- a/src/modules/powerrename/lib/PowerRenameLib.vcxproj +++ b/src/modules/powerrename/lib/PowerRenameLib.vcxproj @@ -59,7 +59,7 @@ - Create + Create diff --git a/src/modules/powerrename/testapp/PowerRenameTest.vcxproj b/src/modules/powerrename/testapp/PowerRenameTest.vcxproj index edb4c22d36..616f8e70a4 100644 --- a/src/modules/powerrename/testapp/PowerRenameTest.vcxproj +++ b/src/modules/powerrename/testapp/PowerRenameTest.vcxproj @@ -44,7 +44,7 @@ - Create + Create diff --git a/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj b/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj index 542019a9ee..56976c1877 100644 --- a/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj +++ b/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj @@ -55,7 +55,7 @@ - Create + Create diff --git a/src/modules/previewpane/GcodePreviewHandlerCpp/GcodePreviewHandlerCpp.vcxproj b/src/modules/previewpane/GcodePreviewHandlerCpp/GcodePreviewHandlerCpp.vcxproj index 8881cce555..6123215de5 100644 --- a/src/modules/previewpane/GcodePreviewHandlerCpp/GcodePreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/GcodePreviewHandlerCpp/GcodePreviewHandlerCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/previewpane/GcodeThumbnailProviderCpp/GcodeThumbnailProviderCpp.vcxproj b/src/modules/previewpane/GcodeThumbnailProviderCpp/GcodeThumbnailProviderCpp.vcxproj index 9e3f08dbf7..6bb6a12661 100644 --- a/src/modules/previewpane/GcodeThumbnailProviderCpp/GcodeThumbnailProviderCpp.vcxproj +++ b/src/modules/previewpane/GcodeThumbnailProviderCpp/GcodeThumbnailProviderCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/previewpane/MarkdownPreviewHandlerCpp/MarkdownPreviewHandlerCpp.vcxproj b/src/modules/previewpane/MarkdownPreviewHandlerCpp/MarkdownPreviewHandlerCpp.vcxproj index 906194f470..3c42d80bc0 100644 --- a/src/modules/previewpane/MarkdownPreviewHandlerCpp/MarkdownPreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/MarkdownPreviewHandlerCpp/MarkdownPreviewHandlerCpp.vcxproj @@ -46,7 +46,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -65,7 +64,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -90,7 +88,7 @@ - Create + Create diff --git a/src/modules/previewpane/MonacoPreviewHandlerCpp/MonacoPreviewHandlerCpp.vcxproj b/src/modules/previewpane/MonacoPreviewHandlerCpp/MonacoPreviewHandlerCpp.vcxproj index 265c3a8c11..dbe3cfced4 100644 --- a/src/modules/previewpane/MonacoPreviewHandlerCpp/MonacoPreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/MonacoPreviewHandlerCpp/MonacoPreviewHandlerCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/previewpane/PdfPreviewHandlerCpp/PdfPreviewHandlerCpp.vcxproj b/src/modules/previewpane/PdfPreviewHandlerCpp/PdfPreviewHandlerCpp.vcxproj index cdf06b4431..2a683cc14b 100644 --- a/src/modules/previewpane/PdfPreviewHandlerCpp/PdfPreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/PdfPreviewHandlerCpp/PdfPreviewHandlerCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -84,7 +82,7 @@ - Create + Create diff --git a/src/modules/previewpane/PdfThumbnailProviderCpp/PdfThumbnailProviderCpp.vcxproj b/src/modules/previewpane/PdfThumbnailProviderCpp/PdfThumbnailProviderCpp.vcxproj index 0219414765..1daebb6612 100644 --- a/src/modules/previewpane/PdfThumbnailProviderCpp/PdfThumbnailProviderCpp.vcxproj +++ b/src/modules/previewpane/PdfThumbnailProviderCpp/PdfThumbnailProviderCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -84,7 +82,7 @@ - Create + Create diff --git a/src/modules/previewpane/QoiPreviewHandlerCpp/QoiPreviewHandlerCpp.vcxproj b/src/modules/previewpane/QoiPreviewHandlerCpp/QoiPreviewHandlerCpp.vcxproj index 4da8cdb196..6bd7147154 100644 --- a/src/modules/previewpane/QoiPreviewHandlerCpp/QoiPreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/QoiPreviewHandlerCpp/QoiPreviewHandlerCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/previewpane/QoiThumbnailProviderCpp/QoiThumbnailProviderCpp.vcxproj b/src/modules/previewpane/QoiThumbnailProviderCpp/QoiThumbnailProviderCpp.vcxproj index ebfe79391b..8bdc0b826f 100644 --- a/src/modules/previewpane/QoiThumbnailProviderCpp/QoiThumbnailProviderCpp.vcxproj +++ b/src/modules/previewpane/QoiThumbnailProviderCpp/QoiThumbnailProviderCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -85,7 +83,7 @@ - Create + Create diff --git a/src/modules/previewpane/StlThumbnailProviderCpp/StlThumbnailProviderCpp.vcxproj b/src/modules/previewpane/StlThumbnailProviderCpp/StlThumbnailProviderCpp.vcxproj index e994e57665..202c2290d0 100644 --- a/src/modules/previewpane/StlThumbnailProviderCpp/StlThumbnailProviderCpp.vcxproj +++ b/src/modules/previewpane/StlThumbnailProviderCpp/StlThumbnailProviderCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -84,7 +82,7 @@ - Create + Create diff --git a/src/modules/previewpane/SvgPreviewHandlerCpp/SvgPreviewHandlerCpp.vcxproj b/src/modules/previewpane/SvgPreviewHandlerCpp/SvgPreviewHandlerCpp.vcxproj index 56d680ce4b..fc55a391d5 100644 --- a/src/modules/previewpane/SvgPreviewHandlerCpp/SvgPreviewHandlerCpp.vcxproj +++ b/src/modules/previewpane/SvgPreviewHandlerCpp/SvgPreviewHandlerCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -84,7 +82,7 @@ - Create + Create diff --git a/src/modules/previewpane/SvgThumbnailProviderCpp/SvgThumbnailProviderCpp.vcxproj b/src/modules/previewpane/SvgThumbnailProviderCpp/SvgThumbnailProviderCpp.vcxproj index cfa896cfb9..8712c6c298 100644 --- a/src/modules/previewpane/SvgThumbnailProviderCpp/SvgThumbnailProviderCpp.vcxproj +++ b/src/modules/previewpane/SvgThumbnailProviderCpp/SvgThumbnailProviderCpp.vcxproj @@ -42,7 +42,6 @@ true _DEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -61,7 +60,6 @@ true NDEBUG;MARKDOWNPREVIEWHANDLERCPP_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ../../.. @@ -84,7 +82,7 @@ - Create + Create diff --git a/src/modules/previewpane/powerpreview/powerpreview.vcxproj b/src/modules/previewpane/powerpreview/powerpreview.vcxproj index 682702b4e0..7ea86fc440 100644 --- a/src/modules/previewpane/powerpreview/powerpreview.vcxproj +++ b/src/modules/previewpane/powerpreview/powerpreview.vcxproj @@ -54,7 +54,7 @@ - Create + Create diff --git a/src/modules/registrypreview/RegistryPreviewExt/RegistryPreviewExt.vcxproj b/src/modules/registrypreview/RegistryPreviewExt/RegistryPreviewExt.vcxproj index 43b439b09e..e1b5064da4 100644 --- a/src/modules/registrypreview/RegistryPreviewExt/RegistryPreviewExt.vcxproj +++ b/src/modules/registrypreview/RegistryPreviewExt/RegistryPreviewExt.vcxproj @@ -58,7 +58,6 @@ true _DEBUG;REGISTRYPREVIEWEXT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\..\..\common\inc;..\..\..\common\Telemetry;..\..\;..\..\..\;%(AdditionalIncludeDirectories) @@ -76,7 +75,6 @@ true NDEBUG;REGISTRYPREVIEWEXT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - Use ..\..\..\common\inc;..\..\..\common\Telemetry;..\..\;..\..\..\;%(AdditionalIncludeDirectories) @@ -97,8 +95,7 @@ - Create - pch.h + Create diff --git a/src/modules/videoconference/VideoConferenceModule/VideoConference.vcxproj b/src/modules/videoconference/VideoConferenceModule/VideoConference.vcxproj index 826ee3f2d3..e043322021 100644 --- a/src/modules/videoconference/VideoConferenceModule/VideoConference.vcxproj +++ b/src/modules/videoconference/VideoConferenceModule/VideoConference.vcxproj @@ -42,14 +42,12 @@ - Use Level3 MaxSpeed true true true NDEBUG;OVERLAYWINDOW_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - pch.h MultiThreaded ..\..\..\;..\..\;..\VideoConferenceShared\;%(AdditionalIncludeDirectories) stdcpplatest @@ -65,12 +63,10 @@ - Use Level3 Disabled true _DEBUG;OVERLAYWINDOW_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - pch.h MultiThreadedDebug ..\..\..\common\inc;..\..\..\common\Telemetry;..\..\..\;..\..\;..\VideoConferenceShared\;%(AdditionalIncludeDirectories) stdcpplatest @@ -97,8 +93,7 @@ - Create - Create + Create diff --git a/src/runner/runner.vcxproj b/src/runner/runner.vcxproj index 0336716fec..90129f37f2 100644 --- a/src/runner/runner.vcxproj +++ b/src/runner/runner.vcxproj @@ -52,7 +52,7 @@ - Create + Create diff --git a/tools/MonitorReportTool/MonitorReportTool.vcxproj b/tools/MonitorReportTool/MonitorReportTool.vcxproj index 0d4dcfd25b..3c6019b5d3 100644 --- a/tools/MonitorReportTool/MonitorReportTool.vcxproj +++ b/tools/MonitorReportTool/MonitorReportTool.vcxproj @@ -80,7 +80,7 @@ - Create + Create diff --git a/tools/StylesReportTool/StylesReportTool.vcxproj b/tools/StylesReportTool/StylesReportTool.vcxproj index 3611715a74..97189f4ed5 100644 --- a/tools/StylesReportTool/StylesReportTool.vcxproj +++ b/tools/StylesReportTool/StylesReportTool.vcxproj @@ -78,7 +78,7 @@ - Create + Create diff --git a/tools/project_template/ModuleTemplate/ModuleTemplate.vcxproj b/tools/project_template/ModuleTemplate/ModuleTemplate.vcxproj index 4c67e7c93e..028007de67 100644 --- a/tools/project_template/ModuleTemplate/ModuleTemplate.vcxproj +++ b/tools/project_template/ModuleTemplate/ModuleTemplate.vcxproj @@ -80,12 +80,6 @@ $(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories) - - - Use - pch.h - - @@ -94,7 +88,7 @@ - Create + Create diff --git a/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj b/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj index e9ed3777d7..297516b0d5 100644 --- a/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj +++ b/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj @@ -43,12 +43,10 @@ - Use Level3 Disabled true _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - pch.h MultiThreadedDebug stdcpplatest @@ -60,14 +58,12 @@ - Use Level3 MaxSpeed true true true NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - pch.h MultiThreaded stdcpplatest @@ -92,8 +88,7 @@ - Create - pch.h + Create