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
5
votes
1 answer
How to read each revision of file using sharpsvn client using c#?
How to read each revision of file using sharpsvn client using c# ? Not the revision numbers but the content of the file in each revisions............

Prabu
- 159
- 2
- 9
5
votes
2 answers
Get log details for a specific revision number in a post-commit hook with SharpSVN?
I'm trying to write a post-commit hook using SharpSVN but can't figure out how to get the changeset info using SharpSVN given the revision number and the path to the repo. Any ideas are much appreciated.

russcollier
- 709
- 1
- 9
- 18
5
votes
1 answer
SvnClient.GetStatus(path, args, statuses) returning 0 for versioned file?
I have written a simple C# app using SharpSVN to query the status of a file prior to attempting an add. The examples I've seen in various places for this very purpose involve calling the GetStatus method of the SvnClient, passing in the full path…

David W
- 10,062
- 34
- 60
4
votes
1 answer
Accessing Visual SVN from ASP.Net using sharpsvn API
has any one tried to access VisualSVN Server repositories through ASP.Net using SharpSVN API ? if yes, what were the challenges ?

Vikram
- 6,865
- 9
- 50
- 61
4
votes
0 answers
How to grant access to IIS user
I'm working on a web app that uses SharpSVN to checkout from a repo using svn+ssh. I have configured my ssh client correctly in my AppData config file by adding the path to Plink under the [tunnels] section, but checkout requests still give me an…

Kevin
- 413
- 1
- 8
- 18
4
votes
2 answers
How to correctly generate a complex externals structure with sharpsvn?
I have a very convoluted repository structure using subversion. Much of this has to do with the limitations of my team, security requirements, and the dependencies of the project. The structure used here is not optional as a consequence and cannot…

Richard Robertson
- 150
- 1
- 14
4
votes
1 answer
SharpSvn: How can I see Update()'s result?
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 C#, .Net 3.5), because I need to see if the Client.Update() operation caused…

Noich
- 14,631
- 15
- 62
- 90
4
votes
2 answers
Using the SharpSVN api are there any methods available to get the number of lines contained in a file at a Revision without Exporting it?
I was just wondering if I missed anything inside the documentation that would allow me to get the number of lines contained in a file at a certain revision (or even number of lines changed from a SvnChangeItem, that would be nice too) without having…

Sam F
- 621
- 1
- 8
- 16
4
votes
2 answers
Using SharpSVN how can you Export a file to memory instead of to the filesystem?
So I know how to export files @ certain revisions to the filesystem (because all of the overloads for Export have paths in them) but I do not want to have to use the filesystem for ease of access purposes. Is there a way to redirect this to a string…

Sam F
- 621
- 1
- 8
- 16
4
votes
3 answers
How to add .dll reference to ironpython VS2010 project?
I have a sharpsvn .net library i want to use in ironpython project. Library is shipped as a .ney .dll file. For C# projects i just add this file to project "Reference" section and after that i can use a library:
alt text http://j.mp/8Y3MfL
But for…

grigoryvp
- 40,413
- 64
- 174
- 277
4
votes
1 answer
SharpSVN ForceCredentials overwrites authentication cache
SVN, like every mature tool used for lots of different purposes, is complex. SharpSVN tries to expose all SVN features programmatically, so it is complex, too. I just tried to authorize a tool with a given username/password on a machine where…

wigy
- 2,174
- 19
- 32
4
votes
2 answers
How to checkout a file using sharpsvn
I tried to checkout a file using sharpsvn from remote repository,but i found sharpsvn can not to checkout single file only checkout folder,please help me to know how to checkout a file?Thx.
My code
SvnUpdateResult result;
SvnCheckOutArgs…

Jason Lee
- 77
- 7
4
votes
2 answers
How to use SharpSVN in ASP.NET?
Trying to use use SharpSVN in an ASP.NET app. So far, it's been nothing but trouble. First, I kept getting permission errors on "lock" files (that don't exist), even though NETWORK SERVICE has full permissions on the directories. Finally in…

Bryan
- 8,748
- 7
- 41
- 62
4
votes
3 answers
Using client.status in c# with sharpsvn
I want to use the status method but i dont understand how it works. Could someone show me an example of use please?
EventHandler < SvnStatusEventArgs > statusHandler = new EventHandler(void(object, SvnStatusEventArgs)…

Pedro
- 65
- 3
- 5
4
votes
1 answer
SharpSVN - Is there anyway to be notified of pending updates?
Is there any to be notified of pending updates (on the server) or do I need to poll for changes?
Ideally I don't want to poll, as this is inefficient waste of resources, both on the server and client.

AwkwardCoder
- 24,893
- 27
- 82
- 152