Load strong named assembly regardless of version in Compact Framework

164 Views Asked by At

I have written a plugin for an application which uses the Bouncy Castle Library. This application runs on Windows CE and runs on the .NET Compact Framework.

The Bouncy Castle Library is a strong named assembly and different versions are are supplied depending on what release it is.

My plugin will work regardless of the version.

If this was a full framework device i would use the AppDomain.CurrentDomain.AssemblyResolve event to redirect to the assembly that exists. However in the Compact Framework this event doesnt exist.

How can i do this in the Compact Framework?

0

There are 0 best solutions below