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
Post a Comment