Alex Gordon
Alex Gordon

Reputation: 60731

how do i edit "unknown publisher" in my app?

i guess my .NET application needs to be signed or something. how do i get rid of that prompt unknown publisher when someone tries to install my app?

Upvotes: 1

Views: 8106

Answers (1)

David
David

Reputation: 73564

If it's the prompt I'm thinking of, you'd start by getting a certificate from someone like Verisign and use their certificate to sign your assembly.

You may be able to do a self-signed assembly using the information from these pages:

http://weblogs.asp.net/fbouma/archive/2003/12/23/45396.aspx

http://msdn.microsoft.com/en-us/library/ms247123(VS.80).aspx

http://blogs.msdn.com/junfeng/archive/2006/03/11/549355.aspx

I'd recommnd reading up and going from there.

Upvotes: 5

Related Questions