Changeset 4068 for trunk/sources/HeuristicLab.PluginInfrastructure
- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/3.3
- Files:
-
- 59 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/AvailablePluginsView.cs
r3721 r4068 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using System.Drawing;25 using System.Data;26 24 using System.Linq; 27 using System.Text;28 25 using System.Windows.Forms; 29 26 using HeuristicLab.PluginInfrastructure.Manager; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/BasicUpdateView.cs
r3547 r4068 23 23 using System.Collections.Generic; 24 24 using System.ComponentModel; 25 using System.Drawing;26 using System.Data;27 25 using System.Linq; 28 using System.Text;29 using System.Windows.Forms;30 26 using HeuristicLab.PluginInfrastructure.Manager; 31 27 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/ConfirmationDialog.cs
r3752 r4068 20 20 #endregion 21 21 using System; 22 using System.Collections.Generic;23 using System.ComponentModel;24 using System.Data;25 using System.Drawing;26 using System.Linq;27 using System.Text;28 22 using System.Windows.Forms; 29 23 30 24 namespace HeuristicLab.PluginInfrastructure.Advanced { 31 25 internal partial class ConfirmationDialog : Form { 32 public ConfirmationDialog() : base() { 26 public ConfirmationDialog() 27 : base() { 33 28 InitializeComponent(); 34 29 icon.Image = System.Drawing.SystemIcons.Exclamation.ToBitmap(); -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/ConnectionSetupView.cs
r3474 r4068 20 20 #endregion 21 21 using System; 22 using System.Collections.Generic;23 using System.ComponentModel;24 using System.Drawing;25 using System.Data;26 using System.Linq;27 using System.Text;28 22 using System.Windows.Forms; 29 23 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/AdminClientFactory.cs
r3771 r4068 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 22 using System.Reflection; 23 using System.Security.Cryptography.X509Certificates; 26 24 using System.ServiceModel; 27 using System.Security.Cryptography.X509Certificates;28 using System.Reflection;29 25 30 26 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/DeploymentServerCertificateValidator.cs
r3771 r4068 1 1 using System; 2 using System.Collections.Generic;3 using System.Linq;4 using System.Text;5 using System.Security.Cryptography.X509Certificates;6 2 using System.IdentityModel.Selectors; 7 3 using System.IdentityModel.Tokens; 4 using System.Security.Cryptography.X509Certificates; 8 5 9 6 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/DeploymentService.cs
r3612 r4068 9 9 //------------------------------------------------------------------------------ 10 10 11 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService 12 { 13 using System.Runtime.Serialization; 14 15 16 [System.Diagnostics.DebuggerStepThroughAttribute()] 17 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")] 18 [System.Runtime.Serialization.DataContractAttribute(Name="PluginDescription", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment", IsReference=true)] 19 public partial class PluginDescription : object, System.Runtime.Serialization.IExtensibleDataObject 20 { 21 22 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; 23 24 private string ContactEmailField; 25 26 private string ContactNameField; 27 28 private HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] DependenciesField; 29 30 private string LicenseTextField; 31 32 private string NameField; 33 34 private System.Version VersionField; 35 36 public System.Runtime.Serialization.ExtensionDataObject ExtensionData 37 { 38 get 39 { 40 return this.extensionDataField; 41 } 42 set 43 { 44 this.extensionDataField = value; 45 } 46 } 47 48 [System.Runtime.Serialization.DataMemberAttribute()] 49 public string ContactEmail 50 { 51 get 52 { 53 return this.ContactEmailField; 54 } 55 set 56 { 57 this.ContactEmailField = value; 58 } 59 } 60 61 [System.Runtime.Serialization.DataMemberAttribute()] 62 public string ContactName 63 { 64 get 65 { 66 return this.ContactNameField; 67 } 68 set 69 { 70 this.ContactNameField = value; 71 } 72 } 73 74 [System.Runtime.Serialization.DataMemberAttribute()] 75 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] Dependencies 76 { 77 get 78 { 79 return this.DependenciesField; 80 } 81 set 82 { 83 this.DependenciesField = value; 84 } 85 } 86 87 [System.Runtime.Serialization.DataMemberAttribute()] 88 public string LicenseText 89 { 90 get 91 { 92 return this.LicenseTextField; 93 } 94 set 95 { 96 this.LicenseTextField = value; 97 } 98 } 99 100 [System.Runtime.Serialization.DataMemberAttribute()] 101 public string Name 102 { 103 get 104 { 105 return this.NameField; 106 } 107 set 108 { 109 this.NameField = value; 110 } 111 } 112 113 [System.Runtime.Serialization.DataMemberAttribute()] 114 public System.Version Version 115 { 116 get 117 { 118 return this.VersionField; 119 } 120 set 121 { 122 this.VersionField = value; 123 } 124 } 125 } 126 127 [System.Diagnostics.DebuggerStepThroughAttribute()] 128 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")] 129 [System.Runtime.Serialization.DataContractAttribute(Name="ProductDescription", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment")] 130 public partial class ProductDescription : object, System.Runtime.Serialization.IExtensibleDataObject 131 { 132 133 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; 134 135 private string NameField; 136 137 private HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] PluginsField; 138 139 private System.Version VersionField; 140 141 public System.Runtime.Serialization.ExtensionDataObject ExtensionData 142 { 143 get 144 { 145 return this.extensionDataField; 146 } 147 set 148 { 149 this.extensionDataField = value; 150 } 151 } 152 153 [System.Runtime.Serialization.DataMemberAttribute()] 154 public string Name 155 { 156 get 157 { 158 return this.NameField; 159 } 160 set 161 { 162 this.NameField = value; 163 } 164 } 165 166 [System.Runtime.Serialization.DataMemberAttribute()] 167 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] Plugins 168 { 169 get 170 { 171 return this.PluginsField; 172 } 173 set 174 { 175 this.PluginsField = value; 176 } 177 } 178 179 [System.Runtime.Serialization.DataMemberAttribute()] 180 public System.Version Version 181 { 182 get 183 { 184 return this.VersionField; 185 } 186 set 187 { 188 this.VersionField = value; 189 } 190 } 191 } 192 193 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 194 [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate")] 195 public interface IUpdate 196 { 197 198 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUpdate/GetPlugin", ReplyAction="http://tempuri.org/IUpdate/GetPluginResponse")] 199 byte[] GetPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription description); 200 201 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUpdate/GetProducts", ReplyAction="http://tempuri.org/IUpdate/GetProductsResponse")] 202 HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription[] GetProducts(); 203 204 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUpdate/GetPlugins", ReplyAction="http://tempuri.org/IUpdate/GetPluginsResponse")] 205 HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] GetPlugins(); 206 } 207 208 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 209 public interface IUpdateChannel : HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate, System.ServiceModel.IClientChannel 210 { 211 } 212 213 [System.Diagnostics.DebuggerStepThroughAttribute()] 214 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 215 public partial class UpdateClient : System.ServiceModel.ClientBase<HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate>, HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate 216 { 217 218 public UpdateClient() 219 { 220 } 221 222 public UpdateClient(string endpointConfigurationName) : 223 base(endpointConfigurationName) 224 { 225 } 226 227 public UpdateClient(string endpointConfigurationName, string remoteAddress) : 228 base(endpointConfigurationName, remoteAddress) 229 { 230 } 231 232 public UpdateClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 233 base(endpointConfigurationName, remoteAddress) 234 { 235 } 236 237 public UpdateClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 238 base(binding, remoteAddress) 239 { 240 } 241 242 public byte[] GetPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription description) 243 { 244 return base.Channel.GetPlugin(description); 245 } 246 247 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription[] GetProducts() 248 { 249 return base.Channel.GetProducts(); 250 } 251 252 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] GetPlugins() 253 { 254 return base.Channel.GetPlugins(); 255 } 256 } 257 258 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 259 [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin")] 260 public interface IAdmin 261 { 262 263 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployProduct", ReplyAction="http://tempuri.org/IAdmin/DeployProductResponse")] 264 void DeployProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product); 265 266 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeleteProduct", ReplyAction="http://tempuri.org/IAdmin/DeleteProductResponse")] 267 void DeleteProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product); 268 269 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployPlugin", ReplyAction="http://tempuri.org/IAdmin/DeployPluginResponse")] 270 void DeployPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription plugin, byte[] zipFile); 271 } 272 273 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 274 public interface IAdminChannel : HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin, System.ServiceModel.IClientChannel 275 { 276 } 277 278 [System.Diagnostics.DebuggerStepThroughAttribute()] 279 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 280 public partial class AdminClient : System.ServiceModel.ClientBase<HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin>, HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin 281 { 282 283 public AdminClient() 284 { 285 } 286 287 public AdminClient(string endpointConfigurationName) : 288 base(endpointConfigurationName) 289 { 290 } 291 292 public AdminClient(string endpointConfigurationName, string remoteAddress) : 293 base(endpointConfigurationName, remoteAddress) 294 { 295 } 296 297 public AdminClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 298 base(endpointConfigurationName, remoteAddress) 299 { 300 } 301 302 public AdminClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 303 base(binding, remoteAddress) 304 { 305 } 306 307 public void DeployProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product) 308 { 309 base.Channel.DeployProduct(product); 310 } 311 312 public void DeleteProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product) 313 { 314 base.Channel.DeleteProduct(product); 315 } 316 317 public void DeployPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription plugin, byte[] zipFile) 318 { 319 base.Channel.DeployPlugin(plugin, zipFile); 320 } 321 } 11 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { 12 13 14 [System.Diagnostics.DebuggerStepThroughAttribute()] 15 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")] 16 [System.Runtime.Serialization.DataContractAttribute(Name = "PluginDescription", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment", IsReference = true)] 17 public partial class PluginDescription : object, System.Runtime.Serialization.IExtensibleDataObject { 18 19 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; 20 21 private string ContactEmailField; 22 23 private string ContactNameField; 24 25 private HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] DependenciesField; 26 27 private string LicenseTextField; 28 29 private string NameField; 30 31 private System.Version VersionField; 32 33 public System.Runtime.Serialization.ExtensionDataObject ExtensionData { 34 get { 35 return this.extensionDataField; 36 } 37 set { 38 this.extensionDataField = value; 39 } 40 } 41 42 [System.Runtime.Serialization.DataMemberAttribute()] 43 public string ContactEmail { 44 get { 45 return this.ContactEmailField; 46 } 47 set { 48 this.ContactEmailField = value; 49 } 50 } 51 52 [System.Runtime.Serialization.DataMemberAttribute()] 53 public string ContactName { 54 get { 55 return this.ContactNameField; 56 } 57 set { 58 this.ContactNameField = value; 59 } 60 } 61 62 [System.Runtime.Serialization.DataMemberAttribute()] 63 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] Dependencies { 64 get { 65 return this.DependenciesField; 66 } 67 set { 68 this.DependenciesField = value; 69 } 70 } 71 72 [System.Runtime.Serialization.DataMemberAttribute()] 73 public string LicenseText { 74 get { 75 return this.LicenseTextField; 76 } 77 set { 78 this.LicenseTextField = value; 79 } 80 } 81 82 [System.Runtime.Serialization.DataMemberAttribute()] 83 public string Name { 84 get { 85 return this.NameField; 86 } 87 set { 88 this.NameField = value; 89 } 90 } 91 92 [System.Runtime.Serialization.DataMemberAttribute()] 93 public System.Version Version { 94 get { 95 return this.VersionField; 96 } 97 set { 98 this.VersionField = value; 99 } 100 } 101 } 102 103 [System.Diagnostics.DebuggerStepThroughAttribute()] 104 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")] 105 [System.Runtime.Serialization.DataContractAttribute(Name = "ProductDescription", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment")] 106 public partial class ProductDescription : object, System.Runtime.Serialization.IExtensibleDataObject { 107 108 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; 109 110 private string NameField; 111 112 private HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] PluginsField; 113 114 private System.Version VersionField; 115 116 public System.Runtime.Serialization.ExtensionDataObject ExtensionData { 117 get { 118 return this.extensionDataField; 119 } 120 set { 121 this.extensionDataField = value; 122 } 123 } 124 125 [System.Runtime.Serialization.DataMemberAttribute()] 126 public string Name { 127 get { 128 return this.NameField; 129 } 130 set { 131 this.NameField = value; 132 } 133 } 134 135 [System.Runtime.Serialization.DataMemberAttribute()] 136 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] Plugins { 137 get { 138 return this.PluginsField; 139 } 140 set { 141 this.PluginsField = value; 142 } 143 } 144 145 [System.Runtime.Serialization.DataMemberAttribute()] 146 public System.Version Version { 147 get { 148 return this.VersionField; 149 } 150 set { 151 this.VersionField = value; 152 } 153 } 154 } 155 156 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 157 [System.ServiceModel.ServiceContractAttribute(ConfigurationName = "HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate")] 158 public interface IUpdate { 159 160 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IUpdate/GetPlugin", ReplyAction = "http://tempuri.org/IUpdate/GetPluginResponse")] 161 byte[] GetPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription description); 162 163 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IUpdate/GetProducts", ReplyAction = "http://tempuri.org/IUpdate/GetProductsResponse")] 164 HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription[] GetProducts(); 165 166 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IUpdate/GetPlugins", ReplyAction = "http://tempuri.org/IUpdate/GetPluginsResponse")] 167 HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] GetPlugins(); 168 } 169 170 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 171 public interface IUpdateChannel : HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate, System.ServiceModel.IClientChannel { 172 } 173 174 [System.Diagnostics.DebuggerStepThroughAttribute()] 175 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 176 public partial class UpdateClient : System.ServiceModel.ClientBase<HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate>, HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate { 177 178 public UpdateClient() { 179 } 180 181 public UpdateClient(string endpointConfigurationName) : 182 base(endpointConfigurationName) { 183 } 184 185 public UpdateClient(string endpointConfigurationName, string remoteAddress) : 186 base(endpointConfigurationName, remoteAddress) { 187 } 188 189 public UpdateClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 190 base(endpointConfigurationName, remoteAddress) { 191 } 192 193 public UpdateClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 194 base(binding, remoteAddress) { 195 } 196 197 public byte[] GetPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription description) { 198 return base.Channel.GetPlugin(description); 199 } 200 201 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription[] GetProducts() { 202 return base.Channel.GetProducts(); 203 } 204 205 public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] GetPlugins() { 206 return base.Channel.GetPlugins(); 207 } 208 } 209 210 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 211 [System.ServiceModel.ServiceContractAttribute(ConfigurationName = "HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin")] 212 public interface IAdmin { 213 214 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAdmin/DeployProduct", ReplyAction = "http://tempuri.org/IAdmin/DeployProductResponse")] 215 void DeployProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product); 216 217 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAdmin/DeleteProduct", ReplyAction = "http://tempuri.org/IAdmin/DeleteProductResponse")] 218 void DeleteProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product); 219 220 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAdmin/DeployPlugin", ReplyAction = "http://tempuri.org/IAdmin/DeployPluginResponse")] 221 void DeployPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription plugin, byte[] zipFile); 222 } 223 224 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 225 public interface IAdminChannel : HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin, System.ServiceModel.IClientChannel { 226 } 227 228 [System.Diagnostics.DebuggerStepThroughAttribute()] 229 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] 230 public partial class AdminClient : System.ServiceModel.ClientBase<HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin>, HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin { 231 232 public AdminClient() { 233 } 234 235 public AdminClient(string endpointConfigurationName) : 236 base(endpointConfigurationName) { 237 } 238 239 public AdminClient(string endpointConfigurationName, string remoteAddress) : 240 base(endpointConfigurationName, remoteAddress) { 241 } 242 243 public AdminClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 244 base(endpointConfigurationName, remoteAddress) { 245 } 246 247 public AdminClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 248 base(binding, remoteAddress) { 249 } 250 251 public void DeployProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product) { 252 base.Channel.DeployProduct(product); 253 } 254 255 public void DeleteProduct(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.ProductDescription product) { 256 base.Channel.DeleteProduct(product); 257 } 258 259 public void DeployPlugin(HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription plugin, byte[] zipFile) { 260 base.Channel.DeployPlugin(plugin, zipFile); 261 } 262 } 322 263 } -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/PluginDescription.cs
r3179 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using HeuristicLab.PluginInfrastructure.Manager;27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 25 31 26 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/ProductDescription.cs
r3092 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using HeuristicLab.PluginInfrastructure.Manager;27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 25 31 26 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { … … 35 30 /// A product has a name, a version and a list of plugins that are part of the product. 36 31 /// </summary> 37 public partial class ProductDescription 32 public partial class ProductDescription { 38 33 /// <summary> 39 34 /// Initializes a new instance of <see cref="ProductDescription" /> -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/UpdateClientFactory.cs
r3771 r4068 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 22 using System.Reflection; 23 using System.Security.Cryptography.X509Certificates; 26 24 using System.ServiceModel; 27 using System.Security.Cryptography.X509Certificates;28 using System.Reflection;29 25 30 26 namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/EditProductsView.cs
r3772 r4068 23 23 using System.Collections.Generic; 24 24 using System.ComponentModel; 25 using System.Drawing;26 using System.Data;27 25 using System.Linq; 28 using System. Text;26 using System.ServiceModel; 29 27 using System.Windows.Forms; 30 using System.ServiceModel;31 using HeuristicLab.PluginInfrastructure;32 28 33 29 namespace HeuristicLab.PluginInfrastructure.Advanced { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/IStatusDisplay.cs
r3547 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.PluginInfrastructure.Manager;27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 using ICSharpCode.SharpZipLib.Zip;31 using System.ServiceModel;32 22 33 23 namespace HeuristicLab.PluginInfrastructure.Advanced { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManager.cs
r3508 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.IO; 24 25 using System.Linq; 25 using System. Text;26 using System.ServiceModel; 26 27 using HeuristicLab.PluginInfrastructure.Manager; 27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 28 using ICSharpCode.SharpZipLib.Zip; 31 using System.ServiceModel;32 29 33 30 namespace HeuristicLab.PluginInfrastructure.Advanced { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManagerConsole.cs
r3090 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 24 using HeuristicLab.PluginInfrastructure.Advanced.DeploymentService; 26 25 using HeuristicLab.PluginInfrastructure.Manager; 27 using System.IO;28 using System.ComponentModel;29 using HeuristicLab.PluginInfrastructure.Advanced.DeploymentService;30 26 31 27 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManagerControl.cs
r3547 r4068 19 19 */ 20 20 #endregion 21 using System;22 using System.Collections.Generic;23 using System.ComponentModel;24 using System.Drawing;25 using System.Data;26 using System.Linq;27 using System.Text;28 21 using System.Windows.Forms; 29 22 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManagerException.cs
r3508 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.PluginInfrastructure.Manager;27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 using ICSharpCode.SharpZipLib.Zip;31 using System.ServiceModel;32 23 using System.Runtime.Serialization; 33 24 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManagerForm.cs
r3752 r4068 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using System.D ata;25 using System. Drawing;24 using System.Diagnostics; 25 using System.IO; 26 26 using System.Linq; 27 27 using System.Text; 28 28 using System.Windows.Forms; 29 using System.IO;30 29 using HeuristicLab.PluginInfrastructure.Manager; 31 using System.Diagnostics;32 30 33 31 namespace HeuristicLab.PluginInfrastructure.Advanced { … … 37 35 private string pluginDir; 38 36 39 public InstallationManagerForm(PluginManager pluginManager) : base() { 37 public InstallationManagerForm(PluginManager pluginManager) 38 : base() { 40 39 InitializeComponent(); 41 40 FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location); 42 41 Text = "HeuristicLab Plugin Manager " + pluginInfrastructureVersion.FileVersion; 43 42 44 43 this.pluginManager = pluginManager; 45 44 … … 82 81 pluginEditor.PluginManager = pluginManager; 83 82 84 productEditor.StatusView = this; 83 productEditor.StatusView = this; 85 84 } 86 85 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstalledPluginsView.cs
r3752 r4068 23 23 using System.Collections.Generic; 24 24 using System.ComponentModel; 25 using System.Drawing;26 using System.Data;27 25 using System.Linq; 28 using System.Text;29 26 using System.Windows.Forms; 30 using System.ServiceModel;31 using ICSharpCode.SharpZipLib.Zip;32 using System.IO;33 27 using HeuristicLab.PluginInfrastructure.Manager; 34 28 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/LicenseConfirmationDialog.cs
r3752 r4068 20 20 #endregion 21 21 using System; 22 using System.Collections.Generic;23 using System.ComponentModel;24 using System.Data;25 using System.Drawing;26 using System.Linq;27 using System.Text;28 22 using System.Windows.Forms; 29 23 30 24 namespace HeuristicLab.PluginInfrastructure.Advanced { 31 25 internal partial class LicenseConfirmationDialog : Form { 32 public LicenseConfirmationDialog() : base() { 26 public LicenseConfirmationDialog() 27 : base() { 33 28 InitializeComponent(); 34 29 } 35 30 36 public LicenseConfirmationDialog(IPluginDescription plugin) : base() { 31 public LicenseConfirmationDialog(IPluginDescription plugin) 32 : base() { 37 33 InitializeComponent(); 38 34 richTextBox.Text = plugin.LicenseText; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/LicenseView.cs
r3752 r4068 19 19 */ 20 20 #endregion 21 using System;22 using System.Collections.Generic;23 using System.ComponentModel;24 using System.Drawing;25 using System.Data;26 using System.Linq;27 using System.Text;28 21 using System.Windows.Forms; 29 using HeuristicLab.PluginInfrastructure;30 22 31 23 namespace HeuristicLab.PluginInfrastructure.Advanced { 32 24 internal partial class LicenseView : Form { 33 25 34 public LicenseView() : base() { 26 public LicenseView() 27 : base() { 35 28 InitializeComponent(); 36 29 Name = "License"; 37 30 } 38 31 39 public LicenseView(IPluginDescription plugin) : base() { 32 public LicenseView(IPluginDescription plugin) 33 : base() { 40 34 InitializeComponent(); 41 35 Name = "License of: " + plugin; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/MultiSelectListView.cs
r3090 r4068 19 19 */ 20 20 #endregion 21 using System;22 21 using System.Collections.Generic; 23 using System.ComponentModel;24 using System.Drawing;25 using System.Data;26 22 using System.Linq; 27 using System.Text;28 23 using System.Windows.Forms; 29 24 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/PluginView.cs
r3763 r4068 20 20 #endregion 21 21 using System; 22 using System.Collections.Generic; 23 using System.ComponentModel; 24 using System.Drawing; 25 using System.Data; 22 using System.IO; 26 23 using System.Linq; 27 using System.Text;28 24 using System.Windows.Forms; 29 using HeuristicLab.PluginInfrastructure;30 using System.IO;31 25 using HeuristicLab.PluginInfrastructure.Manager; 32 26 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/UploadPluginsView.cs
r3721 r4068 24 24 using System.ComponentModel; 25 25 using System.Drawing; 26 using System. Data;26 using System.IO; 27 27 using System.Linq; 28 using System. Text;28 using System.ServiceModel; 29 29 using System.Windows.Forms; 30 using System.ServiceModel;30 using HeuristicLab.PluginInfrastructure.Manager; 31 31 using ICSharpCode.SharpZipLib.Zip; 32 using System.IO;33 using HeuristicLab.PluginInfrastructure.Manager;34 32 35 33 namespace HeuristicLab.PluginInfrastructure.Advanced { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/Util.cs
r3627 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using HeuristicLab.PluginInfrastructure.Manager;27 using System.IO;28 using System.ComponentModel;29 using System.Reflection;30 using ICSharpCode.SharpZipLib.Zip;31 using System.ServiceModel;32 25 using System.Windows.Forms; 33 26 … … 39 32 columnHeader.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent); 40 33 int contentSize = columnHeader.Width; 41 columnHeader.Width = Math.Max(headerSize, contentSize); 34 columnHeader.Width = Math.Max(headerSize, contentSize); 42 35 } 43 36 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/ApplicationManager.cs
r3831 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Security.Policy;25 using System.Reflection;26 using System.Diagnostics;27 using System.Security.Permissions;28 using System.Security;29 using System.Linq;30 using HeuristicLab.PluginInfrastructure.Manager;31 using System.IO;32 23 33 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/ApplicationAttribute.cs
r3092 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/AssemblyBuildDateAttribute.cs
r2790 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.Globalization;26 23 27 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/ContactInformationAttribute.cs
r2790 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.IO;26 23 27 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/PluginAttribute.cs
r2790 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/PluginDependencyAttribute.cs
r3092 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/PluginFileAttribute.cs
r3092 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.IO;26 23 27 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/BaseClasses/ApplicationBase.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using System.Diagnostics;26 22 27 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/BaseClasses/PluginBase.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using System.Reflection;26 using System.Diagnostics;27 using System.Linq;28 22 29 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/ControlManager.cs
r3831 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Security.Policy;25 using System.Reflection;26 using System.Diagnostics;27 using System.Security.Permissions;28 using System.Security;29 23 30 24 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/DefaultApplicationManager.cs
r3831 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Security.Policy; 24 using System.IO; 25 using System.Linq; 25 26 using System.Reflection; 26 using System.Diagnostics;27 using System.Security.Permissions;28 using System.Security;29 using System.Linq;30 27 using HeuristicLab.PluginInfrastructure.Manager; 31 using System.IO;32 28 33 29 namespace HeuristicLab.PluginInfrastructure { … … 252 248 if (type.IsAssignableFrom(other.GetGenericTypeDefinition().MakeGenericType(type.GetGenericArguments()))) 253 249 return true; 254 } catch (Exception) { } 250 } 251 catch (Exception) { } 255 252 } 256 253 return false; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IApplication.cs
r3092 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 26 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IApplicationDescription.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 22 25 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IApplicationManager.cs
r3092 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Text;25 using System.Windows.Forms;26 using System.Reflection;27 24 28 25 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IControlManager.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using System.Windows.Forms;26 22 27 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IPlugin.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 26 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IPluginFile.cs
r2790 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 22 25 23 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/InvalidPluginException.cs
r3831 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 using System.Runtime.Serialization; 26 24 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/LightweightApplicationManager.cs
r3831 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System. Security.Policy;24 using System.Linq; 25 25 using System.Reflection; 26 using System.Diagnostics;27 using System.Security.Permissions;28 using System.Security;29 using System.Linq;30 using HeuristicLab.PluginInfrastructure.Manager;31 using System.IO;32 26 33 27 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Main.cs
r3831 r4068 22 22 using System; 23 23 using System.Windows.Forms; 24 using System.Text;25 using System.Linq;26 24 using HeuristicLab.PluginInfrastructure.Starter; 27 using System.IO;28 using HeuristicLab.PluginInfrastructure.Advanced;29 25 30 26 namespace HeuristicLab.PluginInfrastructure { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/ApplicationDescription.cs
r2922 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure.Manager { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginDescription.cs
r2922 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Text;25 24 using System.Linq; 26 using System.Reflection;27 25 28 26 namespace HeuristicLab.PluginInfrastructure.Manager { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginFile.cs
r3092 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.Linq;26 using System.Reflection;27 23 28 24 namespace HeuristicLab.PluginInfrastructure.Manager { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginInfrastructureCancelEventArgs.cs
r3006 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Text;25 24 using System.ComponentModel; 26 25 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginInfrastructureEventArgs.cs
r3179 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure.Manager { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs
r3247 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System. Security.Policy;24 using System.Linq; 25 25 using System.Reflection; 26 using System.Diagnostics;27 using System.Security.Permissions;28 using System.Security;29 using System.Linq;30 26 31 27 namespace HeuristicLab.PluginInfrastructure.Manager { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs
r3573 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.IO; 25 using System.Linq; 26 using System.Reflection; 27 using System.Security; 24 28 using System.Text; 25 using System.Reflection;26 using System.IO;27 using System.Diagnostics;28 using System.Linq;29 using System.Security;30 29 31 30 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/PluginDescriptionIterator.cs
r3831 r4068 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Text;25 23 using System.Linq; 26 24 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/PluginState.cs
r3831 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 26 24 namespace HeuristicLab.PluginInfrastructure { … … 33 31 /// Undefined state is the default plugin state. 34 32 /// </summary> 35 Undefined, 33 Undefined, 36 34 /// <summary> 37 35 /// Enabled state means that the plugin has correct meta-data and can be loaded. 38 36 /// </summary> 39 Enabled, 37 Enabled, 40 38 /// <summary> 41 39 /// Disabled state means that the plugin has incorrect meta-data or missing dependencies and cannot be loaded. 42 40 /// </summary> 43 Disabled, 41 Disabled, 44 42 /// <summary> 45 43 /// Loaded means the plugin is currently loaded by an application. -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Resources.Designer.cs
r4065 r4068 10 10 11 11 namespace HeuristicLab.PluginInfrastructure { 12 using System; 13 14 12 13 14 /// <summary> 15 /// A strongly-typed resource class, for looking up localized strings, etc. 16 /// </summary> 17 // This class was auto-generated by the StronglyTypedResourceBuilder 18 // class via a tool like ResGen or Visual Studio. 19 // To add or remove a member, edit your .ResX file then rerun ResGen 20 // with the /str option, or rebuild your VS project. 21 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 22 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 24 internal class Resources { 25 26 private static global::System.Resources.ResourceManager resourceMan; 27 28 private static global::System.Globalization.CultureInfo resourceCulture; 29 30 [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 31 internal Resources() { 32 } 33 15 34 /// <summary> 16 /// A strongly-typed resource class, for looking up localized strings, etc.35 /// Returns the cached ResourceManager instance used by this class. 17 36 /// </summary> 18 // This class was auto-generated by the StronglyTypedResourceBuilder 19 // class via a tool like ResGen or Visual Studio. 20 // To add or remove a member, edit your .ResX file then rerun ResGen 21 // with the /str option, or rebuild your VS project. 22 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 internal class Resources { 26 27 private static global::System.Resources.ResourceManager resourceMan; 28 29 private static global::System.Globalization.CultureInfo resourceCulture; 30 31 [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 internal Resources() { 37 [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 38 internal static global::System.Resources.ResourceManager ResourceManager { 39 get { 40 if (object.ReferenceEquals(resourceMan, null)) { 41 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HeuristicLab.PluginInfrastructure.Resources", typeof(Resources).Assembly); 42 resourceMan = temp; 33 43 } 34 35 /// <summary> 36 /// Returns the cached ResourceManager instance used by this class. 37 /// </summary> 38 [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 internal static global::System.Resources.ResourceManager ResourceManager { 40 get { 41 if (object.ReferenceEquals(resourceMan, null)) { 42 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HeuristicLab.PluginInfrastructure.Resources", typeof(Resources).Assembly); 43 resourceMan = temp; 44 } 45 return resourceMan; 46 } 47 } 48 49 /// <summary> 50 /// Overrides the current thread's CurrentUICulture property for all 51 /// resource lookups using this strongly typed resource class. 52 /// </summary> 53 [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 internal static global::System.Globalization.CultureInfo Culture { 55 get { 56 return resourceCulture; 57 } 58 set { 59 resourceCulture = value; 60 } 61 } 62 63 internal static System.Drawing.Bitmap Add { 64 get { 65 object obj = ResourceManager.GetObject("Add", resourceCulture); 66 return ((System.Drawing.Bitmap)(obj)); 67 } 68 } 69 70 internal static System.Drawing.Bitmap ArrowUp { 71 get { 72 object obj = ResourceManager.GetObject("ArrowUp", resourceCulture); 73 return ((System.Drawing.Bitmap)(obj)); 74 } 75 } 76 77 internal static System.Drawing.Bitmap Assembly { 78 get { 79 object obj = ResourceManager.GetObject("Assembly", resourceCulture); 80 return ((System.Drawing.Bitmap)(obj)); 81 } 82 } 83 84 internal static System.Drawing.Bitmap Document { 85 get { 86 object obj = ResourceManager.GetObject("Document", resourceCulture); 87 return ((System.Drawing.Bitmap)(obj)); 88 } 89 } 90 91 internal static System.Drawing.Bitmap Error { 92 get { 93 object obj = ResourceManager.GetObject("Error", resourceCulture); 94 return ((System.Drawing.Bitmap)(obj)); 95 } 96 } 97 98 internal static System.Drawing.Icon ErrorIcon { 99 get { 100 object obj = ResourceManager.GetObject("ErrorIcon", resourceCulture); 101 return ((System.Drawing.Icon)(obj)); 102 } 103 } 104 105 internal static System.Drawing.Bitmap File { 106 get { 107 object obj = ResourceManager.GetObject("File", resourceCulture); 108 return ((System.Drawing.Bitmap)(obj)); 109 } 110 } 111 112 internal static System.Drawing.Icon HeuristicLab { 113 get { 114 object obj = ResourceManager.GetObject("HeuristicLab", resourceCulture); 115 return ((System.Drawing.Icon)(obj)); 116 } 117 } 118 119 internal static System.Drawing.Bitmap HeuristicLabBanner { 120 get { 121 object obj = ResourceManager.GetObject("HeuristicLabBanner", resourceCulture); 122 return ((System.Drawing.Bitmap)(obj)); 123 } 124 } 125 126 internal static System.Drawing.Bitmap HeuristicLabLogo { 127 get { 128 object obj = ResourceManager.GetObject("HeuristicLabLogo", resourceCulture); 129 return ((System.Drawing.Bitmap)(obj)); 130 } 131 } 132 133 internal static System.Drawing.Bitmap Install { 134 get { 135 object obj = ResourceManager.GetObject("Install", resourceCulture); 136 return ((System.Drawing.Bitmap)(obj)); 137 } 138 } 139 140 internal static System.Drawing.Bitmap Internet { 141 get { 142 object obj = ResourceManager.GetObject("Internet", resourceCulture); 143 return ((System.Drawing.Bitmap)(obj)); 144 } 145 } 146 147 /// <summary> 148 /// Looks up a localized string similar to HeuristicLab is free software: you can redistribute it and/or modify 149 ///it under the terms of the GNU General Public License as published by 150 ///the Free Software Foundation, either version 3 of the License, or 151 ///(at your option) any later version. 152 /// 153 ///HeuristicLab is distributed in the hope that it will be useful, 154 ///but WITHOUT ANY WARRANTY; without even the implied warranty of 155 ///MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 156 ///GNU General Public License for more details. 157 /// 158 ///You should have received a copy of t [rest of string was truncated]";. 159 /// </summary> 160 internal static string LicenseText { 161 get { 162 return ResourceManager.GetString("LicenseText", resourceCulture); 163 } 164 } 165 166 internal static System.Drawing.Bitmap NetworkConnections { 167 get { 168 object obj = ResourceManager.GetObject("NetworkConnections", resourceCulture); 169 return ((System.Drawing.Bitmap)(obj)); 170 } 171 } 172 173 internal static System.Drawing.Bitmap Plugin { 174 get { 175 object obj = ResourceManager.GetObject("Plugin", resourceCulture); 176 return ((System.Drawing.Bitmap)(obj)); 177 } 178 } 179 180 internal static System.Drawing.Bitmap PublishToWeb { 181 get { 182 object obj = ResourceManager.GetObject("PublishToWeb", resourceCulture); 183 return ((System.Drawing.Bitmap)(obj)); 184 } 185 } 186 187 internal static System.Drawing.Bitmap Remove { 188 get { 189 object obj = ResourceManager.GetObject("Remove", resourceCulture); 190 return ((System.Drawing.Bitmap)(obj)); 191 } 192 } 193 194 internal static System.Drawing.Bitmap Repeat { 195 get { 196 object obj = ResourceManager.GetObject("Repeat", resourceCulture); 197 return ((System.Drawing.Bitmap)(obj)); 198 } 199 } 200 201 internal static System.Drawing.Icon Setup_Install { 202 get { 203 object obj = ResourceManager.GetObject("Setup_Install", resourceCulture); 204 return ((System.Drawing.Icon)(obj)); 205 } 206 } 207 208 internal static System.Drawing.Bitmap ShowDetails { 209 get { 210 object obj = ResourceManager.GetObject("ShowDetails", resourceCulture); 211 return ((System.Drawing.Bitmap)(obj)); 212 } 213 } 214 215 internal static System.Drawing.Bitmap ShowIcons { 216 get { 217 object obj = ResourceManager.GetObject("ShowIcons", resourceCulture); 218 return ((System.Drawing.Bitmap)(obj)); 219 } 220 } 221 } 44 return resourceMan; 45 } 46 } 47 48 /// <summary> 49 /// Overrides the current thread's CurrentUICulture property for all 50 /// resource lookups using this strongly typed resource class. 51 /// </summary> 52 [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 53 internal static global::System.Globalization.CultureInfo Culture { 54 get { 55 return resourceCulture; 56 } 57 set { 58 resourceCulture = value; 59 } 60 } 61 62 internal static System.Drawing.Bitmap Add { 63 get { 64 object obj = ResourceManager.GetObject("Add", resourceCulture); 65 return ((System.Drawing.Bitmap)(obj)); 66 } 67 } 68 69 internal static System.Drawing.Bitmap ArrowUp { 70 get { 71 object obj = ResourceManager.GetObject("ArrowUp", resourceCulture); 72 return ((System.Drawing.Bitmap)(obj)); 73 } 74 } 75 76 internal static System.Drawing.Bitmap Assembly { 77 get { 78 object obj = ResourceManager.GetObject("Assembly", resourceCulture); 79 return ((System.Drawing.Bitmap)(obj)); 80 } 81 } 82 83 internal static System.Drawing.Bitmap Document { 84 get { 85 object obj = ResourceManager.GetObject("Document", resourceCulture); 86 return ((System.Drawing.Bitmap)(obj)); 87 } 88 } 89 90 internal static System.Drawing.Bitmap Error { 91 get { 92 object obj = ResourceManager.GetObject("Error", resourceCulture); 93 return ((System.Drawing.Bitmap)(obj)); 94 } 95 } 96 97 internal static System.Drawing.Icon ErrorIcon { 98 get { 99 object obj = ResourceManager.GetObject("ErrorIcon", resourceCulture); 100 return ((System.Drawing.Icon)(obj)); 101 } 102 } 103 104 internal static System.Drawing.Bitmap File { 105 get { 106 object obj = ResourceManager.GetObject("File", resourceCulture); 107 return ((System.Drawing.Bitmap)(obj)); 108 } 109 } 110 111 internal static System.Drawing.Icon HeuristicLab { 112 get { 113 object obj = ResourceManager.GetObject("HeuristicLab", resourceCulture); 114 return ((System.Drawing.Icon)(obj)); 115 } 116 } 117 118 internal static System.Drawing.Bitmap HeuristicLabBanner { 119 get { 120 object obj = ResourceManager.GetObject("HeuristicLabBanner", resourceCulture); 121 return ((System.Drawing.Bitmap)(obj)); 122 } 123 } 124 125 internal static System.Drawing.Bitmap HeuristicLabLogo { 126 get { 127 object obj = ResourceManager.GetObject("HeuristicLabLogo", resourceCulture); 128 return ((System.Drawing.Bitmap)(obj)); 129 } 130 } 131 132 internal static System.Drawing.Bitmap Install { 133 get { 134 object obj = ResourceManager.GetObject("Install", resourceCulture); 135 return ((System.Drawing.Bitmap)(obj)); 136 } 137 } 138 139 internal static System.Drawing.Bitmap Internet { 140 get { 141 object obj = ResourceManager.GetObject("Internet", resourceCulture); 142 return ((System.Drawing.Bitmap)(obj)); 143 } 144 } 145 146 /// <summary> 147 /// Looks up a localized string similar to HeuristicLab is free software: you can redistribute it and/or modify 148 ///it under the terms of the GNU General Public License as published by 149 ///the Free Software Foundation, either version 3 of the License, or 150 ///(at your option) any later version. 151 /// 152 ///HeuristicLab is distributed in the hope that it will be useful, 153 ///but WITHOUT ANY WARRANTY; without even the implied warranty of 154 ///MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 155 ///GNU General Public License for more details. 156 /// 157 ///You should have received a copy of t [rest of string was truncated]";. 158 /// </summary> 159 internal static string LicenseText { 160 get { 161 return ResourceManager.GetString("LicenseText", resourceCulture); 162 } 163 } 164 165 internal static System.Drawing.Bitmap NetworkConnections { 166 get { 167 object obj = ResourceManager.GetObject("NetworkConnections", resourceCulture); 168 return ((System.Drawing.Bitmap)(obj)); 169 } 170 } 171 172 internal static System.Drawing.Bitmap Plugin { 173 get { 174 object obj = ResourceManager.GetObject("Plugin", resourceCulture); 175 return ((System.Drawing.Bitmap)(obj)); 176 } 177 } 178 179 internal static System.Drawing.Bitmap PublishToWeb { 180 get { 181 object obj = ResourceManager.GetObject("PublishToWeb", resourceCulture); 182 return ((System.Drawing.Bitmap)(obj)); 183 } 184 } 185 186 internal static System.Drawing.Bitmap Remove { 187 get { 188 object obj = ResourceManager.GetObject("Remove", resourceCulture); 189 return ((System.Drawing.Bitmap)(obj)); 190 } 191 } 192 193 internal static System.Drawing.Bitmap Repeat { 194 get { 195 object obj = ResourceManager.GetObject("Repeat", resourceCulture); 196 return ((System.Drawing.Bitmap)(obj)); 197 } 198 } 199 200 internal static System.Drawing.Icon Setup_Install { 201 get { 202 object obj = ResourceManager.GetObject("Setup_Install", resourceCulture); 203 return ((System.Drawing.Icon)(obj)); 204 } 205 } 206 207 internal static System.Drawing.Bitmap ShowDetails { 208 get { 209 object obj = ResourceManager.GetObject("ShowDetails", resourceCulture); 210 return ((System.Drawing.Bitmap)(obj)); 211 } 212 } 213 214 internal static System.Drawing.Bitmap ShowIcons { 215 get { 216 object obj = ResourceManager.GetObject("ShowIcons", resourceCulture); 217 return ((System.Drawing.Bitmap)(obj)); 218 } 219 } 220 } 222 221 } -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Sandboxing/SandboxManager.cs
r3578 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Diagnostics; 24 25 using System.Linq; 25 using System.Text; 26 using HeuristicLab.PluginInfrastructure.Manager; 27 using System.IO; 28 using System.ComponentModel; 26 using System.Reflection; 29 27 using System.Security; 30 28 using System.Security.Permissions; 31 29 using System.Security.Policy; 32 using System.Reflection; 33 using System.Diagnostics; 30 using HeuristicLab.PluginInfrastructure.Manager; 34 31 35 32 namespace HeuristicLab.PluginInfrastructure.Sandboxing { … … 94 91 applicationManager.PrepareApplicationDomain(apps, plugins); 95 92 //if (files != null && files.Count() > 0) 96 93 //applicationManager.LoadAssemblies(files); 97 94 return applicationDomain; 98 95 } -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/AboutDialog.cs
r3761 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.ComponentModel; 25 using System.Data; 26 using System.Drawing; 24 using System.Diagnostics; 27 25 using System.Linq; 28 using System. Text;26 using System.Reflection; 29 27 using System.Windows.Forms; 30 using System.Reflection;31 using System.Diagnostics;32 28 using HeuristicLab.PluginInfrastructure.Advanced; 33 29 … … 57 53 /// </summary> 58 54 /// <param name="plugins">Enumerable of plugins that should be listed.</param> 59 public AboutDialog(IEnumerable<IPluginDescription> plugins) : this() { 55 public AboutDialog(IEnumerable<IPluginDescription> plugins) 56 : this() { 60 57 UpdatePluginList(plugins); 61 58 } … … 101 98 102 99 private void pluginListView_ItemActivate(object sender, EventArgs e) { 103 if (pluginListView.SelectedItems.Count > 0) {100 if (pluginListView.SelectedItems.Count > 0) { 104 101 PluginView view = new PluginView((IPluginDescription)pluginListView.SelectedItems[0].Tag); 105 102 view.Show(this); -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.Designer.cs
r3813 r4068 20 20 #endregion 21 21 22 using HeuristicLab.PluginInfrastructure;23 22 namespace HeuristicLab.PluginInfrastructure.Starter { 24 23 partial class SplashScreen { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.cs
r3777 r4068 21 21 22 22 using System; 23 using System. Collections.Generic;24 using System. Data;25 using System. Drawing;23 using System.Diagnostics; 24 using System.Linq; 25 using System.Reflection; 26 26 using System.Windows.Forms; 27 using System.Reflection;28 using System.Linq;29 using HeuristicLab.PluginInfrastructure;30 27 using HeuristicLab.PluginInfrastructure.Manager; 31 using System.Diagnostics;32 28 33 29 namespace HeuristicLab.PluginInfrastructure.Starter { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs
r3758 r4068 21 21 22 22 using System; 23 using System.Collections.Generic; 24 using System.Diagnostics; 25 using System.IO; 23 26 using System.Linq; 24 using System.Collections.Generic; 25 using System.ComponentModel; 26 using System.Data; 27 using System.Drawing; 28 using System.Text; 27 using System.Threading; 29 28 using System.Windows.Forms; 30 using System.Diagnostics; 31 using HeuristicLab.PluginInfrastructure; 32 using System.Threading; 29 using HeuristicLab.PluginInfrastructure.Advanced; 33 30 using HeuristicLab.PluginInfrastructure.Manager; 34 using System.IO;35 using HeuristicLab.PluginInfrastructure.Advanced;36 31 37 32 namespace HeuristicLab.PluginInfrastructure.Starter {
Note: See TracChangeset
for help on using the changeset viewer.