You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user selects a solution or a project after having selected the solution, an exception occurs in SolutionItem.FromHierarchy as called from SelectionEvents.OnSelectionChanged.
Would suggest changing these two lines in SelectionEvents.OnSelectionChanged: SolutionItem? from = SolutionItem.FromHierarchy(pHierOld, itemidOld); SolutionItem? to = SolutionItem.FromHierarchy(pHierNew, itemidNew);
to: SolutionItem? from = pHierOld == null ? null : SolutionItem.FromHierarchy(pHierOld, itemidOld); SolutionItem? to = pHierNew == null ? null : SolutionItem.FromHierarchy(pHierNew, itemidNew);
As an aside, thanks for a great toolkit!
The text was updated successfully, but these errors were encountered:
When the user selects a solution or a project after having selected the solution, an exception occurs in SolutionItem.FromHierarchy as called from SelectionEvents.OnSelectionChanged.
Would suggest changing these two lines in SelectionEvents.OnSelectionChanged:
SolutionItem? from = SolutionItem.FromHierarchy(pHierOld, itemidOld);
SolutionItem? to = SolutionItem.FromHierarchy(pHierNew, itemidNew);
to:
SolutionItem? from = pHierOld == null ? null : SolutionItem.FromHierarchy(pHierOld, itemidOld);
SolutionItem? to = pHierNew == null ? null : SolutionItem.FromHierarchy(pHierNew, itemidNew);
As an aside, thanks for a great toolkit!
The text was updated successfully, but these errors were encountered: