I need to reference a specific version of a signed assembly. Because it is present in GAC, compiler picks up the 'vendor' version instead of the one I provide (the GAC version number is higher, even though it's an older API). Is there some kind of extension to the basic /reference=Library.dll
compiler option that allows specyfing a strong name?
I'm compiling with NAnt, so <csc>
task-based solution would be optimal, but compiler command line (csc AND mcs) is also fine.