Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/UpdateAction.cs @ 3015

Last change on this file since 3015 was 2802, checked in by gkronber, 14 years ago

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 373 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.MainForm;
6
7namespace HeuristicLab.DeploymentService.AdminClient {
8  static class UpdateAction {
9    internal static void Execute(IMainForm mainForm) {
10      var view = (PluginListView)mainForm.ActiveView;
11      view.UpdateServerPlugins();
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.