Releases: zspitz/ExpressionTreeVisualizer
Releases · zspitz/ExpressionTreeVisualizer
1.2.29
1.2.28
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
1.2.19
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
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.