mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Made debug command path relative to the working directory
This commit is contained in:
parent
a31770ca98
commit
e209f7ac66
1 changed files with 5 additions and 2 deletions
|
@ -10825,8 +10825,8 @@ namespace IDE
|
|||
|
||||
//options.mDebugOptions.mCommand
|
||||
|
||||
String launchPath = scope String();
|
||||
ResolveConfigString(mPlatformName, workspaceOptions, project, options, options.mDebugOptions.mCommand, "debug command", launchPath);
|
||||
String launchPathRel = scope String();
|
||||
ResolveConfigString(mPlatformName, workspaceOptions, project, options, options.mDebugOptions.mCommand, "debug command", launchPathRel);
|
||||
String arguments = scope String();
|
||||
ResolveConfigString(mPlatformName, workspaceOptions, project, options, "$(Arguments)", "debug command arguments", arguments);
|
||||
String workingDirRel = scope String();
|
||||
|
@ -10834,6 +10834,9 @@ namespace IDE
|
|||
var workingDir = scope String();
|
||||
Path.GetAbsolutePath(workingDirRel, project.mProjectDir, workingDir);
|
||||
|
||||
String launchPath = scope String();
|
||||
Path.GetAbsolutePath(launchPathRel, workingDir, launchPath);
|
||||
|
||||
String targetPath = scope .();
|
||||
ResolveConfigString(mPlatformName, workspaceOptions, project, options, "$(TargetPath)", "Target path", targetPath);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue