Questions tagged [sharpsvn]

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

309 questions
1
vote
1 answer

SharpSvn can not get uncommitted files

I am using SharpSvn 1.6 on a Win7 64bit machine with SlikSvn v1.7.1. I am using a C# application in VS2010 to check that files are checked in. I can do a client.GetInfo() to get the svn revision of a file from the svn archive but when I do a…
1
vote
1 answer

SharpSVN list of users

Is there any way to get list of all users who have access to a SVN project with SharpSVN? A user may not add/edit any file, yet, but he has access to that project.
Babak
  • 3,716
  • 6
  • 39
  • 56
1
vote
2 answers

sharpsvn: Creating a file remotely

Is there any way to create a file using sharpsvn remotely? I mean without using a file system.
Serhiy
  • 4,357
  • 5
  • 37
  • 53
1
vote
0 answers

How can I ignore irrelevant mergeinfo changes when scanning a log?

Recently my scan for relevant changes has been including mergeinfo changes that are not relevant and I would like to ignore these revisions where the changes in the log item do not alter any items in the folder which I am iterating. I can iterate…
user968245
  • 11
  • 2
1
vote
0 answers

How to pass my domain credentials to SVN server using SharpSVN

It may be a possibly duplicate question and may relate to SVN Repository Authentication using SharpSVN but I have tried the solution present in the above mentioned post but still I am getting 401 (Authorization Required) from my svn server. Can…
Deepansh Gupta
  • 593
  • 4
  • 9
1
vote
1 answer

SharpSVN connection rate limit to localhost?

We use SharpSVN to programmatically access SVN repositories. Now we have the problem that the access to local repositories via svn:// or http:// urls is very slow - every access needs at least one second, and our app needs to fetch a bunch of…
MarkusSchaber
  • 757
  • 1
  • 8
  • 16
1
vote
1 answer

sharpsvn commit issue "Unable to connect to a repository at URL 'file///C:/Testing/repo'"

I did create a local repository on my pc. Then I did a svn checkout to access this repository and I can add and commit the files with tortoisesvn. The repo is 'file///C:/Testing/repo' and the local checkout is "C:\Testing\svn\repo" I tried to add…
1
vote
1 answer

Could not load file or assembly 'SharpSvn-DB44-20-Win32.dll'

I'm using ASP.NET MVC3, StructureMap and SharpSvn. Here's the code that I'm using: public class SvnFileReader : ISvnFileReader { private readonly string _svnAddress; public SvnFileReader(string svnAddress) { _svnAddress =…
šljaker
  • 7,294
  • 14
  • 46
  • 80
1
vote
1 answer

SVN credentials

I have an issue where I keep getting an error No provider registered for 'svn.ssl.server' credentials I am using the same code that works on another SVN server, but a new server I setup can't seem to connect even though I can connect no problem…
1
vote
1 answer

sharpsvn - get list of all projects on subversion server

I need to list all projects on a subversion server from sharpsvn. This is equivalent to command: wget http://me:@subversion-server/root/ I cannot find the function in sharpsvn api. Does the function exist? Update: Sorry for not being clean. I will…
danatel
  • 4,844
  • 11
  • 48
  • 62
1
vote
1 answer

SharpSVN - Is there a way to get a current working copy directly to a memory stream?

I am using the latest version of SharpSVN. I would like to retrieve the latest working copy of a repository, but I would like to load it into a memory stream instead of saving it to disk. Is there a way to do this? Thanks.
Sako73
  • 9,957
  • 13
  • 57
  • 75
1
vote
1 answer

How to get the current repository?

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"); client.GetInfo(repos, out info); but I don't know what the URI is for the directory as it was…
Justin808
  • 20,859
  • 46
  • 160
  • 265
1
vote
1 answer

sharpsvn search repository commits

Using sharpsvn I want to search all of the comments on the commited files in our svn server for specific strings. but i cannot get this to work. I have tried the following but it does not like my target path. Error: Revision type requires a working…
Andrew Day
  • 11
  • 2
1
vote
3 answers

SharpSvn: cannot get information about SVN working copy on network share

I'm trying to get repository URL of working copy of SVN repository, which is located on network share: \\host\D\directory\ Following code is being executed: SvnClient svnClient = new SharpSvn.SvnClient(); SvnInfoEventArgs…
Kytutr
  • 26
  • 1
  • 5
1
vote
1 answer

How can I ignore whitespace changes when doing a SharpSvn merge?

I have the following code and would like to do a merge while ignoring whitespace changes: string folder2 = @"c:\folder"; Uri uri2 = new Uri("http://repo/branch"); ICollection mergeRevisions = new…
Andrew Arthur
  • 1,563
  • 2
  • 11
  • 17