- Timestamp:
- 03/22/10 16:53:27 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService
- Files:
-
- 3 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
Note: See TracChangeset
for help on using the changeset viewer.