Hi,
I have a currently have 2 C# projects that won't work together the way I want them to. One project is a library I've written and the other project is a application that uses it. In the future I will likely be writing more applications that will use the same library project.
My question is, Is there some way I can get the projects to reference a single copy of the DLL file from one of my projects?
Currently if I have the library project set up as a dependency I will get an output like this:
Ideally I'd like to get it to work more like this:
I tried creating an Merge module deploy for the library thinking I could reference that instead of my actual project (Like some of the other libraries I'm using do) but I couldn't get it to look at the MSM output instead of the original.
I have a currently have 2 C# projects that won't work together the way I want them to. One project is a library I've written and the other project is a application that uses it. In the future I will likely be writing more applications that will use the same library project.
My question is, Is there some way I can get the projects to reference a single copy of the DLL file from one of my projects?
Currently if I have the library project set up as a dependency I will get an output like this:
Code:
Program Files\Company\App1\App.exe Program Files\Company\App1\Lib.dll Program Files\Company\App2\App.exe Program Files\Company\App2\Lib.dll
Code:
Program Files\Company\App1\App.exe Program Files\Company\App2\App.exe Program Files\Company\Lib.dll
Comment