I have two projects and the first one is by default the startup project.
Using DTE, how can I set a specific projectto be the startup project when running in Visual Studio?
Thanks,
Kosmo
Hi,
you can set the startup project through the solution properties like this:
dte.Solution.Properties.Item("StartupProject").Value = startupProject.Name;
hope helps.