Multi-projects solution

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

Can you share with a few examples in which to create multi-project
solutions. I am not sure why that would be necessary. Why would I opt to
use this feature in VS2005?

I know this feature existed back in classic vb like VB6, but I never find
it necessary to use. Can you share some thoughts on this? Thanks.

Ben


--
 
For one example most times when you want to remote a class you need to do
this.

I do it all the time when I need to build an application that uses correct
separation of business logic, data, and presentation layers.
 
you could have a seperate project for an installer - anything
related. Also different types or different versions....
on another note does anyone know where "WinDiff" went? I have vs2005
Cheers
hav
 
Hi all,

Can you share with a few examples in which to create multi-project
solutions. I am not sure why that would be necessary. Why would I opt to
use this feature in VS2005?

I know this feature existed back in classic vb like VB6, but I never find
it necessary to use. Can you share some thoughts on this? Thanks.

Ben

--

I use it often for plugin architectures. Having the project for the
main executable, the Interfaces dll, and all the seperate plugin dlls
in one place make for easy changes. It also comes in handy when you
need to cross the language barrier - suppose you have an old C# class
library you wish to update and use with a new VB project? Then it just
makes more since to combine the two into a solution than to update
them in seperate instances of the IDE.

Thanks,

Seth Rowe
 
Unit Testing should go in its own project. Because you won't distribute
that to the customer.

Prez/BAL/DAL are good candidates.
 
Back
Top