public IAppInstall InstallApplication(UnrealAppConfig AppConfig) { NullAppInstall NullApp = new NullAppInstall(AppConfig.Name, this, AppConfig.CommandLine); return(NullApp); }
public IAppInstance Run(IAppInstall App) { NullAppInstall NullApp = App as NullAppInstall; if (NullApp == null) { throw new DeviceException("AppInstance is of incorrect type!"); } Log.Info("Launching {0} on {1}", App.Name, ToString()); Log.Info("\t{0}", NullApp.CommandLine); return(new NullAppInstance(this)); }