Free cookie consent management tool by TermsFeed Policy Generator

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

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

Implemented deployment service on servdev.heuristiclab.com and changed all service references and configurations to point to the service address. Improved GUI of installation manager. Implemented user name authentication and authorization for the deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 3.8 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:2.0.50727.4200
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")]
16    public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
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       
26        [global::System.Configuration.ApplicationScopedSettingAttribute()]
27        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
28        [global::System.Configuration.DefaultSettingValueAttribute("-")]
29        public string User {
30            get {
31                return ((string)(this["User"]));
32            }
33        }
34       
35        [global::System.Configuration.ApplicationScopedSettingAttribute()]
36        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
37        [global::System.Configuration.DefaultSettingValueAttribute("-")]
38        public string Organization {
39            get {
40                return ((string)(this["Organization"]));
41            }
42        }
43       
44        [global::System.Configuration.UserScopedSettingAttribute()]
45        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
46        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment/Update.svc")]
47        public string UpdateLocation {
48            get {
49                return ((string)(this["UpdateLocation"]));
50            }
51            set {
52                this["UpdateLocation"] = value;
53            }
54        }
55       
56        [global::System.Configuration.UserScopedSettingAttribute()]
57        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
58        [global::System.Configuration.DefaultSettingValueAttribute("")]
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()]
70        [global::System.Configuration.DefaultSettingValueAttribute("")]
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()]
82        [global::System.Configuration.DefaultSettingValueAttribute("http://servdev.heuristiclab.com/Deployment/Admin.svc")]
83        public string UpdateLocationAdministrationAddress {
84            get {
85                return ((string)(this["UpdateLocationAdministrationAddress"]));
86            }
87            set {
88                this["UpdateLocationAdministrationAddress"] = value;
89            }
90        }
91    }
92}
Note: See TracBrowser for help on using the repository browser.