In Visual Studio, can I disable my application signing when debugging?

In the properties of the Visual Studio project → Signing, I signed my project with a code signing certificate. However, in my team I am the only one who has a code signing certificate, although we are in an environment with several developers. When other developers try to "Start debugging", they receive the following message:

"cannot find a certificate matching the fingerprint of the project system"

Does anyone have any suggestions allowing them to debug their project, but only allow me to publish?

+3
source share
2 answers

, , - post-build script, . - signtool.exe .

script, : Debug_sign.bat, Release_sign.bat

Post-build event:
"$ (ProjectDir) $(ConfigurationName) _sign.bat"
script .

script . script .

signtool .pfx :
signtool.exe sign/f "codesign_cert.pfx" /p "cert_password" /d " " /du " http://mywebsite" myApp.exe

+3

?

+1

Source: https://habr.com/ru/post/1708768/


All Articles