views:

32

answers:

1

I have an EXE project A, which references a class library project B (all in the same solution). Project B has a reference to about 10 3rd party DLLs (from DevExpress). All the referenced assemblies have Copy Local set to true.

When I build the entire solution, the resulting DLL from project B is copied into the bin/debug of project A. However, none of the dependencies of project B get copied.

I looked in the Output window during compile and all looks good. There aren't any errors.

How do I troubleshoot this?

A: 

Make sure that copy local is set to true for your reference of project B in project A.

SnOrfus
@SnOrfus. The reference has CopyLocal set to true.
AngryHacker