- Timestamp:
- 10/17/12 21:46:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs
r7259 r8818 110 110 /// </summary> 111 111 /// <param name="appInfo">application to run</param> 112 public void Run(ApplicationDescription appInfo ) {112 public void Run(ApplicationDescription appInfo, ICommandLineArgument[] args) { 113 113 if (!initialized) throw new InvalidOperationException("PluginManager is not initialized. DiscoverAndCheckPlugins() must be called before Run()"); 114 114 // create a separate AppDomain for the application … … 129 129 applicationManager.PrepareApplicationDomain(applications, plugins); 130 130 OnApplicationStarted(new PluginInfrastructureEventArgs(appInfo)); 131 applicationManager.Run(appInfo );131 applicationManager.Run(appInfo, args); 132 132 } 133 133 finally {
Note: See TracChangeset
for help on using the changeset viewer.