Question on Signing Assemblies
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I'm trying to sign my assembly. When I run my GUI, I get the infamous: "The located assembly's manifest definition does not match the assembly reference" exception. A Google search listed about "8 trillion" possible causes for this exception. In my case, it was using a wildcard version number in the AssemblyInfo.cs: [assembly: AssemblyVersion("3.00.*")] // doesn't work [assembly: AssemblyVersion("3.00.0000")] // can change versions all day long So it seems like wildcard versions don't work with signing?? How come? Is the wildcarding applied AFTER signing? Any work-around?