KirillOsenkov / MSBuildStructuredLog

A logger for MSBuild that records a structured representation of executed targets, tasks, property and item values.
MIT License
1.44k stars 190 forks source link

Question - what does BuildAnalyzer do exactly? #541

Closed MarkKharitonov closed 2 years ago

MarkKharitonov commented 2 years ago

I am trying to figure out how to work programmatically with a binary log. I understand I can read all the records using the BinLogReader.ReadRecords low level API. I wonder what are the capabilities of the higher level API, for example BuildAnalyzer.AnalyzeBuild - what does it do exactly?

KirillOsenkov commented 2 years ago

I wrote a doc page about it here: https://github.com/KirillOsenkov/MSBuildStructuredLog/wiki/Reading-binlog-files-programmatically#analyzebuild

MarkKharitonov commented 2 years ago

Thanks, That answers my question.