I keep getting a type load exception in my application (trying to use
SharpZipLib under WM).

However when I look at the DLL in ILDASM I see the following in the
manifest:

.assembly extern mscorlib
{
.publickeytoken = (B7 7A 5C 56 19 34 E0
89 ) // .z\V.4..
.ver 2:0:0:0
}
.assembly extern retargetable System
{
.publickeytoken = (96 9D B8 05 3D 33 22
AC ) // ....=3".
.ver 2:0:0:0
}

now I know that that the 96... key is correct for the CF, so why isn't
this working?

Re: Type Load Exception by ctacke/>

ctacke/>
Mon Feb 26 11:33:48 CST 2007

Did you recompile SharpZipLib for the CF? Desktop assemblies are not
retargetable to the CF.


--
Chris Tacke - Embedded MVP
OpenNETCF Consulting
Managed Code in the Embedded World
www.opennetcf.com
--


"rgalgon" <rgalgon@gmail.com> wrote in message
news:1172510431.015286.21060@k78g2000cwa.googlegroups.com...
>I keep getting a type load exception in my application (trying to use
> SharpZipLib under WM).
>
> However when I look at the DLL in ILDASM I see the following in the
> manifest:
>
> .assembly extern mscorlib
> {
> .publickeytoken = (B7 7A 5C 56 19 34 E0
> 89 ) // .z\V.4..
> .ver 2:0:0:0
> }
> .assembly extern retargetable System
> {
> .publickeytoken = (96 9D B8 05 3D 33 22
> AC ) // ....=3".
> .ver 2:0:0:0
> }
>
> now I know that that the 96... key is correct for the CF, so why isn't
> this working?
>