c# - MSBuild not copying all DLL references -


i have c# .net 4.5 solution this:

project a.dll -> third party.dll  project b.dll -> project a.dll 

when build project b, third party.dll isn't copied bin folder. however, works if add reference third party.dll like:

project b.dll -> project a.dll -> third party.dll 

it works if inside project b:

var t = typeof(thirdparty.someclass); 

i don't remember having issue in past. ideas?

i'm using ninject v3.2 , ninject.extensions.conventions v3.2. possible ninject dynamic assembly loading behind scenes, , compiler running optimizations strip out unused libraries?


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -