vote up 2 vote down star

Do I have to sign my VB.NET applications?

I'm getting an error:

SignTool reported an error 'Keyset does not exist'

But have no interest in signing anything as the project is small and will only be used internally to my department.

I could create a temporary key. But why would I want to?

Thanks.

flag

76% accept rate

4 Answers

vote up 3 vote down check

The second post here looks like it may help...

link|flag
Yes, the new project created a temporary key. So, I found the old key, and copied it into a common place, so that the new project could also see it. I then had to uninstall and reinstall the finished system on the client PC. – Jon Winstanley Mar 4 at 15:13
vote up 1 vote down

To answer your first question: no, signing is not required. By default your projects are not signed.

Maybe Dave's post will help with the error you get.

link|flag
vote up 1 vote down

Signing an assembly with strong name is usually taking place when assembly will be place to GAC, so strong name provides safe referencing.

Only assembly manufacturer has specified public key token, so making a reference to an assembly from you application while development, you can be sure that the same assembly will be used by user.

So if your application has GUI, I think not, signing is not required. If it's a library, which can be used public, yes, sign it.

link|flag
vote up 1 vote down

I had the same problem...

I went to the Signing tab of "My Project", unchecked and checked the "Sign the ClickOnce Manifests", then "Create Test Certificate".

I saved and then published. During Publish, it asked me to confirm the new certificate. "OK"

Seems to have worked.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.