How to structure directories for .vbproj's shared amonst several solutions?
I've got several programs that all use at least one Shared project (Shared.vbproj)
I'm trying to structure thier directories. I'm planning to use what's below. My goal is to be able to move the ROOT folder to another location and have everything still work.
Any downsides to this: (or a better way) ?
I'm trying to structure thier directories. I'm planning to use what's below. My goal is to be able to move the ROOT folder to another location and have everything still work.
Any downsides to this: (or a better way) ?
Can anyone point me to a resource describing this?
(I read up a bit on this in the MSDN, but the best example I found doesn't really describe how to organize the directories themselves)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/tdlg_ch3.asp
\Root (directory)
-Program1.sln (which contains Program1.vbproj and Shared.vbproj
-Program2.sln (which contains Program2.vbproj and Shared.vbproj
\Program1 (directory)
-Program1.vbproj
-Form1.vb (for Program1)
\Program2 (directory)
-Program2.vbproj
-<program2 files>
\Shared (directory)
-Shared.vbproj
-SharedStuff.vb
-MoreSharedStuff.vb
Any problems? Any suggestions of a better way to achieve "portability" (moving \root somewhere else) ?
Thanks!
\Root (directory)
-Program1.sln (which contains Program1.vbproj and Shared.vbproj
-Program2.sln (which contains Program2.vbproj and Shared.vbproj
\Program1 (directory)
-Program1.vbproj
-Form1.vb (for Program1)
\Program2 (directory)
-Program2.vbproj
-<program2 files>
\Shared (directory)
-Shared.vbproj
-SharedStuff.vb
-MoreSharedStuff.vb
Any problems? Any suggestions of a better way to achieve "portability" (moving \root somewhere else) ?
Thanks!

