Exemple #1
0
 public void SaveSettings()
 {
     _properties.SetProperty(CommonConstants.SearchPath, SearchPaths);
     _properties.SetProperty(CommonConstants.CommandLineArguments, Arguments);
     _properties.SetProperty(CommonConstants.InterpreterPath, InterpreterPath);
     _properties.SetProperty(DebugStandardLibrarySetting, DebugStandardLibrary.ToString());
     RaiseIsSaved();
 }
Exemple #2
0
 public void SaveSettings()
 {
     _properties.SetProperty(PythonConstants.SearchPathSetting, SearchPaths);
     _properties.SetProperty(PythonConstants.CommandLineArgumentsSetting, Arguments);
     _properties.SetProperty(PythonConstants.InterpreterPathSetting, InterpreterPath);
     _properties.SetProperty(DebugStandardLibrarySetting, DebugStandardLibrary.ToString());
     _properties.SetProperty(PythonConstants.InterpreterArgumentsSetting, _interpArgs.Text);
     RaiseIsSaved();
 }