I am trying to access the subversion repository using SharpSvn. The repository is accessible only through https, and the machine uses its own certification authority (do not worry about security here, I trust the authority).
I have a public certificate authority root certificate, but due to user permissions I cannot install the certificate in the certificate store.
If I use subversion directly, I can add:
servers:global:ssl-authority-files=/path/to/cacert.crt servers:groups:myhost=myhostsdns.com
either as command line objects or in a configuration file.
How do I set these parameters in SharpSvn so that I can use the cacert.crt file so that I don't get a "certificate verification failed" when trying to access my repository, and I donβt just have to ignore the error?
Thank you very much
source share