c# Project reference

1.3k Views Asked by At

Reading MSDN's documentation, I was left uncertain.

Setting: I have project A referencing some dll X, and project B project-referencing project A, and requiring dll X as well.

Would I need to add a reference to dll X to both projects, or would the project reference do that for me?

1

There are 1 best solutions below

3
On BEST ANSWER

You only need to add a reference to X when classes, methods, etc. of X are made available through A.

If there is no public use of X in A, you don't need to reference it (although you would need it in your bin folder.