vote up 3 vote down star
1

I have developed a console utility that performs some operations against a server application. Due to the nature of the server app I'm working with, I need to execute this utility on the server.

The problem is that the utility is referencing a common DLL that has previously been deployed to the server's GAC. Since the common DLL's deployment, it has been updated and my utility relies on these updates. I am unable to update the DLL in the GAC due to company policy regarding deployment.

By default my utility will use the outdated DLL in the GAC. Is there a way I can force it to use the updated DLL (e.g. by specifying a path on the file system)?

flag

5 Answers

vote up 3 vote down check

Unfortunately, GAC tends to play a trump card - but if you have changed the version, then the GAC resolve should fail (as long as you have "Specific Version" set to true in the IDE), allowing it to load the local version?

link|flag
vote up 3 vote down

Does the updated DLL not have a new version number? I would expect that if you force the reference to use the right version number, it should pick up the local one.

link|flag
Downvoters: Comments are helpful... – Jon Skeet Feb 23 at 16:13
vote up 2 vote down

The Assembly class has some methods to load assemblies from specific locations.

Assembly.LoadFrom has a few overloads

EDIT: There is a way to specify, via configuration file, where to look for specific assembly versions. I can't recall exactly.

link|flag
If you have any further information on the configuration file method that would be great. – Alex Angas Feb 23 at 16:53
msdn.microsoft.com/en-us/library/… Assembly binding and assembly base tags. Hope it helps – Megacan Feb 23 at 17:00
vote up 0 vote down

You might want to take a look at the AppDomain.AssemblyResolve event.

EDIT: the event is only fired when regular assembly resolution fails, so it does not fit your needs.

link|flag
That only happens if it *fails*; so if version in the GAC matches name/version/signature, you won't see this event. – Marc Gravell Feb 23 at 16:03
You are right - my bad. – Dario Solera Feb 23 at 16:04
Not sure it warranted a down-vote, though. Balanced that up for you ;-p – Marc Gravell Feb 23 at 16:05
vote up 0 vote down

Try using a <codebase> element in the app.config

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.