We’re using Windows Identity Foundation in some of our applications. On the developer machines, this installs various bits into the GAC.
I’d rather not do this on our build agents.
In general, how do I pull .NET assemblies from the GAC so that I can reference them in our builds?
Make sure you put “copy local”, in order to avoid deploy problems. (right click on the reference, properties, copy local, true).
Hope it helps