added option to disable the running instance check.

This commit is contained in:
Brett Hewitson 2021-12-23 16:33:03 +10:00
parent 31fd479919
commit ec6eb847da
16 changed files with 102 additions and 6 deletions

View file

@ -2261,5 +2261,17 @@ namespace ServerManagerTool {
this["ServerCallUrlLast"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool CheckIfServerManagerRunningOnStartup {
get {
return ((bool)(this["CheckIfServerManagerRunningOnStartup"]));
}
set {
this["CheckIfServerManagerRunningOnStartup"] = value;
}
}
}
}