I'm building a Visual Studio extension and I need to get notification when a project is renamed.
Tried using DTE2.Events2.SolutionEvents
and also tried IVsSolutionEvents
.
Both of them work fine for C#, VB.NET, and F# projects, but not for C++ projects.
Is there another way to handle project rename events? Or something specific for C++ projects?
Thanks.