SharpSvn is a binding of the Subversion Client API for .Net 2.0-4.0+ applications contained within a set of xcopy-deployable dll's
Questions tagged [sharpsvn]
309 questions
0
votes
1 answer
How to get logs for a message after a particular revision number in Sharpsvn
I using Sharpsvn for getting svn log details in c#. I have written the following code :
using(SvnClient client = new SvnClient())
{
Collection list;
SvnLogArgs la = new SvnLogArgs { Start = 128};
client.GetLog(new…

sambhav jain
- 19
- 1
- 3
0
votes
1 answer
Sharp SVN Update crashes because of non-existent file
currently I am trying to switch from the embedded use of svn to the sharp svn plugin. The program I am working with did work and do what it should do but since i try to do it with sharp svn its crashing at the update step.
The code did run with the…

Chickenman
- 1,420
- 1
- 7
- 11
0
votes
1 answer
How to compile SharpSVN and SvnQuery
I'm trying to compile the SvnQuery project (https://github.com/kalyptorisk/svnquery.git) with the a version SharpSVN.dll which I created on my PC, but I keep seeing the error message CS0400: The type or namespace name 'SharpSvn' could not be found…

h.s.
- 139
- 9
0
votes
0 answers
Calling C# library (runtime 2.0) from C++ (64-bit app, Visual Studio 2015)
I need to call C# functions (SharpSVN API) from C++ 64-bit application (without Common Language Runtime Support).
C# functions are in the Subversion DLL - SharpSvn.dll. I use rather long scheme: C++ app (unmanaged code) is loading my C++ library…

Pavel
- 41
- 1
- 6
0
votes
1 answer
SharpSVN resolve conflict error
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."
I've checked, and the files are definitely all there and in the…

Adam Siena
- 1
- 3
0
votes
0 answers
How to print modifications in repository, using SharpSVN DLL in PowerShell?
I am using SharpSvn DLL in PowerShell. I've got as far as updating the working local copy, but how to print the modification in the command line, the way the svn update command works?
$es = New-Object 'System.Collections.Generic.Dictionary[string…

vishal sharma
- 1
- 2
0
votes
1 answer
How to get list of files per revision using SharpSVN
I would like to get the list of files that were modified, added or removed in a specific revision using sharpsvn. I can get that info using command line, for example:
C:\svn>svn log --verbose -r…

Raul Mercado
- 324
- 1
- 4
- 14
0
votes
1 answer
C# SharpSvn: merge specific revisions from one branch to another
I have a list of revisions I'd like to merge, but I'd also like to exclude every other revision between that's not in the list:
List revisions = new List();
revisions.Add(new Revisions { IssueNumber = "ISSUE-1", Revision =…

Pancakes
- 1
- 1
0
votes
2 answers
SVN: How to get "Next 100" revisions
TortoiseSVN's 'SVN Show Log" command shows the most recent 100 commits. There's also a 'Next 100' button to show the next 100 commits. Even for a single file, where Tortoise might have to go back years to find 100 revisions, it's very fast, usually…

chrisd
- 853
- 1
- 9
- 23
0
votes
1 answer
The file being use by another process when i add it programatically by SharpSvn
We are using SharpSvn to add SolidWorks files programatically to SVN tortoise.
When file is open in SolidWorks, i want to add it to SVN by code without closing file.
I used code below
var SvnResult = new SvnResult();
var FullPath =…

Farzad Niknam
- 21
- 4
0
votes
0 answers
How to detect file changes in new folder with SharpSVN?
My directory structure is like that
RootDir (under version control)
-- NewDir (not yet under version control)
---- NewFile.txt (not yet under version control)
When I try to get the local modifications with SharpSVN only "NewDir" is detected,…

mamuesstack
- 1,111
- 2
- 16
- 34
0
votes
3 answers
Import to the same Subversion repository directory multiple times?
For a number of reasons, the canonical source of some files I have can't be a working copy of the repository (the Subversion server is behind an inaccessible firewall, and the data doesn't natively exist in the file system in my preferred…

Sören Kuklau
- 19,454
- 7
- 52
- 86
0
votes
1 answer
SharpSVN.Merge() Not Working, Returns true But not able to see changes in Code
I am trying To Merge changes From SVN Folder to My Local folder which has previous revision code and new changes. Below Method takes SrcUrl and Local Path of Folder which has new changes and srcrev holds Revision Number that needs to be merged from…

supreeth mr
- 33
- 7
0
votes
1 answer
Merge not firing conflict event
I am not getting the conflict event fired when merging 2 revisions using Merge method of sharpsvn. I tried using the the conflict event in SvnMergeArgs and SvnUpdateArgs. I called the merge method followed by update method of sharpsvn. The merge…

user534563
- 1
- 1
0
votes
1 answer
How do I set a property to a file on the svn directory using the sharpsvn clinet class?
I am using the Sharpsvn client class to set a property on a file in a svn directory. I want to continually reset the property with a new timestamp and in doing that a new revision with a new log message will update in the Repository history. The…

Austin Cross
- 1
- 1