Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/12/10 10:16:02 (14 years ago)
Author:
gkronber
Message:

Refreshed service reference in plugin infrastructure. #860 (Deployment server for plugin installation from web locations)

File:
1 edited

Legend:

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

    r2612 r2783  
    2727using System.IO;
    2828using System.ComponentModel;
    29 using HeuristicLab.PluginInfrastructure.UpdateLocationReference;
     29using UpdateService = HeuristicLab.PluginInfrastructure.PluginUpdateService;
    3030
    3131namespace HeuristicLab.PluginInfrastructure.Advanced {
     
    4444    void installManager_PreUpdatePlugin(object sender, PluginInfrastructureCancelEventArgs e) {
    4545      Console.WriteLine("Following plugins are updated:");
    46       var infos = (IEnumerable<PluginInformation>)e.Entity;
     46      var infos = (IEnumerable<UpdateService.PluginDescription>)e.Entity;
    4747      foreach (var info in infos) {
    48         Console.WriteLine(info.Name + " " + info.Version + " " + info.BuildDate);
     48        Console.WriteLine(info.Name + " " + info.Version);
    4949      }
    5050      if (GetUserConfirmation()) e.Cancel = false;
     
    5454
    5555    void installManager_PluginUpdated(object sender, PluginInfrastructureEventArgs e) {
    56       foreach (var info in (IEnumerable<PluginInformation>)e.Entity)
     56      foreach (var info in (IEnumerable<UpdateService.PluginDescription>)e.Entity)
    5757        Console.WriteLine("Updated: {0}", info.Name);
    5858    }
Note: See TracChangeset for help on using the changeset viewer.