We have a Asp.net webforms webapplication. The solution has the following structure:
- MySolution\
- MySolution.Main\
- MySolution.Web\
- MySolution.sln
Is there a best practice how to structure the trunk directory? Put the solution directory in the trunk or the content of the solution direcotry? Build a new structure under trunk?
Edit:
I think I take the following structure:
trunk\
doc\
lib\
src\
MySolution.Main\
MySolution.Web\
Mysolution.sln
In this case I have the sln file directly under the trunk. Is that a good idea?
I would put it in a separate directory, calling it
src\for example. Like this you can create additional directories for documentation and other stuff.Example:
Suggestion:
Take a look at http://codeplex.com, it might be a reference point on how some popular projects are structured.