Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Properties/Settings.Designer.cs @ 3547

Last change on this file since 3547 was 3547, checked in by gkronber, 14 years ago

Implemented review comments in plugin manager. #989 (Implement review comments in plugin infrastructure)

File size: 4.3 KB
RevLine 
[3112]1//------------------------------------------------------------------------------
[2]2// <auto-generated>
3//     This code was generated by a tool.
[2504]4//     Runtime Version:2.0.50727.4200
[2]5//
6//     Changes to this file may cause incorrect behavior and will be lost if
7//     the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace HeuristicLab.PluginInfrastructure.Properties {
12   
13   
14    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")]
[854]16    public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
[2]17       
18        private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19       
20        public static Settings Default {
21            get {
22                return defaultInstance;
23            }
24        }
25       
[854]26        [global::System.Configuration.ApplicationScopedSettingAttribute()]
[2]27        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[2597]28        [global::System.Configuration.DefaultSettingValueAttribute("-")]
[2527]29        public string User {
[2]30            get {
[2527]31                return ((string)(this["User"]));
[2]32            }
33        }
[2504]34       
35        [global::System.Configuration.ApplicationScopedSettingAttribute()]
36        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[2597]37        [global::System.Configuration.DefaultSettingValueAttribute("-")]
[2527]38        public string Organization {
[2504]39            get {
[2527]40                return ((string)(this["Organization"]));
[2504]41            }
42        }
43       
[3006]44        [global::System.Configuration.UserScopedSettingAttribute()]
[2504]45        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[3112]46        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment-3.3/Update.svc")]
[3006]47        public string UpdateLocation {
[2504]48            get {
[3006]49                return ((string)(this["UpdateLocation"]));
[2504]50            }
[3006]51            set {
52                this["UpdateLocation"] = value;
53            }
[2504]54        }
[3006]55       
56        [global::System.Configuration.UserScopedSettingAttribute()]
57        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[3112]58        [global::System.Configuration.DefaultSettingValueAttribute("anonymous")]
[3006]59        public string UpdateLocationUserName {
60            get {
61                return ((string)(this["UpdateLocationUserName"]));
62            }
63            set {
64                this["UpdateLocationUserName"] = value;
65            }
66        }
67       
68        [global::System.Configuration.UserScopedSettingAttribute()]
69        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[3112]70        [global::System.Configuration.DefaultSettingValueAttribute("GetTheLab!")]
[3006]71        public string UpdateLocationPassword {
72            get {
73                return ((string)(this["UpdateLocationPassword"]));
74            }
75            set {
76                this["UpdateLocationPassword"] = value;
77            }
78        }
79       
80        [global::System.Configuration.UserScopedSettingAttribute()]
81        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[3112]82        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment-3.3/Admin.svc")]
[3006]83        public string UpdateLocationAdministrationAddress {
84            get {
85                return ((string)(this["UpdateLocationAdministrationAddress"]));
86            }
87            set {
88                this["UpdateLocationAdministrationAddress"] = value;
89            }
90        }
[3508]91       
92        [global::System.Configuration.UserScopedSettingAttribute()]
93        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[3547]94        [global::System.Configuration.DefaultSettingValueAttribute("False")]
[3508]95        public bool ShowPluginUploadControls {
96            get {
97                return ((bool)(this["ShowPluginUploadControls"]));
98            }
99            set {
100                this["ShowPluginUploadControls"] = value;
101            }
102        }
[2]103    }
104}
Note: See TracBrowser for help on using the repository browser.