I’m using SharpSVN.
I want to store the SVN credential in pc.
I have try to set credentials updating default credentials
using (SvnClient client = new SvnClient())
{
client.Authentication.DefaultCredentials = new System.Net.NetworkCredential("user", "password");
...
}
but it doesn't save the data.
I have found that SharpSvn give a default GUI to input credentials. This GUI has a flag to store the data. Here the links where I found information:
- http://blogs.collab.net/subversion/sharpsvn-brings
- SharpSVN SvnUI.Bind to WPF window
- http://sharpsvn.open.collab.net/docs/walkthrough.htm#svn_commit
Here the code to use it:
using (SvnClient client = new SvnClient())
{
// Bind the SharpSvn UI to our client for SSL certificate and credentials
SharpSvn.UI.SharpSvnUI.Bind(client, IWin32Window);
....
}
But it is make for Windows.Forms and I use WPF. Also, I couldn't use this default GUI.
Someone now how to do it?
Thanks!!