Exemplo n.º 1
0
 public InstallWindowsService(IInstallableService service)
 {
     if (service == null)
     {
         throw new ArgumentNullException(nameof(service));
     }
     _installableConfig = service.Installable;
     _service           = service;
 }
 public PowershellUninstallTask(InstallableConfig config, DeployUnit unit, Dictionary <string, object> unitParameters)
 {
     _installableConfig = config;
     _unit           = unit;
     _unitParameters = unitParameters;
 }