Quantcast
Channel: Visual Studio Integrate forum
Viewing all articles
Browse latest Browse all 4410

How to get reference of debug target drop down

$
0
0

Hi,

I want to get reference of Debug Target drop down from vs 2013 toolbar.

I tried following code, but it always returns null.

CommandID idtofind = new CommandID(VSConstants.AppPackageDebugTargets.guidAppPackageDebugTargetCmdSet, (int)VSConstants.DebugTargetHandler.cmdidDebugTypeCombo);
                var obj = mcs.FindCommand(idtofind); //mcs is OLEMenuCommandService
                obj.ToString(); //obj is always null


Viewing all articles
Browse latest Browse all 4410

Trending Articles