I am creating a Visual Studio Extension, which should perform following activities:
I have added a Commands Menu where there are 2 Commands. But I want to show only 'Command for Proj ABC' when right clicked on ABC project and similarly 'Command for Proj XYZ' should be shown when right clicked on XYZ project.
Is this possible? How Can I achieve this?
You need to add DynamicVisibility CommandFlag in .vsct for your commands and set Visible status in your OnBeforeQueryStatus handler depending on which project is currently selected.
See Change the text of a menu command for an example.