Sharing Classes between Windows App and a Web App

G

Guest

I have two programs, one is Windows app the other an asp project that share
the same classes. I am using SourceSafe for my source control. We have 2
developers working on the projects and would like to have the classes
centrally located to keep from overwriting each others work. Is there a way
that I can do this?
 
M

Marina Levit [MVP]

Put all the classes to be shared in their own VS project.

Then have the both application reference this DLL.

This way you have only one instance of the source code. When a change needs
to be made to the shared code, the developer checks it out - makes changes,
checks it back in. Any one else who wants to make changes has to wait until
this developer is done.
 

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