public ErrorListProvider(
     Microsoft.VisualStudio.Shell.ErrorListProvider errorList,
     IFileSystem fileSystem,
     IVSThreadingService threadingService)
 {
     _fileSystem       = fileSystem;
     _errorList        = errorList;
     _threadingService = threadingService;
 }
Ejemplo n.º 2
0
 public ProjectAnalyzer(
     IVsApiPortAnalyzer analyzer,
     Microsoft.VisualStudio.Shell.ErrorListProvider errorList,
     ISourceLineMapper sourceLineMapper,
     IFileWriter reportWriter,
     IFileSystem fileSystem,
     ProjectBuilder builder)
 {
     _analyzer         = analyzer;
     _sourceLineMapper = sourceLineMapper;
     _reportWriter     = reportWriter;
     _fileSystem       = fileSystem;
     _builder          = builder;
     _errorList        = errorList;
 }
Ejemplo n.º 3
0
 public ProjectAnalyzer(
     IVsApiPortAnalyzer analyzer,
     Microsoft.VisualStudio.Shell.ErrorListProvider errorList,
     ISourceLineMapper sourceLineMapper,
     IFileWriter reportWriter,
     IFileSystem fileSystem,
     ProjectBuilder builder)
 {
     _analyzer = analyzer;
     _sourceLineMapper = sourceLineMapper;
     _reportWriter = reportWriter;
     _fileSystem = fileSystem;
     _builder = builder;
     _errorList = errorList;
 }