This isn't a problem with RSB. Welcome to nuget with signed assemblies.

On Wed, Jul 17, 2013 at 2:54 AM, Mc Volodymyr <[email protected]> wrote:

> Hi,
>
> I'm using Rhino Service Bus 3.1.1.0. It has a dependency to Common.Logging
> >= 2.1.1. With this exact version it works fine, but with a newer one
> 2.1.2.0 throws following exception:
>
> Unhandled Exception: System.IO.FileLoadException: Could not load file or
> assembly 'Common.Logging, Version=2.1.1.0, Culture=neutral,
> PublicKeyToken=af08829b84f0328e' or one of its dependencies. The located
> assembly's manifest definition does not match the assembly reference.
> (Exception from HRESULT: 0x80131040)  at
> Rhino.ServiceBus.Host.Program.Main(String[] args)
>
> This can be fixed by using runtime assembly redirect
>
>  <runtime>
>     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
>       <dependentAssembly>
>         <assemblyIdentity name="Common.Logging"
> publicKeyToken="af08829b84f0328e" culture="neutral" />
>         <bindingRedirect oldVersion="0.0.0.0-2.2.2.0" newVersion="2.1.2.0"
> />
>       </dependentAssembly>
>     </assemblyBinding>
>   </runtime>
>
> but i need to place this setting in both app.config where boostrapper is
> defined and in Rhino.ServiceBus.Host.exe.config.
>
> The question is why Rhino Service Bus has a strong dependency to a
> specific version of Common.Logging and how this can be avoided?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Rhino Tools Dev" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/rhino-tools-dev.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Rhino Tools Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/rhino-tools-dev.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to