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

SharpSVN Test Update

When calling Update() using the SharpSVN client, to update a file that also has local modifications, is there a way to "try" the update, and if it manages to auto merge without any conflicts then continue, else if there are going to be conflicts,…
pastillman
  • 1,104
  • 2
  • 16
  • 27
0
votes
1 answer

PowerShell SharpSvn Certificate issue?

I'm trying to do an svn checkout or update from SVN using PowerShell 2.0 and SharpSVN 1.7? When I run TortoiseSVN outside of Powershell - I get a certificate error, and have to accept with a click and then I am connected. In PowerShell using…
0
votes
1 answer

SharpSVN wrong assembly

"Unable to find assembly 'SharpSvn, Version=1.7002.1998.12257, Culture=neutral, PublicKeyToken=d729672594885a28'." http://sharpsvn.open.collab.net/docs/walkthrough.htm#svn_checkout doing everything just like in tutorial but have that problem
animekun
  • 1,789
  • 4
  • 28
  • 45
0
votes
1 answer

Sharpsvn diff method is not working

I am trying to implement diff method using sharpsvn. My code snippet as follows private void Diff(string pSourcePath) { Uri UriSCPath = new Uri(pstrSourcePath); SvnClient DPISVN_Clnt = new SvnClient(); …
Regi
  • 1
  • 1
0
votes
1 answer

SharpSVN with Windows Authentication in ASP.NET MVC 4 Web App

I am developing a intranet web application using ASP.NET MVC 4 that uses Windows-Authentication. I have integrated SharpSVN to do some SVN interactions and initially I was planning to use the username and the password from Windows Authentication, to…
Cosmin
  • 2,840
  • 5
  • 32
  • 50
0
votes
1 answer

Retrieve list of revision numbers and their associated revision comment

there are a lot of questions similar to mine, but none quite touch on what I'm trying to do. I am using SharpSVN to write a simple client which can get specific revisions of each file out of svn to a filepath of my choosing. I've got this working,…
Torrey Braman
  • 79
  • 1
  • 6
0
votes
1 answer

get the number of files in a repository

How can I get the number of files in a repository ? I've tried this C# code to get the tree of a repository : private TreeNode GetRepoTreeNodes(string currentrepourl, string currentnodepath, ref SvnClient sc) { List
user2311028
  • 1,531
  • 3
  • 13
  • 11
0
votes
1 answer

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 logmessage needs to add [PUBLISH]. How do I update an…
Kapein
  • 175
  • 13
0
votes
1 answer

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 paths are good any Idea whats wrong? var configpath2 =…
Trustos
  • 41
  • 3
  • 11
0
votes
1 answer

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 found that: Add is when a new item is added or…
Filipe Borges
  • 2,712
  • 20
  • 32
0
votes
3 answers

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); foreach (SvnListEventArgs item in contents) { …
shay__
  • 178
  • 1
  • 10
0
votes
1 answer

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 cmd but it's working in local PC but not after…
Piyush
  • 5,145
  • 16
  • 49
  • 71
0
votes
1 answer

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????
s.ukreddy
  • 312
  • 2
  • 6
0
votes
1 answer

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 deletion of repository also... So is there a way to…
shay__
  • 178
  • 1
  • 10
0
votes
1 answer

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 operation that i want to do is Selecting a file from my…
Erhan H.
  • 520
  • 4
  • 14
  • 24
1 2 3
20
21