Ejemplo n.º 1
0
 public GitPackEngine(Options options,
                      IGitCommandHelper gitCommandHelper,
                      IChangedFilePreparer projectPreparer,
                      IVisualStudioProjectCompiler projectCompiler,
                      IPathService pathServie,
                      IFilePackService filePackService,
                      IProjectFinder projectFinder,
                      IPackageCompressService compressService,
                      ILogger logger)
 {
     this.options             = options;
     this._gitCommandHelper   = gitCommandHelper;
     this.changedFilePreparer = projectPreparer;
     this.logger          = logger;
     this.pathService     = pathServie;
     this.projectCompiler = projectCompiler;
     this.projectFinder   = projectFinder;
     this.filePackService = filePackService;
     this.compressService = compressService;
 }
Ejemplo n.º 2
0
 public ProjectDiffer(IGitCommandHelper gitCommandHelper,
                      Options options)
 {
     this._gitCommandHelper = gitCommandHelper;
     this.options           = options;
 }