Example #1
0
 public void Load()
 {
     NoDatabaseFactory           = EO.GetNoDatabaseFactory();
     AutoDetectCondaEnvironments = EO.GetAutoDetectCondaEnvironments();
     UseCondaPackageManager      = EO.GetUseCondaPackageManager();
     Changed?.Invoke(this, EventArgs.Empty);
 }
Example #2
0
 public void Load()
 {
     PromptBeforeRunningWithBuildError = !(_service.LoadBool(DontPromptBeforeRunningWithBuildErrorSetting, Category) ?? false);
     WaitOnAbnormalExit    = _service.LoadBool(WaitOnAbnormalExitSetting, Category) ?? true;
     WaitOnNormalExit      = _service.LoadBool(WaitOnNormalExitSetting, Category) ?? true;
     TeeStandardOutput     = _service.LoadBool(TeeStandardOutSetting, Category) ?? true;
     BreakOnSystemExitZero = _service.LoadBool(BreakOnSystemExitZeroSetting, Category) ?? false;
     DebugStdLib           = _service.LoadBool(DebugStdLibSetting, Category) ?? false;
     UseLegacyDebugger     = !EO.GetUseVsCodeDebugger();
     Changed?.Invoke(this, EventArgs.Empty);
 }
Example #3
0
 private void OnUseVsCodeDebuggerChanged(object sender, EventArgs e)
 {
     UseVsCodeDebugger = EO.GetUseVsCodeDebugger();
 }
Example #4
0
 public void Load()
 {
     NoDatabaseFactory = EO.GetNoDatabaseFactory();
     Changed?.Invoke(this, EventArgs.Empty);
 }