Exemple #1
0
 public CompileFileAnalysis(
     IProjectFilter projectFiler,
     GitFilePackContext pactContext
     )
 {
     this.projectFiler = projectFiler;
     this.packContext  = pactContext;
 }
 public FilePackService(
     Options options,
     PackSetting packSetting,
     GitFilePackContext packContext,
     IPathService pathServie
     )
 {
     this.options     = options;
     this.packSetting = packSetting;
     this.packContext = packContext;
     this.logger      = ContainerManager.Resolve <ILogger>();
     this.pathService = pathServie;
 }
Exemple #3
0
        public ProjectFilePreparer(
            Options options,
            IFileAnalysisFactory fileAnalysisFactory,
            GitFilePackContext pactContext,
            IProjectFilter projectFiler,
            IProjectDiffer projectDiff,
            ISolutionFinder solutionFinder,
            INugetPackageManager nugetPackageManager,
            IProjectParserServiceFactory projectParserFactory

            )
        {
            this.options              = options;
            this.fileAnalysisFactory  = fileAnalysisFactory;
            this.packContext          = pactContext;
            this.projectFiler         = projectFiler;
            this.projectDiff          = projectDiff;
            this.projectParserFactory = projectParserFactory;
            this.nugetPackageManager  = nugetPackageManager;
            this.solutionFinder       = solutionFinder;
        }
 public FileAnalysisFactory(GitFilePackContext pactContext)
 {
     this.packContext = pactContext;
 }
Exemple #5
0
 public StaticFileAnalysis(IProjectFilter projectFiler,
                           GitFilePackContext packContext)
 {
     this.packContext  = packContext;
     this.projectFiler = projectFiler;
 }
 public ScriptFileAnalysis(GitFilePackContext pactContext)
 {
     this.packContext = pactContext;
 }