mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
[ShortcutGuide&Installer] Move Shortcut Guide to separate build and install folder (#3810)
* Move Shortcut Guide to separate build and install folder * Rename shortcut_guide to ShortcutGuide * Propagate change to the pipeline
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>overlaywindow</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
|
||||
<ProjectName>ShortcutGuide</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
@@ -48,12 +49,12 @@
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\$(ProjectName)\</OutDir>
|
||||
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\$(ProjectName)\</OutDir>
|
||||
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
|
||||
@@ -126,7 +126,7 @@ int runner(bool isProcessElevated)
|
||||
std::wstring baseModuleFolder = L"modules/";
|
||||
|
||||
std::unordered_set<std::wstring> known_dlls = {
|
||||
L"shortcut_guide.dll",
|
||||
L"ShortcutGuide.dll",
|
||||
L"fancyzones.dll",
|
||||
L"PowerRenameExt.dll",
|
||||
L"Microsoft.Launcher.dll",
|
||||
@@ -135,10 +135,12 @@ int runner(bool isProcessElevated)
|
||||
L"KeyboardManager.dll"
|
||||
};
|
||||
|
||||
// TODO(stefan): When all modules get their OutputDir delete this and simplify "search for .dll logic"
|
||||
std::unordered_set<std::wstring> module_folders = {
|
||||
L"",
|
||||
L"FileExplorerPreview/",
|
||||
L"FancyZones/"
|
||||
L"FancyZones/",
|
||||
L"ShortcutGuide/"
|
||||
};
|
||||
|
||||
for (std::wstring subfolderName : module_folders)
|
||||
|
||||
Reference in New Issue
Block a user