KirillOsenkov / MSBuildStructuredLog

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

Get a list of all known properties and items in given context #591

Closed magol closed 11 months ago

magol commented 2 years ago

I want to have a new window that show all known properties and items for selected node in the log. In the window, I also want to make it possible to make a properties/items as favorite, so that it is always on the top. I want to be able to select a property/item and find the location in the log where it get its current value.

KirillOsenkov commented 2 years ago

Have you checked the Properties and items tab in the bottom left?

Finding where a property is initially assigned is tricky because MSBuild doesn't log this information.

For items, you can search for $additem Compile to see where items get added.