I\'m using SharpSVN with .NET 2 and I cannot seem to resolve conflicts. The exception message is: \"Can\'t open file \'conflicted_file.xml.r0\': The system cannot find the file specified.\"
how do i get what the current repository is for a directory? I want to do: SvnInfoEventArgs info; Uri repos = new Uri(\"http://my.server/svn/repos\");
I\'m trying to get repository URL of working copy of SVN repository, which is located on network sh开发者_开发知识库are: \\\\host\\D\\directory\\
How do I create a repository on a Svn Apache server using SharpSvn library given a valid credential? i.e. creating a repository through http(s) instead 开发者_如何学运维of through filesystem.
using (SvnClient client = new SvnClient()) { client.Commit(_targetPath, commitArgs); SvnInfoEventArgs result;
I wrote a deployment tool for my own programs based on SQL and Subversion. I\'m able to create different versions of applications and store them with Subversion while the information for those is sto
I\'m new to SharpSVN, i have a aspx page in which i need to display a file content from SVN, change the conten开发者_如何学运维t and commit the file in SVN from memorystream without working copy. I am
Given two different revisions need to get the differences between them, I intend to use the method duvuelve Diff but I anything as a result, it could be? Thanks.
I have this code which gets a uri\'s content into a MemorySream: MemoryStream ms = new MemoryStream();
Using SharpSvn, how can I get a list of files that need to be committed (the list that you would see if you right click on a folder with tortoisesvn and hit comm开发者_JAVA百科it)