-
architecture [RESOLVED]
What's the order here in .net?
you have a
PROJECT that holds a
SOLUTION (but can have more than one?)
these solutions have several files ie. .vb, .user, .proj.
can someone extend on this or point me to somewhere that explains the inner-workings a little?
-
A Solution holds one or more projects.
A project can hold any amount of files (classes, jpegs, straight out .txt from notepad or wordpad.)
-
Each project gets compiled to either a seperate dll or seperate exe. Usually your startup project is a exe, and the rest of the projects are supporting code (or dll's).