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

learn more… | top users | synonyms

0
votes
0answers
5 views

How to use a proxy in the SharpSVN client

i use SharpSVN in my app to check out a repository from a http server. I'm behind a firewall and need to use a proxy server to connect. Can i set this and when, where is it? Thanks. Andreas
0
votes
1answer
25 views

change an commited svn revision with sharpsvn

I have made an program that works can read out TortoiseSVN commits and shows it into listbox and a textbox. Now I have to do this, when you press publish button then for each selected commit the ...
2
votes
2answers
28 views

sharpsvn logmessage edit sharpsvn?

use the sharpsvn. The specific revision logmessage want to change. It is implemented like '[show log] -[edit logmessage]' of svn. I am awkward in English. so, to help you understand. my code is ...
0
votes
1answer
38 views

Check updates in specific directory in svn c#

I'm trying to check if a certain svn subdirectory was updated, and if so, update my entire working directory. Here is what I do: SvnClient svnClient = new SvnClient(); SvnWorkingCopyClient ...
0
votes
1answer
23 views

Using the .Switch command with sharpSvn not a valid path c#

I m using the sharpsvn library and I want to do a switch but it keeps giving me following error: "This argument is not a valid path. A Uri was specified." I checked if the path was oke and the ...
0
votes
1answer
52 views

How to check if files on svn are the same with the local files C#(sharpsvn)

I'm using the SharpSvn library. I want to check if the files that I have locally are the same with those on the subversion server. Does anyone know how I do this? Currently this is what I'm trying to ...
2
votes
2answers
63 views

In SharpSvn, what's SvnClient.getinfo return value?

In SharpSvn's documentation I found (here), the return value of SvnClient.getinfo (boolean type) is missing. Can anyone help with that? Thanks.
0
votes
1answer
27 views

SvnSharp's SvnLookClient changed item actions explanation

The property Action of an SvnChangedEventArgs is of type SvnChangeAction enum, but I can't find what each enum value means. The possible values are None, Add, Delete, Modify and Replace. I tested and ...
1
vote
1answer
242 views

Could not load file or assembly 'SharpSvn' or one of its dependencies. An attempt was made to load a program with an incorrect format

I just downloaded the 64bit version of the SharpSVN here's the link! When I run my application, error message displayed. I have searched the net on how to fix this issue but I'm failed. I tried the ...
1
vote
1answer
71 views

SharpSVN Sync Command C#

I am trying to automate a svnsync init and svnsync sync process via sharpsvn. I am unable to find any documentation regarding svnsync on the provided docs. So far I am able to successfully create a ...
1
vote
1answer
55 views

SharpSvn: Why was update of subfolder from Empty Depth Checkout skipped?

I'm having some trouble cherrypicking some folders out of a repo using SharpSvn (from C#). I did this: client.CheckOut( uri, dir, new SvnCheckOutArgs() { Depth = SvnDepth.Empty } ); foreach( var ...
1
vote
1answer
49 views

Dealing with Subversion (TortoiseSVN), From Where to start?

I want to develop a website in (ASP+C#) which deals with version control. In that application my scenario is as follow: A user signing in to application and editing a post, the website may display to ...
0
votes
1answer
70 views

Can't determine the user's config path (when trying to get the revision number)

I am using SharpSVN dll with my Visual Studio 2010 to get the latest revision number so I can version my project using this number. I tried this piece of code below but it gives me error saying: ...
6
votes
3answers
265 views

Can't read root

So I'm using SharpSVN(SharpSvn.1.7-x86 1.7008.2243) and I keep running into a problem. Every time I try to use the SvnWorkingCopyClient on a repo that's at the root of a drive( for example say I have ...
0
votes
2answers
104 views

How to get file size with SharpSvn?

I'm working on module which displays repository content on a web page, using SharpSvn (C#). In order the get the list of the url's content I'm using: (client.GetList(new Uri(url), out contents); ...
0
votes
0answers
115 views

SharpSVN GetLog for a specific file or folder (url) not working

I'm trying to get a list of all the changes a specific file has. Same as TortoiseSNV's 'show log', or Visual Studios's 'view history'. The following code works well for repository, that means, it ...
1
vote
1answer
433 views

SVN Repository Authentication with SharpSVN - Credentials not working

I have the following code in C#: 1. public static void Main(string[] args) { 2. Uri repository = new Uri("https://svnserver:port/svn/Src/trunk"); 3. using (SvnClient client = new SvnClient()) { ...
0
votes
1answer
68 views

how can i check a branch exists in svn server or not using SharpSVN API in C#

i m trying to cheack a branch name exists in Svn server or not in svn server using SharpSVN API in c#.net. can i do it? or is there other way to do it in C# except thr command prompt. i have tried thr ...
0
votes
1answer
45 views

How to commit files with active handles using SharpSvn?

My C# application uses SharpSVN to synchronize local (working copies) and remote (repositories) files. Since I want to synchronize these files while they are processes by other applications, it can be ...
1
vote
1answer
140 views

SharpSvn SvnClient.GetLog throws AccessViolationException

My application is crashing with the following unhandled exception: System.AccessViolationException was unhandled HResult=-2147467261 Message=Attempted to read or write protected memory. This is ...
1
vote
1answer
125 views

How do I get the top revision number for a branch from SVN repository?

I'm using this code snippet for finding top revision number from svn but my page is not responding. It keeps on searching only using (SvnClient client = new SvnClient()) { SvnInfoEventArgs info; ...
4
votes
1answer
190 views

SharpSVN Working Copy Locked (cleanup doesn't clean)

I am using SharpSVN as part of a server-pull solution. The program reads a revision from a config file, if it doesn't match, it updates to the specified revision. This seems to be working ...
1
vote
1answer
111 views

How to wire up SharpSvn.SvnUpdateResult in powershell

Trying to automate my morning ritual of updating multiple subversion working copies by using a powershell script. The svn update is working fine, but it would nice to hook into the SvnUpdateResult to ...
0
votes
1answer
511 views

Mixed mode assembly is built against version ‘v2.0.50727′ C# Enterprise architect add-in

I am building an Enterprise Architect add-in using C#. I have to interact with SVN Repository. I am using VS2010 and SharpSVN as library to interact with SVN Repository. my Add-in work fine when I ...
1
vote
1answer
124 views

SharpSvn GetInfo LastChangeRevision is wrong

I have the following code (testing in a .NET console application): var client = new SvnClient(); var previousRevisionUri = new ...
1
vote
1answer
82 views

SVNsharp how to get specified page?

How to get specified page of svn log using SvnClient class in SvnSharp; For example i have secuence of commits with revisions [407, 402, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 364] I need ...
1
vote
1answer
355 views

Setting commit author in SharpSvn .NET library throws SvnRepisitoryIOException exception

If you have experience with using the SharpSvn .NET library, I could use your expertise in setting the commit author during an SVN commit. I've tried a few things, but they all throw an ...
0
votes
1answer
190 views

How to checkout a specific file in repository using sharpsvn API?

How to checkout a specific or a single file in repository using SharpSvn API????
0
votes
1answer
368 views

Check local directory is a working copy before updating from svn

I am working on extracting svn repository using c# programming. I have added sharpsvn dll to my project and wrote following code string localFolder= ...
0
votes
1answer
157 views

SharpSVN: Interface to Repo Browser

I need to open Repo Browser when the user clicks a button and after the user makes a selection using the Repo Browser, it should return the path selected, similar to open file dialog boxes etc.
0
votes
1answer
129 views

SharpSVN: Check if the checkout URI is valid or not

I am using sharpSVN to programatically perform tasks such as Checkingout and committing. The user enters the URI to checkout and presses Checkout button. A lot of times user enters invalid URI and ...
3
votes
0answers
197 views

How to correctly retrieve SVN-Info from relative URI in SVN-external using SharpSvn

I have a Powershell Cmdlet, which creates SVN-Branches from the trunk via SharpSvn. The repository contains externals with and without revision/pegRevision explicitly set. In the branch, all externals ...
0
votes
1answer
239 views

SvnSystemException: Can't open file '…\format': Access Denied

im using sharpSvn to get the last version in SVN repository, from own web application. This is how i get last version: (C#) using (SvnClient client = new SvnClient()) { client.CheckOut(new ...
1
vote
1answer
239 views

Branch/Tag using SharpSvn C#

I have been trying to Tag a particular folder (on my PC) to an SVN location using SvnClient. I came to know that Branch / Tag is simply a copy operation in Subversion. Is it true that copy to a ...
0
votes
1answer
219 views

How to delete a repository in subversion edge?

Seems like the Subversion Edge Restful Api isn't able to (completely) delete a repository - only to create one. Also, sharpSvn seems to work only on repositorly-level and lower, which means, no ...
0
votes
0answers
73 views

Commit a folder recursively in SharpSVN

I am trying to Update folder name which located in Working copy folder. (e.g. Folder1 is my Working Copy Folder). Also this folders includes some files. The question is, i want to change Sub3 ...
0
votes
1answer
430 views

SharpSVN Cannot Commit ( … is not a working copy )

I am newbie in SharpSVN. I found many examples from Internet related with SharpSVN. Also i did some success cases like Checkout But the problem is, I can not call commit and Add functions: The ...
1
vote
2answers
173 views

SharpSvn GetLog ChangedPaths NodeKind is always Unknown

Code using (var svnClient = new SvnClient()) { Collection<SvnLogEventArgs> svnLogEntries; svnClient.GetLog(new Uri("https://DbDiff.svn.codeplex.com/svn"), out svnLogEntries); ...
0
votes
2answers
368 views

Is there a directory bug in SharpSVN SvnClient.Add()?

I'm trying to use SharpSVN to automate Subversion check-ins, but I'm having a problem with the SvnClient.Add() method and I believe it may be a bug. Essentially, .Add() isn't seeing the path as a ...
1
vote
1answer
224 views

SharpSvn GetFileVersions and GetContentStream throws InvalidOperationException

I'm trying to use SharpSvn to get the contents of a file at a particular revision. I have the following code: var svnClient = new SvnClient(); var revisionInfo = new SvnFileVersionsArgs { ...
0
votes
1answer
197 views

SharpSvn GetFileVersions revision range, only one file version returned

I'm trying to use SharpSvn to read the contents of two revisions of a file. When I run the following code the fileVersions collection only contains one item.. var svnClient = new SvnClient(); var ...
0
votes
1answer
146 views

How do I use a custom Certificate Authority in SharpSvn without installing the certificate

I am trying to access a subversion repository using SharpSvn. The repository is only available via https and the machine uses its own private certificate authority (don't worry about the security ...
0
votes
1answer
112 views

SharpSVN commit multiple file so slow

I am using SharpSVN to commit a Zend framework source to my GoogleCode host But the progress of commit take too long time, about 1 hour while the source contain nearly 2400 files. I tested with ...
1
vote
1answer
137 views

Commit a whole folder with modified files in it with SharpSvn.

I am using SharpSvn in my C# project. I am having a folder with some text files in it and another folders with subfolders in it. I am adding the folder under version control and commit it. So far, so ...
1
vote
1answer
188 views

SharpSvn 64-bit issue

I have installed Tortoise SVN (64bit) on a Windows Server 2008 (64bit) machine and on this machine, I have Visual Studio 2010 installed. I am using VS2010 to build a web application, and in this ...
1
vote
3answers
359 views

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 ...
3
votes
2answers
212 views

Reading the contents of a file in sharpsvn

I'm trying to read the contents of a .csproj file using sharpsvn, but I seem to be always getting an empty file back. Here is my code: MemoryStream myOut = new MemoryStream(); ...
0
votes
1answer
2k views

Populate treeview from list in C#

I've made some researches and I found some topic close to my problem, but none of them solved it. populate treeview from a list of path ...
4
votes
2answers
376 views

How to check if the subversion URL is file or a directory using sharpsvn

First things first - I am sorry if you think this question is utterly stupid. I am working on an application wherein the user can enter a SVN URL. It can either be a Directory or a file. I am using ...
0
votes
0answers
342 views

sharpsvn how to monitor upload progress on commit

i want to monitor the byte-rate of the transfer while commit action runs i have used the SvnClient.Progress event but this event triger every millisecond and not every second the event argument of ...

1 2 3 4