mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
[modules] Unify exe & dll naming (#14903)
* Unify exe/dll naming - AwakeModuleInterface * Unify exe/dll naming - ColorPicker.dll & ColorPickerUI.exe * Unify exe/dll naming - FancyZones, FancyZonesEditor & FancyZonesModuleInterface * Unify exe/dll naming - ImageResizerExt & ImageResizer.exe * Unify exe/dll naming - KeyboardManager.dll * Unify exe/dll naming - FindMyMouse & MouseHighlighter * Unify exe/dll naming - PowerRename.dll, PowerRenameUIHost & PowerRenameUILib * Unify exe/dll naming - File Explorer add-ons * Unify exe/dll naming - ShortcutGuide * Unify exe/dll naming - VCM * Unify exe/dll naming - PT Run * Unify exe/dll naming - *.resources.dll * [Fix] Unify exe/dll naming - VideoConferenceProxyFilter_x86
This commit is contained in:
Binary file not shown.
@@ -54,12 +54,12 @@
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\PowerRename\</OutDir>
|
||||
<TargetName>PowerRename</TargetName>
|
||||
<TargetName>PowerToys.PowerRename</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\PowerRename\</OutDir>
|
||||
<TargetName>PowerRename</TargetName>
|
||||
<TargetName>PowerToys.PowerRename</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmV3="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0">
|
||||
<asmV3:file name="PowerRenameUILib.dll">
|
||||
<asmV3:file name="PowerToys.PowerRenameUILib.dll">
|
||||
<activatableClass name="PowerRenameUILib.App" threadingModel="both" xmlns="urn:schemas-microsoft-com:winrt.v1" />
|
||||
<activatableClass name="PowerRenameUILib.XamlMetadataProvider" threadingModel="both" xmlns="urn:schemas-microsoft-com:winrt.v1" />
|
||||
<activatableClass name="PowerRenameUILib.MainWindow" threadingModel="both" xmlns="urn:schemas-microsoft-com:winrt.v1" />
|
||||
|
||||
@@ -71,9 +71,11 @@
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\PowerRename\</OutDir>
|
||||
<TargetName>PowerToys.PowerRenameUILib</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\PowerRename\</OutDir>
|
||||
<TargetName>PowerToys.PowerRenameUILib</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
|
||||
@@ -129,7 +129,7 @@ HRESULT CPowerRenameMenu::RunPowerRename(CMINVOKECOMMANDINFO* pici, IShellItemAr
|
||||
Trace::Invoked();
|
||||
// Set the application path based on the location of the dll
|
||||
std::wstring path = get_module_folderpath(g_hInst);
|
||||
path = path + L"\\PowerRename.exe";
|
||||
path = path + L"\\PowerToys.PowerRename.exe";
|
||||
LPTSTR lpApplicationName = (LPTSTR)path.c_str();
|
||||
// Create an anonymous pipe to stream filenames
|
||||
SECURITY_ATTRIBUTES sa;
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
<VCProjectVersion>15.0</VCProjectVersion>
|
||||
<ProjectGuid>{B25AC7A5-FB9F-4789-B392-D5C85E948670}</ProjectGuid>
|
||||
<RootNamespace>PowerRenameExt</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<TargetName>$(ProjectName)</TargetName>
|
||||
<TargetName>PowerToys.PowerRenameExt</TargetName>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\PowerRename\</OutDir>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
// Non-localizable
|
||||
|
||||
#define FILE_DESCRIPTION "PowerToys PowerRenameExt"
|
||||
#define INTERNAL_NAME "PowerRenameExt"
|
||||
#define ORIGINAL_FILENAME "PowerRenameExt.dll"
|
||||
#define INTERNAL_NAME "PowerToys.PowerRenameExt"
|
||||
#define ORIGINAL_FILENAME "PowerToys.PowerRenameExt.dll"
|
||||
#define IDI_RENAME 2001
|
||||
#define IDS_OVERVIEW_LINK 2002
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ int APIENTRY wWinMain(
|
||||
{
|
||||
// Set the application path based on the location of the dll
|
||||
std::wstring path = get_module_folderpath(g_hostHInst);
|
||||
path = path + L"\\PowerRename.exe";
|
||||
path = path + L"\\PowerToys.PowerRename.exe";
|
||||
LPTSTR lpApplicationName = (LPTSTR)path.c_str();
|
||||
|
||||
CString commandLine;
|
||||
|
||||
Reference in New Issue
Block a user