I want to create a dll from a class library in one solution, then add & reference that dll in a completely separate solution, so i can simply use those functions without having the whole class library in the project. Can I do this? Thanks!
Share
Compile the project in the solution and copy the
dllfor the specific project in question from thebinfolder and place it in a solution items folder located in the other project. Then just add a reference to thisdll, pointing to location of thedllin that solution item folder.