diff --git a/PowerToys.sln b/PowerToys.sln index c0c95b9f3a..86d29bd040 100644 --- a/PowerToys.sln +++ b/PowerToys.sln @@ -374,7 +374,6 @@ Global {A7D5099E-F0FD-4BF3-8522-5A682759F915}.Debug|x64.Build.0 = Debug|x64 {A7D5099E-F0FD-4BF3-8522-5A682759F915}.Release|x64.ActiveCfg = Release|x64 {A7D5099E-F0FD-4BF3-8522-5A682759F915}.Release|x64.Build.0 = Release|x64 - {A7D5099E-F0FD-4BF3-8522-5A682759F915}.Release|x64.Deploy.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 diff --git a/installer/PowerToysSetup/Product.wxs b/installer/PowerToysSetup/Product.wxs index beddb2b74e..5d0d1ba6a2 100644 --- a/installer/PowerToysSetup/Product.wxs +++ b/installer/PowerToysSetup/Product.wxs @@ -212,6 +212,16 @@ + + + + + + + + + + @@ -271,6 +281,9 @@ + + + @@ -331,6 +344,10 @@ + + + + @@ -484,6 +501,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -525,6 +615,7 @@ + @@ -535,6 +626,14 @@ + + + + + + + + diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Runner/Microsoft.PowerToys.Settings.UI.Runner.csproj b/src/core/Microsoft.PowerToys.Settings.UI.Runner/Microsoft.PowerToys.Settings.UI.Runner.csproj index 216232bbf2..39eac9682f 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI.Runner/Microsoft.PowerToys.Settings.UI.Runner.csproj +++ b/src/core/Microsoft.PowerToys.Settings.UI.Runner/Microsoft.PowerToys.Settings.UI.Runner.csproj @@ -18,17 +18,21 @@ x64 icon.ico + false + false uap10.0.18362 - ..\..\..\$(Platform)\$(Configuration)\ + ..\..\..\$(Platform)\$(Configuration)\SettingsUIRunner + false - ..\..\..\$(Platform)\$(Configuration)\ + ..\..\..\$(Platform)\$(Configuration)\SettingsUIRunner + true @@ -62,8 +66,10 @@ - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/core/Microsoft.PowerToys.Settings.UI/Microsoft.PowerToys.Settings.UI.csproj b/src/core/Microsoft.PowerToys.Settings.UI/Microsoft.PowerToys.Settings.UI.csproj index 6ce134a25e..cf6096972f 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI/Microsoft.PowerToys.Settings.UI.csproj +++ b/src/core/Microsoft.PowerToys.Settings.UI/Microsoft.PowerToys.Settings.UI.csproj @@ -2,7 +2,7 @@ - Debug + Debug x64 {A7D5099E-F0FD-4BF3-8522-5A682759F915} AppContainerExe diff --git a/src/runner/settings_window.cpp b/src/runner/settings_window.cpp index 37ebf9542b..8bb28ff0c0 100644 --- a/src/runner/settings_window.cpp +++ b/src/runner/settings_window.cpp @@ -222,7 +222,7 @@ void run_settings_window() // Arg 1: executable path. std::wstring executable_path = get_module_folderpath(); - executable_path.append(L"\\netcoreapp3.1\\Microsoft.PowerToys.Settings.UI.Runner.exe"); + executable_path.append(L"\\SettingsUIRunner\\Microsoft.PowerToys.Settings.UI.Runner.exe"); // Arg 2: pipe server. Generate unique names for the pipes, if getting a UUID is possible. std::wstring powertoys_pipe_name(L"\\\\.\\pipe\\powertoys_runner_");