Project Organization - Recommendations or Best Practices

J

Jordan

I'd appreciate references to online materials presenting general
recommendations or best practices (if there are any) for organizing .NET
projects.... ideally covering things like naming conventions, custom
namespace usage, file and folder hierarchies, multi-project solutions, etc.

And, yes, I understand there is no one "right way" to do this... just
looking for some recommendations.

Thanks!
 
G

Guest

Check out this

http://blogs.msdn.com/ericgu/archive/2004/01/19/60315.aspx

The above link has links to several resources.

I recommend most of the coding conventions specified by Juval Lowy.
This is the link -
http://www.idesign.net/idesign/download/IDesign CSharp Coding Standard.zip

The standards are for C#, however most of the the things are applicable for
structured coding in any language.

I have used generally <Company>.<Project>.<Module> for namespace and project
names. Some conventions say that arrange your folders and namespaces in the
same hierarchy, but I haven't found a need to do that myself.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top