Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Visual Studio 2008 solution. I would like to sign my assembly. I also would like to define an ending validation date of 2030/01/01.

First attempt:

  • In my Visual Studio solution, I get the properties of my project
  • I go on the Signing page
  • I tick Sign the assembly
  • From the dropdown for choosing a string name key I click on <New...>

enter image description here

  • The Create strong name key dialog is displayed
  • I type a name for my Key file name and a password.

enter image description here

A key is created BUT I don't have the ability to set the ending validation date to 2030/01/01.

Second attempt:

  • I open a dos prompt and I create a new key manually
  • makecert -r -pe -n "CN=TNBC2" -e 01/01/2030 -sky exchange -ss my

The key is created and stored in the store.

Problem: from Visual Studio I have no way for choosing my key from the store for signing the assembly. So I exported the key from the store to a file (.pfx).

enter image description here

Now I have a file named TNBC2.pfx containing my key. I can select this from from Visual Studio by browsing (from the dropdown).

Problem: when I restart Visual Studio I get a prompt asking me to enter a password for this key.

enter image description here

I type the password but I got the error telling me the object already exist. The prompt asking me to type a password is displayed 6 times. It does not seems to be the correct way??

Any help on this problem? I'm a bit lost. So in short, I would like to be able to sign my assembly in order to publish it later and allowing the network administrator to allow access to this application based on the certificate.

Thanks.

share|improve this question
You can't make this work, strong names don't have an expiration date. Expiration dates on code signing certificates serve an entirely different purpose. Put a time bomb in your own code. Consult legal counsel first, evolving doctrine in the USA is that you are financially responsible for business losses incurred by the bomb going off if the user is not properly informed of the presence of such device. – Hans Passant Jun 16 '12 at 15:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.