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
SharpSVN - no revision number at SvnUpdateResult after export
What I would like to do is to export file with HEAD revision and get actual revision number for this exported file.
I am using this method from SvnClient
Export(SvnTarget, String, SvnExportArgs, SvnUpdateResult)
But SvnUpdateResult shows Revision…

featherbits
- 790
- 6
- 24
0
votes
1 answer
How to detect that a file is ignored?
Using SharpSvn, I am trying to get an accurate representation of the status of a file.
When I execute svnClient.Status on a versioned file without local changes, I get no status back.
When I execute svnClient.Status on a non-versioned, ignored file,…

Daniel Hilgarth
- 171,043
- 40
- 335
- 443
0
votes
1 answer
How to parse a file into a list of string to use for auto-complete in a windows forms application in C#?
I am building an application in C# that has a textbox field. In this field, a user will write text and the text will autocomplete from a file found on a remote repository. I am using a library called SharpSVN and I am trying to find a method where I…

Ralph
- 2,959
- 9
- 26
- 49
0
votes
1 answer
Decrypt SVN authentication data
I would like to get the name of a working copy user.
The authentication data is saved in %appdata%\subversion\auth., however it is encrypted.
Is it possible to decrypt it programmatically using c#?
Any help would be highly appreciated!

user3165438
- 2,631
- 7
- 34
- 54
0
votes
1 answer
Clean-up a file
I would like to perform the action on a file without affecting the rest of the files in the same version-controlled folder.
Is it possible to clean-up a particular file?

user3165438
- 2,631
- 7
- 34
- 54
0
votes
0 answers
SharpSVN Repo-Browser
Viewing the repository data of TortoiseSVN is done by right click on a file -> TortiseSVN -> Repo-Browser.
I would like to get this data using SharpSVN, in order to retrieve the name of lock owner.
Is it possible? How? Where does this data being…

user3165438
- 2,631
- 7
- 34
- 54
0
votes
1 answer
Issue Pulling a specific revision from SVN using SharpSVN
If I use tortoiseSVN, I can navigate to the following URI and see that the file is indeed there:
svn://server/DocRoot/WordFile.doc
and I can see that the current revision of the doc is 6.
However, this code does not work, and I’m at a loss as to…

Naqamel
- 35
- 1
0
votes
1 answer
How can I see Update()'s result in SharpSvn using vb.net?
I am trying to automate the update function in subversion wuth SharpSvn.
When using a simple command line svn client, if you run update you can see the changes that were made to your working copy.
I've been trying to do so in SharpSvn (with VB.NET,…

user3794087
- 1
- 1
0
votes
1 answer
How do I tell if my local copy is out of date?
I'm experimenting with SharpSVN, I want to be able to know if my local copy is out of date.
I've created some update code:
public void UpdateSource()
{
var svn = new SvnClient();
SvnUpdateResult result;
var boolValue =…

Liath
- 9,913
- 9
- 51
- 81
0
votes
1 answer
Commit in sharpSVN
I have a problem doing commit with sharpsvn. Now i´m adding all the files of my working copy (if the file is added throws an exception), and after it i do commit. It works but it trows exceptions. There is some way to get the status of the…

Pedro
- 65
- 3
- 5
0
votes
0 answers
Using SharpSvn to retrieve log revisions got Disk issue
I'm workin on a wcf service to get some info of svn log.
My service method:
public List ViewLog(Executable ejecutable) {
Configuration config = m_context.Configuration.SingleOrDefault();
if (config != null) {
…

jcvegan
- 3,111
- 9
- 43
- 66
0
votes
1 answer
SharpSVN: The process cannot access the file because it is being used by another process
I'm using the SharpSVN .NET library. This exception only occurs when adding a file, but not adding a folder. Why would that be?
Can't open file 'D:\FOLDER\FILE.xls': The process cannot access the file because it is being used by another…

JustBeingHelpful
- 18,332
- 38
- 160
- 245
0
votes
1 answer
SharpSVN: How to tell if the Path for SVN checkout is already 'bound' to SVN
I'm trying to programmatically connect to SVN using SharpSvn.
Is it possible to determine if the local folder (path) I want to bind to SVN is already bound?
The reason I ask is becuase I only want to do a CheckOut when the local path has not been…

AwkwardCoder
- 24,893
- 27
- 82
- 152
0
votes
1 answer
Find files not added to subversion, except the Ignored files using SharpSvn
I want to get all unversioned files from a folder using the SharpSvn, that have the following svn:ingore value:
*.o *.lo .la ## .*.rej .rej .~ ~ .# .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk…

Sergiu
- 297
- 3
- 16
0
votes
1 answer
Can't use SharpSvn on IIS Express
When I try and create an instance of SharpSvn.SvnClient on my local development system, I'm getting System.InvalidProgramException (SharpSvn.SvnClient..ctor() in g:\dist\src\sharpsvn\svnclient.cpp:36). I'm using 32bit IIS Express 8.0 with…

ulu
- 5,872
- 4
- 42
- 51