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
0
votes
1 answer

Subversion / SharpSvn Transactions

I am trying to synchronize a workflow where some actions take place across a couple of systems. One of those systems is Subversion, using SharpSvn, another is SqlServer and yet others are systems that support distributed transactions. Is there a way…
cmdematos
  • 883
  • 4
  • 12
  • 24
0
votes
1 answer

Missing External Function in IEFrame.DLL and SHLWAPI.DLL when referencing SharpSVN

Note: This section contains incorrect information - skip to the update below for details. This section left in for historical purposes. I have a WPF project in Visual Studio 2008 targeting .NET 3.5 that references SharpSVN. When I make a call into…
PatrickV
  • 2,057
  • 23
  • 30
0
votes
3 answers

SharpSvn Local File Rename Commit

I'm using SharpSVN to do an "Commit" after a file rename in my local copy instead of doing Svn.Delete(Src) -> Svn.Add(Dst). i want to use a different method To keep tracing revision info of my file The rename function move the info in Server-Side…
foxdanni
  • 199
  • 1
  • 19
0
votes
1 answer

SharpSVN SvnUI.Bind to WPF window

I am guessing there is no way to Bind call SharpSVN in a WPF application? I was just following there tutorial, and I found out that you can't bind becuase this isn't a Windows.Forms application. Quite the bummer. I was really cooking there for a…
SoftwareSavant
  • 9,467
  • 27
  • 121
  • 195
0
votes
1 answer

Local directory parameter in SharpSVN Commit

Do you use the local path when attempting to commit something in SharpSVN? I am not understanding how this library works with an online subversion repository. Very confused. any help would be great. hear is how I attempt to commit... using…
SoftwareSavant
  • 9,467
  • 27
  • 121
  • 195
0
votes
1 answer

How to read a log from a SVN path with spaces with SharpSVN?

I have a path in a repo with spaces like this: https://mysvnserver.local/svn/branches/2.7 Feature XYZ Now I want to read the log from this path using SharpSvn. I have this code: var client = new SvnClient(); client.Authentication.DefaultCredentials…
Sebastian P.R. Gingter
  • 5,955
  • 3
  • 31
  • 73
0
votes
0 answers

Get history of a single file using SharpSvn

Bonjour, I need to display the history of a single file across all revisions. My current approach is to use SvnClient.Log with revisions from HEAD to 1. I first save the relative Path of the file and then, for each revision, I search in ChangedPaths…
0
votes
0 answers

When SVN Clean up command execute using C# SharpSVN

I am using SharpSVN C# for my application. Got working copy path locked " error for my working directory" don't know why. So on which condition cleanup command should execute in this C # code? Or how do I check if my working dir is locked or not ok?
Ankush
  • 17
  • 4
0
votes
1 answer

SharpSvn.SvnException: sqlite[S8]: attempt to write a readonly database

I got following error when I do ` svnclient.CleanUp(WorkDirPath);` SharpSvn.SvnException: sqlite[S8]: attempt to write a readonly database ---> SharpSvn.SvnException: Additional errors: ---> SharpSvn.SvnException: sqlite[S8]: attempt to write a…
Ankush
  • 17
  • 4
0
votes
1 answer

Cannot delete file using SharpSvn: {filepath} is not a working copy

I am unable to delete a file from SVN using SharpSvn. Here is my code: using (SvnClient client = new SvnClient()) { // snip... string filePath = "C:\\path\\to\\file.txt"; client.Delete(filePath, deleteArgs); } Here is the…
srk
  • 1,625
  • 1
  • 10
  • 26
0
votes
1 answer

how to fix commit unmodified files on SVN server using sharpsvn

In my .net application , I am using sharpsvn to upload files to sever and download file from server. Even user does not know we are using sharpsvn /svn server for upload/ download files, he just wanted to download and upload files from/on…
Ankush
  • 17
  • 4
0
votes
0 answers

SharpSVN doesn't want to use credentials

I am trying to make SharpSVN log in to a repository with stored credentials, but according to access logs it never actually offers any. I have the following bit in my code: internal static SvnClient SvnClient { get { if (_svnClient…
Haxton Fale
  • 564
  • 1
  • 4
  • 13
0
votes
0 answers

Worker Service C# sharpsvn error when commiting

I am currently trying to create a service that automatically adds and commits directories in a SVN repo. I have successfully created a worker service that checks if there are new files and add/commits them. The problem I am currently facing is the…
0
votes
2 answers

SharpSVN - How to get the previous revision?

I am trying to find an efficient way to get the previous revision of a file to do a text comparison using SharpSVN. using (SvnClient c = new SvnClient()) { c.Authentication.DefaultCredentials = new NetworkCredential( …
ISZ
  • 1
  • 1
  • 1
0
votes
1 answer

how to get conflicts in sharpsvn.merge()

I am trying to merge my code into a targetPath using sharpSvn. I am writing the following code: client.merge(targetPath,source_url,range) It works successfully when there is no conflict but the merge does not occur if there is a conflict in a…