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
propertiesof my project - I go on the
Signingpage - I tick
Sign the assembly - From the dropdown for choosing a string name key I click on
<New...>

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

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).

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.

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.