vote up 3 vote down star

Hi I've written a batch execution framework and in it I want (in some scenarios) to load an assembly from the GAC where there may be multiple versions but I just want to load the latest version.
Is this even possible?

TIA

flag

5 Answers

vote up 2 vote down

You should be able to use a publisher policy with a BindingRedirect. See this SO answer.

link|flag
vote up 1 vote down

Assembly.LoadWithPartialName(string) will do exactly what you want.

link|flag
vote up 1 vote down

Thanks guys I'm trying to do the publisher policy bit at the moment as that would actually suit my needs perfectly. I don't seem to be able to add the policy assembly to the GAC though. It works ok on my dev machine, but won't install on the test server. Using the drag and drop through the shell extension I get:

"A module specified in the manifest of assembly 'policy.3.0.assemblyname.dll' could not be found"

Using gacutil I get "Failure adding assembly to the cache: Unknown Error"

My policy file looks like this:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="*assemblyname*"
                          publicKeyToken="7a19eec6f55e2f84"
                          culture="neutral" />
        <bindingRedirect oldVersion="3.0.0.0"
                         newVersion="3.0.0.1"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

Any ideas on this one??

cheers

Ben

link|flag
Have you put the assembly itself (with version 3.0.0.1) in the GAC? – csgero Nov 19 '08 at 17:30
yes, that's in there - what else is it looking for??? Are there any differences between the debug and release versions of the assembly that could cause an issue here? – Ben Nov 25 '08 at 13:13
I've recreated the problem from scratch with a new assembly that has no dependancies (apart from the defaults) itself - all works fine on my local development machine and the same error adding the policy file to the GAC on the server! – Ben Nov 26 '08 at 11:50
Sorted it stackoverflow.com/questions/302239/… – Ben Nov 27 '08 at 8:25
vote up -2 vote down

Linq to Gac can query the GAC. You can load assembly at runtime once you know what you want.

link|flag

Your Answer

Get an OpenID
or

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