summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-08-22 20:38:11 +0200
committeremkael <emkael@tlen.pl>2017-08-22 20:38:11 +0200
commitc94ddd514fb44f50c82cad8f8684d72805522bb6 (patch)
tree2fa6558ba6872625fd8f2590ea420da8f0d8d266
parentb806ab2d43746a2c5af4a9db50924db93fc7242a (diff)
Adding property flag set on first MySQL configuration save
-rw-r--r--Aktywator/Properties/Settings.Designer.cs14
-rw-r--r--Aktywator/Properties/Settings.settings3
-rw-r--r--Aktywator/app.config3
3 files changed, 19 insertions, 1 deletions
diff --git a/Aktywator/Properties/Settings.Designer.cs b/Aktywator/Properties/Settings.Designer.cs
index b099227..b5c16ed 100644
--- a/Aktywator/Properties/Settings.Designer.cs
+++ b/Aktywator/Properties/Settings.Designer.cs
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
-// Runtime Version:4.0.30319.225
+// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -70,5 +70,17 @@ namespace Aktywator.Properties {
this["PORT"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool CONFIGURED {
+ get {
+ return ((bool)(this["CONFIGURED"]));
+ }
+ set {
+ this["CONFIGURED"] = value;
+ }
+ }
}
}
diff --git a/Aktywator/Properties/Settings.settings b/Aktywator/Properties/Settings.settings
index 76a000d..7dbc1ee 100644
--- a/Aktywator/Properties/Settings.settings
+++ b/Aktywator/Properties/Settings.settings
@@ -14,5 +14,8 @@
<Setting Name="PORT" Type="System.String" Scope="User">
<Value Profile="(Default)">3306</Value>
</Setting>
+ <Setting Name="CONFIGURED" Type="System.Boolean" Scope="User">
+ <Value Profile="(Default)">False</Value>
+ </Setting>
</Settings>
</SettingsFile> \ No newline at end of file
diff --git a/Aktywator/app.config b/Aktywator/app.config
index 7473011..f8dd4d2 100644
--- a/Aktywator/app.config
+++ b/Aktywator/app.config
@@ -19,6 +19,9 @@
<setting name="PORT" serializeAs="String">
<value>3306</value>
</setting>
+ <setting name="CONFIGURED" serializeAs="String">
+ <value>False</value>
+ </setting>
</Aktywator.Properties.Settings>
</userSettings>
</configuration> \ No newline at end of file