Skip to content

Commit

Permalink
Update ExpressionTreeToString with ToString and DebugView renderers
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitz committed Sep 30, 2020
1 parent 2016ff2 commit e6efa16
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Debuggee/Debuggee.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="ZSpitz.Util" Version="0.1.56" />
<PackageReference Include="ExpressionTreeToString" Version="3.0.41" />
<PackageReference Include="ExpressionTreeToString" Version="3.1.45" />
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers">
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>
<Private>false</Private>
Expand Down
2 changes: 1 addition & 1 deletion Package/Package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ExpressionTreeToString" Version="3.0.41" />
<PackageReference Include="ExpressionTreeToString" Version="3.1.45" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.19" />
<PackageReference Include="ZSpitz.Util" Version="0.1.56" />
<PackageReference Include="ZSpitz.Util.Wpf" Version="0.1.56" />
Expand Down
2 changes: 1 addition & 1 deletion Serialization/ExpressionNodeData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public class ExpressionNodeData {
Name = mbind.Member.Name;
break;
case CallSiteBinder callSiteBinder:
NodeType = callSiteBinder.BinderType();
NodeType = callSiteBinder.BinderType().ToString();
break;
default:
NodeType = o.GetType().FriendlyName(language);
Expand Down
4 changes: 2 additions & 2 deletions Tests.Visualizer/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ExpressionTreeToString" Version="3.0.41" />
<PackageReference Include="ExpressionTreeToString" Version="3.1.45" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ExpressionTreeTestObjects" Version="1.0.12" />
<PackageReference Include="ExpressionTreeTestObjects" Version="1.0.13" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Visualizer/Visualizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>
<Private>false</Private>
</Reference>
<PackageReference Include="ExpressionTreeToString" Version="3.0.41" />
<PackageReference Include="ExpressionTreeToString" Version="3.1.45" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.19" />
<PackageReference Include="MultiSelectTreeView" Version="1.0.9" />
Expand Down

0 comments on commit e6efa16

Please sign in to comment.