コード例 #1
0
 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;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 public MakeWindowsBootable(IDeploymentContext deploymentContext, IBootCreator bootCreator,
                            IFileSystemOperations fileSystemOperations, IOperationContext operationContext) : base(deploymentContext, fileSystemOperations, operationContext)
 {
     this.deploymentContext = deploymentContext;
     this.bootCreator       = bootCreator;
 }
コード例 #4
0
 public WindowsDeployer(IWindowsImageService imageService, IBootCreator bootCreator)
 {
     this.imageService = imageService;
     this.bootCreator  = bootCreator;
 }