Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/16/10 18:36:04 (15 years ago)
Author:
gkronber
Message:

Updates service reference. #860 (Deployment server for plugin installation from web locations)

Location:
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/DeploymentService.cs

    r2811 r2814  
    2222        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
    2323       
     24        private string ContactInformationField;
     25       
    2426        private HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] DependenciesField;
    2527       
     28        private string LicenseTextField;
     29       
    2630        private string NameField;
    2731       
     
    4145       
    4246        [System.Runtime.Serialization.DataMemberAttribute()]
     47        public string ContactInformation
     48        {
     49            get
     50            {
     51                return this.ContactInformationField;
     52            }
     53            set
     54            {
     55                this.ContactInformationField = value;
     56            }
     57        }
     58       
     59        [System.Runtime.Serialization.DataMemberAttribute()]
    4360        public HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.PluginDescription[] Dependencies
    4461        {
     
    5067            {
    5168                this.DependenciesField = value;
     69            }
     70        }
     71       
     72        [System.Runtime.Serialization.DataMemberAttribute()]
     73        public string LicenseText
     74        {
     75            get
     76            {
     77                return this.LicenseTextField;
     78            }
     79            set
     80            {
     81                this.LicenseTextField = value;
    5282            }
    5383        }
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/PluginDescription.cs

    r2811 r2814  
    3333  public partial class PluginDescription {
    3434    public PluginDescription(string name, Version version) : this(name, version, new List<PluginDescription>()) { }
    35     public PluginDescription(string name, Version version, IEnumerable<PluginDescription> dependencies) {
     35    public PluginDescription(string name, Version version, IEnumerable<PluginDescription> dependencies)
     36      : this(name, version, dependencies, string.Empty, string.Empty) {
     37    }
     38
     39    public PluginDescription(string name, Version version, IEnumerable<PluginDescription> dependencies, string contactInformation, string licenseText) {
    3640      this.Name = name;
    3741      this.Version = version;
    3842      this.Dependencies = dependencies.ToArray();
     43      this.ContactInformation = contactInformation;
     44      this.LicenseText = licenseText;
    3945    }
    4046  }
Note: See TracChangeset for help on using the changeset viewer.