Customising project debugging in Visual Studio project flavor

340 views Asked by At

I am extending Visual Studios project system, using C# (MPF). I have written a custom 'project flavor', by extending 'FlavoredProjectBase' - and I have 'flavored' the C# Class Library project. I want my project type to support F5 debugging, with the project configured to 'Start Project' (I could use 'start external program', but I dont want that). How do I customise what happens when the user presses F5?

Thanks

1

There are 1 answers

0
kernelman On

You might need to look at the following interface IVsDebuggableProjectCfg2

Visit this for the complete issue.