mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
remove quotation marks
This commit is contained in:
@@ -147,7 +147,7 @@ namespace ProjectsEditor.ViewModels
|
||||
IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(shortcutAddress);
|
||||
shortcut.Description = $"Project Launcher {project.Id}";
|
||||
shortcut.TargetPath = Path.Combine(basePath, "PowerToys.ProjectsLauncher.exe");
|
||||
shortcut.Arguments = '"' + project.Id + '"';
|
||||
shortcut.Arguments = project.Id;
|
||||
shortcut.WorkingDirectory = basePath;
|
||||
shortcut.IconLocation = shortcutIconFilename;
|
||||
shortcut.Save();
|
||||
|
||||
Reference in New Issue
Block a user