15

I downloaded a open source project and was trying to open it in VS 2010. It contained the .pfx file which gives me the above mentioned error while building the project.

I tried signing it using sn -i VS_KEY_GHSTGEDY8755075 but it asks me for the password.

How can I fix this error ?

Balaji Birajdar
  • 2,394
  • 1
  • 23
  • 29

1 Answers1

47

I experienced this issue in VS 2005 and the solution was as stated here: http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/c33d7f75-6893-4793-a407-3aa3d49c098c/

I am not familiar with VS 2010, but I imagine that this is the same issue and can be solved in similar fashion.

Open the project properties -> signing

Uncheck the following options:

  1. Sign the clickonce manifests

  2. Sign the assembly

Save the project and try building the solution.

unhappyCrackers1
  • 813
  • 8
  • 15