
Signature
Phil Wilson [MVP Windows Installer]
----
Mattias and Phil, thank you. I had completely forgotten the assembly
directives. It seems that the version really has to be explicitly stated
e.g. 1.0.0.0. I tried 1.0.0.* but it didn't seem to work.
Cheers,
Kai Hietala
> It also wouldn't hurt to have an explicit assembly version just in case it's
> the default of 1.0.*, otherwise your clients won't find your recompiled
> version because it will change at every build.
Sascha Fueller - 04 Jun 2004 07:23 GMT
Have you tried to apply a Guid to your class as you did it wiht the
interface ?
It is also possible to have different versions visible to .NET and COM:
---
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: ComCompatibleVersion(1,0,0,0)]
---
Sascha
> Mattias and Phil, thank you. I had completely forgotten the assembly
> directives. It seems that the version really has to be explicitly stated
[quoted text clipped - 7 lines]
> > the default of 1.0.*, otherwise your clients won't find your recompiled
> > version because it will change at every build.