Converstion from 1.1 to .net 2.0

  • Thread starter Thread starter Sehboo
  • Start date Start date
S

Sehboo

Hi,

I am converting the application from 1.1 to 2.0. I used VS2005
wizard, but when I try to run the app, I get this error.


Strong name signature could not be verified. The assembly may have
been tampered with, or it was delay signed but not fully signed with
the correct private key.


All our assemblies are strongly named (delayed signing), and I am not
sure what to do.


Thanks
 
Generate a new strong name for the assembly using the sn.exe tool in the 2.0
Framework. Change the AssemblyInfo.vb/.cs file to point to that new key
file.
 
Back
Top