Skip to content

Commit

Permalink
Added support for PreLaunchCommand in Linux Vcxproj user file
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Demers committed Jul 23, 2024
1 parent e8dd74d commit 0d606d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public sealed partial class LinuxPlatform
<LocalDebuggerCommandArguments>[conf.VcxprojUserFile.LocalDebuggerCommandArguments]</LocalDebuggerCommandArguments>
<LocalDebuggerWorkingDirectory>[conf.VcxprojUserFile.LocalDebuggerWorkingDirectory]</LocalDebuggerWorkingDirectory>
<LocalDebuggerAttach>[conf.VcxprojUserFile.LocalDebuggerAttachString]</LocalDebuggerAttach>
<PreLaunchCommand>[conf.VcxprojUserFile.PreLaunchCommand]</PreLaunchCommand>
<RemoteDebuggerCommand>[conf.VcxprojUserFile.RemoteDebuggerCommand]</RemoteDebuggerCommand>
<RemoteDebuggerCommandArguments>[conf.VcxprojUserFile.RemoteDebuggerCommandArguments]</RemoteDebuggerCommandArguments>
<RemoteDebuggingMode>[conf.VcxprojUserFile.RemoteDebuggingMode]</RemoteDebuggingMode>
Expand Down
1 change: 1 addition & 0 deletions Sharpmake/Project.Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3303,6 +3303,7 @@ public class VcxprojUserFileSettings
public string LocalDebuggerEnvironment = RemoveLineTag;
public string LocalDebuggerWorkingDirectory = RemoveLineTag;
public bool LocalDebuggerAttach = false;
public string PreLaunchCommand = RemoveLineTag;
public string RemoteDebuggerCommand = RemoveLineTag;
public string RemoteDebuggerCommandArguments = RemoveLineTag;
public string RemoteDebuggingMode = RemoveLineTag;
Expand Down

0 comments on commit 0d606d9

Please sign in to comment.