Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why would you use a ".pfx" file in .NET

Tags:

.net

pfx

What is the ".pfx" extension used for in .NET?


Why does it ask for a password when the solution is being built?

like image 664
Developer Avatar asked Dec 29 '08 20:12

Developer


1 Answers

A file containing an encrypted private key. It's probably being used for code signing the application (so the user knows who created the program and hence if they can trust it).

You can probably see it being used by right-clicking on the project, getting Properties, then looking at the Signing tab.

like image 120
Mitchell Gilman Avatar answered Oct 12 '22 21:10

Mitchell Gilman