mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +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:
@@ -52,11 +52,13 @@
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\VideoConference\</OutDir>
|
||||
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
<TargetName>PowerToys.VideoConferenceModule</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\VideoConference\</OutDir>
|
||||
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
<TargetName>PowerToys.VideoConferenceModule</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
|
||||
@@ -440,7 +440,7 @@ void toggleProxyCamRegistration(const bool enable)
|
||||
auto vcmRoot = fs::path{ get_module_folderpath() } / "modules";
|
||||
vcmRoot /= "VideoConference";
|
||||
|
||||
std::array<fs::path, 2> proxyFilters = { vcmRoot / "VideoConferenceProxyFilter_x64.dll", vcmRoot / "VideoConferenceProxyFilter_x86.dll" };
|
||||
std::array<fs::path, 2> proxyFilters = { vcmRoot / "PowerToys.VideoConferenceProxyFilter_x64.dll", vcmRoot / "PowerToys.VideoConferenceProxyFilter_x86.dll" };
|
||||
for (const auto filter : proxyFilters)
|
||||
{
|
||||
std::wstring params{ L"/s " };
|
||||
|
||||
@@ -66,11 +66,11 @@
|
||||
</ItemDefinitionGroup>
|
||||
<PropertyGroup Condition="'$(Platform)'!='Win32'">
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\VideoConference\</OutDir>
|
||||
<TargetName>VideoConferenceProxyFilter_x64</TargetName>
|
||||
<TargetName>PowerToys.VideoConferenceProxyFilter_x64</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Platform)'=='Win32'">
|
||||
<OutDir>..\..\..\..\x86\$(Configuration)\modules\VideoConference\</OutDir>
|
||||
<TargetName>VideoConferenceProxyFilter_x86</TargetName>
|
||||
<TargetName>PowerToys.VideoConferenceProxyFilter_x86</TargetName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
|
||||
Reference in New Issue
Block a user