Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/09 20:32:29 (15 years ago)
Author:
gkronber
Message:

Worked on update location service. #799

Location:
branches/PluginInfrastructure Refactoring
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring

    • Property svn:ignore
      •  

        old new  
        11HeuristicLab.suo
         2PluginMetaDataTest
  • branches/PluginInfrastructure Refactoring/HeuristicLab/Program.cs

    r2517 r2528  
    3030using HeuristicLab.PluginInfrastructure.Advanced;
    3131using System.Runtime.InteropServices;
     32using HeuristicLab.PluginInfrastructure.Starter;
     33using System.IO;
    3234
    3335namespace HeuristicLab {
     
    4749      } else {
    4850        var cmd = args[0].ToUpperInvariant();
     51        string pluginDir = Path.GetFullPath(Application.StartupPath);
    4952        switch (cmd) {
    5053          case "START": {
     
    5962            }
    6063          case "SHOW": {
    61               InstallationManagerConsole managerConsole = new InstallationManagerConsole();
     64              InstallationManagerConsole managerConsole = new InstallationManagerConsole(pluginDir);
    6265              managerConsole.Show(args.Skip(1));
    6366              break;
    6467            }
    6568          case "INSTALL": {
    66               InstallationManagerConsole managerConsole = new InstallationManagerConsole();
     69              InstallationManagerConsole managerConsole = new InstallationManagerConsole(pluginDir);
    6770              managerConsole.Install(args.Skip(1));
    6871              break;
    6972            }
    7073          case "UPDATE": {
    71               InstallationManagerConsole managerConsole = new InstallationManagerConsole();
     74              InstallationManagerConsole managerConsole = new InstallationManagerConsole(pluginDir);
    7275              managerConsole.Update(args.Skip(1));
    7376              break;
    7477            }
    7578          case "REMOVE": {
    76               InstallationManagerConsole managerConsole = new InstallationManagerConsole();
     79              InstallationManagerConsole managerConsole = new InstallationManagerConsole(pluginDir);
    7780              managerConsole.Remove(args.Skip(1));
    7881              break;
Note: See TracChangeset for help on using the changeset viewer.