@@ -46,6 +46,7 @@ public string GetFileName()
4646 public bool QuickViewAutoRefreshAvailable = false ;
4747 public bool NavigateToRawCodeOnDblClickInOutput = false ;
4848
49+ public bool ShowOpenInVsAlways = false ;
4950 //public bool BuildOnF7 = true;
5051 public bool BreakOnException = false ;
5152 public bool ReloadActiveScriptOnRun = true ;
@@ -138,6 +139,7 @@ public void Save()
138139 SetValue ( Section , nameof ( DebugPanelInitialTab ) , DebugPanelInitialTab ) ;
139140 SetValue ( Section , nameof ( LocalDebug ) , LocalDebug ) ;
140141 SetValue ( Section , nameof ( BreakOnException ) , BreakOnException ) ;
142+ SetValue ( Section , nameof ( ShowOpenInVsAlways ) , ShowOpenInVsAlways ) ;
141143 SetValue ( Section , nameof ( ReloadActiveScriptOnRun ) , ReloadActiveScriptOnRun ) ;
142144 SetValue ( Section , nameof ( UpdateAfterExit ) , UpdateAfterExit ) ;
143145 SetValue ( Section , nameof ( LastUpdatesCheckDate ) , LastUpdatesCheckDate ) ;
@@ -222,6 +224,7 @@ public void Open()
222224 NativeAutoCompletionChecked = GetValue ( Section , nameof ( NativeAutoCompletionChecked ) , NativeAutoCompletionChecked ) ;
223225 ReleaseNotesViewedFor = GetValue ( Section , nameof ( ReleaseNotesViewedFor ) , ReleaseNotesViewedFor ) ;
224226 BreakOnException = GetValue ( Section , nameof ( BreakOnException ) , BreakOnException ) ;
227+ ShowOpenInVsAlways = GetValue ( Section , nameof ( ShowOpenInVsAlways ) , ShowOpenInVsAlways ) ;
225228 ReloadActiveScriptOnRun = GetValue ( Section , nameof ( ReloadActiveScriptOnRun ) , ReloadActiveScriptOnRun ) ;
226229 UpdateAfterExit = GetValue ( Section , nameof ( UpdateAfterExit ) , UpdateAfterExit ) ;
227230 LastUpdatesCheckDate = GetValue ( Section , nameof ( LastUpdatesCheckDate ) , LastUpdatesCheckDate ) ;
0 commit comments