Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2016-09-07 16:13:10 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2016-09-07 16:13:10 +0300
commit6fb51f0c1cc1035abba8e92fffdeff84949ca254 (patch)
tree4a8c760072908e7431818b0424382cecae7552cc /main/src/addins/MonoDevelop.Debugger.Soft
parentb0087f7d1c147c5b3c68135acf9cc6686cb0d2c8 (diff)
Bug 43472 - Run configuration aren't respected when debugging.
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Soft')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs b/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
index fbdcd76b24..c81abfbcdd 100644
--- a/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
@@ -76,6 +76,7 @@ namespace MonoDevelop.Debugger.Soft
var dsi = new SoftDebuggerStartInfo (null, runtime.EnvironmentVariables) {
Command = cmd.Command,
Arguments = cmd.Arguments,
+ RuntimeArguments = cmd.RuntimeArguments,
WorkingDirectory = cmd.WorkingDirectory,
};
((SoftDebuggerLaunchArgs)dsi.StartArgs).MonoExecutableFileName = runtime.GetMonoExecutableForAssembly (cmd.Command);