3

I am using Managed Package Framework (MPF) to create custom language service. I want to add few emulators/devices in "Start" Combobox, for example

VS - emulators

How can I do that?

Update 1:

After some research, I came to know that you need to extend an abstract class DebugLaunchProviderBase.

But now I am again stuck with how to register this class with visual studio, so it can list my targets.

1 Answers1

1

If you are using MPF_proj, then you will have to implement interface IVsProjectCfgDebugTargetSelection in your ProjectConfig.cs.

Rajesh Sonar
  • 279
  • 3
  • 11