Added settings option for log rotation

This commit is contained in:
Szymon Porwolik
2021-02-17 23:40:23 +01:00
parent 0050f5fab5
commit f7a9301015
7 changed files with 60 additions and 7 deletions

View File

@@ -178,5 +178,17 @@ namespace Perun_v1.Properties {
this["OTHER_Minimize_to_Tray"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool OTHER_Log_Rotate {
get {
return ((bool)(this["OTHER_Log_Rotate"]));
}
set {
this["OTHER_Log_Rotate"] = value;
}
}
}
}