- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs
r7259 r9363 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.