Skip to content

Strange Behavior #392

Answered by reduckted
scottcantwell asked this question in Q&A
Nov 22, 2022 · 2 comments · 1 reply
Discussion options

You must be logged in to vote

That would be caused by these lines in the demo extension.

private void ProjectItemsEvents_AfterRemoveProjectItems(AfterRemoveProjectItemEventArgs obj)
{
string info = string.Join(",", obj.ProjectItemRemoves.Select(x => $"{x.Project.Name}:{x.RemovedItemName}"));
VS.MessageBox.ShowConfirm(info);
}
private void ProjectItemsEvents_AfterRenameProjectItems(AfterRenameProjectItemEventArgs obj)
{
string info = string.Join(",", obj.ProjectItemRenames.Select(x => $"{x.SolutionItem.Name}:{x.OldName}"));
VS.MessageBox.ShowConfirm(info);

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@scottcantwell
Comment options

Answer selected by scottcantwell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants