3
votes
3answers
261 views
How to check if file is under source control in SharpSvn?
Hi I use C# and SharpSvn library. I would like to check if file is under source control before adding it with SvnClient.Add. When I do it on file that already is under SVN than I get error : "is …
3
votes
3answers
848 views
SharpSvn question
I was hoping to automate some tasks related to SubVersion, so I got SharpSvn. Unfortunately I cant find much documentation for it.
I want to be able to view the changes after a user commits a new …
2
votes
3answers
129 views
Using the current HTTP request identity as the default credentials for SharpSVN
I’m trying to call RemoteCreateDirectories in SharpSVN through a web app and want the credentials to be that of the logged on user. Can this be done implicitly or is the username and password …
2
votes
2answers
94 views
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 …
2
votes
1answer
157 views
SharpSVN Path Problem..
Having a problem with SharpSVN (1.5 and 1.6) checking out code. (Note, I also have Tortoise 1.5 installed on my machine)
This same code has worked previously, so I don't know why things might have …
2
votes
2answers
213 views
Using SharpSvn to retrieve log entries within a date range
I'm using SharpSvn to interact with my svn repository via C# code. I am using this code to retrieve svn log entries:
Collection<SvnLogEventArgs> logitems;
var uri = new …
2
votes
1answer
274 views
Add file using SharpSVN
Hi,
I would like to add all unversioned files under a directory to SVN using SharpSVN.
I tried regular svn commands on the command line first:
C:\temp\CheckoutDir> svn status -v
I see all …
2
votes
1answer
161 views
Implement a faster svn cat with SvnClient
I'm looking for a faster way to retrieve files from SVN than svn cat in .NET.
Currently I'm running a svn cat process for each revision, but it's extremely slow.
Then I've tried with SvnClient:
…
2
votes
1answer
652 views
How to set author of SVN commit using SharpSVN library in c#
I use SharpSvn library from CollabNET. I would like to set revision author while commiting, but I always end up with a commit with my Windows user name.
This does not work for me:
…
2
votes
1answer
250 views
Accessing Visual SVN from ASP.Net using sharpsvn API
has any one tried to access VisualSVN repositories through ASP.Net using SharpSVN API ? if yes, what were the challenges ?
2
votes
3answers
278 views
Getting an error while attempting to checkout with SharpSVN
While attempting to use the following code, I am receiving the following error : Already working for different url, error code 155000.
string targetPath = @"C:\Documents and Settings\Admin\My …
1
vote
1answer
26 views
Accessing svn:mergeinfo via SharpSvn
I'm using SharpSvn to get the log for a repository. For each log entry I can access useful info about the files that have changed (via SvnLogEventArgs.ChangedPaths), but I can't figure out how to get …
1
vote
1answer
27 views
Can I use a text file to set svn:extertnals in sharpSVN’s setproperty() method ?
My aim is to set more than one externals (links) to a project so that anybody checking out the project should get all the externals at the same time. This can be achieved in SVN.EXE as - propset …
1
vote
1answer
176 views
SVN - How do I intercept and alter or add files on pre-commit?
First of all I'm not sure this is even possible, however I need to know how it can be done and if not why not?
I want to create a C# application that runs at the appropriate time during the commit …
1
vote
1answer
162 views
SharpSvn CreateDirectories
Hi all
I'm trying to create a website that will automate project setup.
I want to create SVN directories using SharpSVN.
Here's what I tried:
SvnClient svnClient = new SvnClient();
…
