I need to migrate a .net solution from 1.1 to 3.5. The solution currently contains 2 CS projects 1) a Class Library and 2) a Web Service application.
Problem: I need to migrate the solution file and the Web Service application project, however I cannot migrate the Class Library as it is shared with another solution that will not be migrated !
As the Web Service application references the Class Library, I am thinking I would need to add a DLL reference to the class library bin directory. I do not like this idea too much.
The bin directory is currently not a part of version control. Would this mean I need to add the library dll to version control too. Again, I do not like this idea.
Is my approach correct? Is there a better way of doing this?