문제

I am aware of "Click once approach", I find a problem with its one year certificate, and if I want to have more than one year certificate, I have to purchase the certificate from them.

I want to know, If there is any way to address this, So i can have my clients get updates for many years.

도움이 되었습니까?

해결책

You can generate a ClickOnce certificate with any expiration date (and any Issued To/Issued By values):

makecert -sv ClickOnceTestApp.pvk
     -n CN=Sample ClickOnceTestApp.cer
     -b 01/01/2012 -e 12/31/2100 -r

It will be a self-signed certificate, same as generated by Visual Studio for click once deployments.

from http://bernhardelbl.wordpress.com/2012/03/20/create-a-non-expiring-test-certificate-pfx-for-clickonce-applications/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top