Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why this file "ProjectName_TemporaryKey.pfx" gets created in my project?

Tags:

Why does the file "ProjectName_TemporaryKey.pfx" get created in project? And what is its use in the project? I have EDM in my project and some forms, etc.

like image 208
Prakash Vishwakarma Avatar asked Aug 26 '13 05:08

Prakash Vishwakarma


2 Answers

This is a file used for code signing:

Assembly signing (also called strong-name signing) gives an application or component a unique identity that other software can use to identify and refer explicitly to it. A strong name consists of its simple text name, version number, culture information (if provided), plus a public/private key pair. This information is stored in a key file; this can be a Personal Information Exchange (PFX) file or a certificate from the current user's Windows certificate store

Here is a bit more info.

like image 131
Dimitar Dimitrov Avatar answered Oct 03 '22 18:10

Dimitar Dimitrov


You must be having click once based deployment.Such click once apps needs to be signed digitally by a certificate.If you dont have a certificate of your own the publishing system will create one for you. you can also take a look at this.

like image 27
Rohit Avatar answered Oct 03 '22 16:10

Rohit