Best practices for common code library

  • Thread starter Thread starter Epson Barnett
  • Start date Start date
E

Epson Barnett

Hi,
What techniques are other people using for common code libraries? I
have some classes I've written that will be useful in all my projects.
I'd like to have one copy of these common classes that is available to
multiple projects. I'd also like these common classes linked
relatively, so that my development server's directory structure
doesn't have to be the same as my production server's.

Creating a project for common classes seems limited by needing an
absolute path to the DLL in the reference.

How are other people handling this issue?

Regards,
Epson
 
Epson said:
Hi,
What techniques are other people using for common code libraries? I
have some classes I've written that will be useful in all my projects.
I'd like to have one copy of these common classes that is available to
multiple projects.
[snip]

How are other people handling this issue?

What about multiple versions of these classes? :)
 
Back
Top