Skip to content

Commit

Permalink
fixed #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Saurwein committed Aug 31, 2023
1 parent 59007b5 commit 6e7c538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BackgroundLaunch/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public Runner(LaunchInfo item)
if ((item.ItemType == ItemTypeEnum.Solution) || (item.ItemType == ItemTypeEnum.Project))
{
startInfo.FileName = this.launchInfo.Target;
startInfo.Arguments = item.Path;
startInfo.Arguments = "\"" + item.Path + "\"";
if (!string.IsNullOrEmpty(item.Commands))
{
startInfo.Arguments += " " + item.Commands;
Expand Down

0 comments on commit 6e7c538

Please sign in to comment.