Changeset 3179 for trunk/sources/HeuristicLab.PluginInfrastructure/Advanced
- Timestamp:
- 03/22/10 16:53:27 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Advanced
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/DeploymentService.cs
r3092 r3179 1 #pragma warning disable 1591 2 //------------------------------------------------------------------------------ 1 //------------------------------------------------------------------------------ 3 2 // <auto-generated> 4 3 // This code was generated by a tool. … … 314 313 } 315 314 } 316 #pragma warning restore 1591 -
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/PluginDescription.cs
r3092 r3179 104 104 return Name + " " + Version; 105 105 } 106 107 public override bool Equals(object obj) { 108 PluginDescription other = obj as PluginDescription; 109 if (other == null) return false; 110 else return other.Name == this.Name && other.Version == this.Version; 111 } 112 113 public override int GetHashCode() { 114 return Name.GetHashCode() + Version.GetHashCode(); 115 } 106 116 } 107 117 } -
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/RegenerateServiceClasses.cmd
r3006 r3179 1 1 # 2 svcutil http://servdev.heuristiclab.com/Deployment /Update.svc/mex http://servdev.heuristiclab.com/Deployment/Admin.svc/mex /language:C# /targetClientVersion:Version35 /out:DeploymentService /namespace:*,HeuristicLab.PluginInfrastructure.Advanced.DeploymentService /mergeConfig /config:../../app.config2 svcutil http://servdev.heuristiclab.com/Deployment-3.3/Update.svc/mex http://servdev.heuristiclab.com/Deployment-3.3/Admin.svc/mex /language:C# /targetClientVersion:Version35 /out:DeploymentService /namespace:*,HeuristicLab.PluginInfrastructure.Advanced.DeploymentService /mergeConfig /config:../../app.config -
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerForm.cs
r3090 r3179 336 336 Cursor = Cursors.AppStarting; 337 337 toolStripProgressBar.Visible = true; 338 DisableControls();338 refreshButton.Enabled = false; 339 339 refreshServerPluginsBackgroundWorker.RunWorkerAsync(); 340 340 } … … 378 378 (new ConnectionSetupView()).ShowInForm(); 379 379 } 380 381 protected override void OnClosing(CancelEventArgs e) { 382 installationManager.PluginInstalled -= new EventHandler<PluginInfrastructureEventArgs>(installationManager_PluginInstalled); 383 installationManager.PluginRemoved -= new EventHandler<PluginInfrastructureEventArgs>(installationManager_PluginRemoved); 384 installationManager.PluginUpdated -= new EventHandler<PluginInfrastructureEventArgs>(installationManager_PluginUpdated); 385 installationManager.PreInstallPlugin -= new EventHandler<PluginInfrastructureCancelEventArgs>(installationManager_PreInstallPlugin); 386 installationManager.PreRemovePlugin -= new EventHandler<PluginInfrastructureCancelEventArgs>(installationManager_PreRemovePlugin); 387 installationManager.PreUpdatePlugin -= new EventHandler<PluginInfrastructureCancelEventArgs>(installationManager_PreUpdatePlugin); 388 base.OnClosing(e); 389 } 380 390 } 381 391 }
Note: See TracChangeset
for help on using the changeset viewer.