Zev Spitz
Zev Spitz
Related #114
Useful LINQPad query: ``` var groups = typeof(System.Linq.Expressions.Expression).GetMethods() .Where(x => x.IsStatic) .GroupBy( x => x.ReturnType.Name, (key, grp) => grp.GroupBy( x => x.Name, (name, innerGrp) => (key, name, string.Join(", ", innerGrp.Select(mthd...
Multiple DLLs are no longer an issue, as we are using Costura to load dependent DLLs. We are currently using MultiSelectTreeview. There are still two remaining issues: * I haven't...
I've requested fixes for these issues: * https://github.com/ygoe/MultiSelectTreeView/issues/51 * https://github.com/ygoe/MultiSelectTreeView/issues/52 and here is another alternative multiple-selection treeview: * https://github.com/dotnetprojects/TreeViewEx/issues/3
Another possible multi-selection treeview implementation: https://github.com/PropertyTools/PropertyTools
@bartjekwartje I was unable to reproduce this. What is the precise version of Visual Studio 2019 that you're using? And what is the precise .NET Framework version you have installed?...
@bartjekwartje Thanks for your patience. Do you think you could upload here up a minimal project that reproduces the problem?
@bartjekwartje Could you download the visualizer once more and try again?
Let me sum up my understanding of the current situation: In a project targeting .NET Framework 4.7.2, you're getting the same SerializationException message, whether you install the visualizer in the...
@bartjekwartje What is the current status? Does the visualizer work for you? I may add a reference to the NuGet ValueTuple package, which uses the value tuple provided by the...