How to prevent MSBUILD from copying dependent GAC assemblies to bin

Posted by Matt Wrock on Stack Overflow See other posts from Stack Overflow or by Matt Wrock
Published on 2010-04-14T02:12:05Z Indexed on 2010/04/14 2:12 UTC
Read the original article Hit count: 441

Filed under:
|
|

I have a msbuild task that builds my solution and I am migrating it from .net 3.5 to 4.0. I have some dependent DLLs that have Local Copy set to true. The 4.0 version of msbuild is not only copying the dependent DLL (which I want), it is also copying all dependent assemblies of that DLL from the 32 bit version of the GAC to my bin. Not only do I not want these files being copied from the GAC, I especially do not want the 32 bit versions for this 64 bit build.

Has the behavior changed in msbuild 4.0? And does anyone know how to force msbuild to use the behavior in 3.5?

© Stack Overflow or respective owner

Related posts about msbuild

Related posts about .NET