Exemple #1
0
 public InjectDrivers(IWindowsImageService imageService,
                      IFileSystemOperations fileSystemOperations,
                      IOperationContext operationContext) : base(fileSystemOperations, operationContext)
 {
     this.imageService         = imageService;
     this.fileSystemOperations = fileSystemOperations;
 }
Exemple #2
0
 public ApplyWindowsImage(IFileSystemOperations fileSystemOperations, IOperationContext operationContext,
                          IWindowsImageService windowsImageService, IOperationProgress progress) : base(fileSystemOperations,
                                                                                                        operationContext)
 {
     this.windowsImageService = windowsImageService;
     this.progress            = progress;
 }
 public WindowsDeployer(IWindowsOptionsProvider optionsProvider, IPhone phone, IWindowsImageService imageService, IBootCreator bootCreator, IEnumerable <ISpaceAllocator> spaceAllocators, IObserver <double> progressObserver)
 {
     this.optionsProvider  = optionsProvider;
     this.phone            = phone;
     this.imageService     = imageService;
     this.bootCreator      = bootCreator;
     this.spaceAllocators  = spaceAllocators;
     this.progressObserver = progressObserver;
 }
 public InjectDrivers(string origin, IDeploymentContext context, IWindowsImageService imageService,
                      IDeploymentContext deploymentContext, IFileSystemOperations fileSystemOperations,
                      IOperationContext operationContext) : base(deploymentContext, fileSystemOperations, operationContext)
 {
     this.origin               = origin;
     this.context              = context;
     this.imageService         = imageService;
     this.fileSystemOperations = fileSystemOperations;
 }
 public MakeWindowsBootable(IFileSystem fileSystem, IFileSystemOperations fileSystemOperations,
                            IBootCreator bootCreator,
                            IOperationContext operationContext, IWindowsImageService windowsImageService, IOperationProgress progress) : base(fileSystemOperations, operationContext)
 {
     this.fileSystem           = fileSystem;
     this.fileSystemOperations = fileSystemOperations;
     this.bootCreator          = bootCreator;
     this.windowsImageService  = windowsImageService;
     this.progress             = progress;
 }
 public CreateWindowsPartitionLayout(IFileSystem fileSystem, IFileSystemOperations fileSystemOperations,
                                     IOperationContext operationContext, IWindowsImageService windowsImageService, IOperationProgress progress) : base(fileSystemOperations, operationContext)
 {
     this.fileSystem = fileSystem;
 }
Exemple #7
0
 public InjectDrivers(string origin, IDevice device, IWindowsImageService imageService)
 {
     this.origin       = origin;
     this.device       = device;
     this.imageService = imageService;
 }
 public LumiaWindowsDeployer(IWindowsImageService windowsImageService, DeploymentPaths deploymentPaths)
 {
     this.windowsImageService = windowsImageService;
     this.deploymentPaths     = deploymentPaths;
 }
Exemple #9
0
 public RaspberryPiWindowsDeployer(IWindowsImageService windowsImageService, DeploymentPaths deploymentPaths)
 {
     this.windowsImageService = windowsImageService;
     this.deploymentPaths     = deploymentPaths;
 }
 public WindowsDeployer(IWindowsImageService windowsImageService, DriverPaths driverPaths)
 {
     this.windowsImageService = windowsImageService;
     this.driverPaths         = driverPaths;
 }
 public InjectDrivers(string origin, IDeviceProvider deviceProvider, IWindowsImageService imageService)
 {
     this.origin         = origin;
     this.deviceProvider = deviceProvider;
     this.imageService   = imageService;
 }
 public WindowsDeployer(IWindowsImageService imageService)
 {
     this.imageService = imageService;
 }
Exemple #13
0
 public WindowsDeployer(IWindowsImageService imageService, IBootCreator bootCreator)
 {
     this.imageService = imageService;
     this.bootCreator  = bootCreator;
 }