Skip to content

Releases: zspitz/ExpressionTreeVisualizer

1.2.29

29 May 21:57
Compare
Choose a tag to compare
Facotry methods formatter -- Use params arguments instead of wrapping…

1.2.28

21 May 10:25
Compare
Choose a tag to compare

Alpha version of the factory method formatter -- displays the factory methods that could be used to create this kind of expression:

Func<int, int> del = ...
Expression<Func<int,int>> expr = () => del(5);
Console.WriteLine(expr.ToString("Factory methods");
// prints:
/*
Lambda(
    Invoke( del, new [] {
        Constant(5)
    })
)
*/

1.2.27

14 May 11:05
Compare
Choose a tag to compare

Download the visualizer DLL appropriate to your version of Visual Studio + MultiSelectTreeView.dll, and install as described here.

Note that in order to use with .NET Core projects in VS 2019, you may have to copy the DLLs into a netstandard2.0 subfolder of the Visualizers folder.

1.2.19

03 May 00:55
Compare
Choose a tag to compare

String library

  • Renders .NET 4 expressions, including DynamicExpression

Visualizer

  • VS 2019 support (not through CI)

Download the visualizer DLL appropriate to your version of Visual Studio + MultiSelectTreeView.dll, and install as described here.

Note that in order to use with .NET Core projects in VS 2019, you may have to copy the DLLs into a netstandard2.0 subfolder of the Visualizers folder.

1.2

03 May 00:32
Compare
Choose a tag to compare
1.2

String library

  • Renders .NET 4 expressions, including DynamicExpression

Visualizer

  • VS 2019 support (not through CI)

Download the visualizer DLL appropriate to your version of Visual Studio + MultiSelectTreeView.dll, and install as described here.

Note that in order to use with .NET Core projects in VS 2019, you may have to copy the DLLs into a netstandard2.0 subfolder of the Visualizers folder.

1.1.10

24 Mar 00:35
Compare
Choose a tag to compare

String-rendering library

  • First steps at complete .NET 4 expression support -- BlockExpression, non-ternary ConditionalExpression, ExpressionType.Assign

1.1.7

15 Mar 00:17
Compare
Choose a tag to compare

Installation: copy .dll files to visualizer folder as described here.

String-rendering library

Visualizer

  • Bind title of window to name of formatter

1.1.6

14 Mar 11:21
Compare
Choose a tag to compare

Initial release.

Copy the .dll files into the visualizer folder as described here.