MSBuildStructuredLog Versions Save

A logger for MSBuild that records a structured representation of executed targets, tasks, property and item values.

v2.2.170

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.163...v2.2.170

v2.2.158

5 months ago

Better fix for the file format regression

v2.2.155

5 months ago

What's Changed

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.149...v2.2.155

v2.2.149

5 months ago

What's Changed

Fixed search for $error in some cases

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.139...v2.2.149

v2.2.139

6 months ago

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.100...v2.2.139

NuGet search through project.assets.json files

You can search for NuGet packages (by name or version), dependencies (direct or transitive) and files coming from NuGet packages:

List MyProject.csproj dependencies: $nuget project(MyProject.csproj)

Search for Package.Name in both dependencies and resolved packages: $nuget project(MyProject.csproj) Package.Name

Search for a file coming from a NuGet package: $nuget project(MyProject.csproj) File.dll

Search for a specific version or version range: $nuget project(.csproj) 13.0.3

Use project(.) or project(.csproj) to search all projects (slow).

Right-click on a project to view NuGet dependencies.

File copy search

Search for $copy filename to find all files copied during the build.

Search for $copy directory\path to find all files copied in and out of this directory.

Search for $copy full\file\path to see the copy operations involving the given file. If the file was copied from a NuGet package it will show which NuGet package and why the project depends on that package (via which chain of dependencies). If the file was copied because it was added to None or Content item with CopyToOutputDirectory Always or PreserveNewest, this will be shown as well.

v2.2.100

6 months ago

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.94...v2.2.100

Search for $copy file.txt to search for files containing the "file.txt" substring that were involved in a copy operation. Search for $copy directory\full\path to search for files copied in and out of this directory. Search for $copy file\path to search for where this file was copied to and from.

v2.2.76

6 months ago

Full Changelog: https://github.com/KirillOsenkov/MSBuildStructuredLog/compare/v2.2.1...v2.2.76

  • Indexing tree nodes for faster search. Some more time spent during binlog opening, but searches will be faster.
  • search operators to filter nodes that start/end before/after a certain time (start>"datetime", start<"datetime", end>"datetime", end<"datetime")
  • Some fixes to search result presentation.
  • Added Close, Close All But This, and Close All on text document tabs context menu
  • Persist main window position
  • View source for items under $additem EmbedInBinlog
  • Miscellaneous memory and performance optimizations, faster binlog load times (other than the indexing time)