We have a .net 2008 application which uses two dll's to remote to a server to get information. the returned object. One of the properties of this object is an enum which is held in a third dll.
For some reason when we build the third dll is not being added, despite the fact i have now included all three dll's in the solution.
at runtime when the code deserialises the object we get a dll not found exception specifying that the dll is missing, for the dll in question, it contains only enums (not my design)
Any idea how i can force the dll to be added?
I can just add the dll as part of the harness or service but I shouldn't have to as it should be picked up as a dependency of the main project