It seems like this setting should be stored in the solution file so its shared across all users and part of source code control. Since we don't check in the sou file, each user has to set this seperately which seems strange.

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Why should it be a non-user-specific preference?

If I've got a solution with 10 files in, and one developer is primarily testing/using one of those tools, why should that affect what I start up?

I think MS made the right choice on this one. The project I want to start is far from necessarily the project that other developers want to start.

link|improve this answer
Frequently, you'll have a project which is very likely to be most people's desired startup project for debugging (eg. website), and you don't want a class library as a startup project. I don't see why MS couldn't provide a proper mechanism (not what seems like a hack, ie. putting the default one at the top in the .sln file) for setting a global default startup project, and then allowing an .suo to override it if desired. – Jez Feb 24 at 12:28
feedback

As Jon mentioned it is absolutely necessary that everyone can define his StartUp Project himself, but to have a dedicated default one would be great and as i can tell, it is possible!!!

Here is the trick: Close your Visual Studio and open the .sln file in your favorite text editor. Starting in line 4 you see all your projects encapsulated in Project - EndProject lines.

If you don't have a .suo file in your solution directory, Visual Studio picks the first one as the default startup project.

So just cut and paste your default startup one to the top position, delete your .suo file and open your solution in Visual Studio. Ta daa!

Is there a special award if you know something that Jon doesn't know ;-))

link|improve this answer
5  
+1 for tip on setting the default startup project. – dalle Nov 27 '09 at 12:25
1  
Finaly! This has been bugging me for a long time but not any more! Tkanks :) – mdonatas Jan 20 '10 at 8:44
It seems to work only if not in a solution folder: I mean this trick works for root projects, from my experience with some solutions I have. – jdehaan Jan 27 at 9:38
Great! I couldn't resist myself to login to upvote on this. I agree to other arguments that having a startup project should be a choice at individual developer side. However, the keyword is "default". A person who sets up the solution for a team knows the "pain" (of not having ability to setup "default" startup) ;-) – Arun Feb 17 at 18:16
feedback

In most cases, it actually does make sense to have a default on this.

It would be much better to accomodate a default startup project and store this in the solution file, but which can be overriden by a developer in their SUO file. If the startup setting isn't found in the SUO file, the default startup project in the solution would be used.

That would make a lot of sense in my world.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.