Esempio n. 1
0
 private BuildLogReader(Stream stream)
 {
     this.reader = new TreeBinaryReader(stream);
     this.formatSupportsSourceFiles = reader.Version > new Version(1, 0, 130);
     this.formatSupportsEmbeddedProjectImportsArchive = reader.Version > new Version(1, 1, 87);
     this.formatSupportsTimedNodeId = reader.Version > new Version(1, 1, 153);
     this.formatIsValid             = reader.IsValid();
 }
Esempio n. 2
0
 public void Dispose()
 {
     if (reader != null)
     {
         reader.Dispose();
         reader = null;
     }
 }
 private BinaryLogReader(string filePath)
 {
     this.filePath = filePath;
     this.reader   = new TreeBinaryReader(filePath);
     this.formatSupportsSourceFiles = reader.Version > new Version(1, 0, 130);
     this.formatSupportsEmbeddedProjectImportsArchive = reader.Version > new Version(1, 1, 87);
     this.formatIsValid = reader.IsValid();
 }
Esempio n. 4
0
 private BinaryLogReader(string filePath)
 {
     this.filePath = filePath;
     this.reader   = new TreeBinaryReader(filePath);
 }