Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
3k views

How to get latest revision number from SharpSVN?

How to get latest revision number using SharpSVN?
6
votes
2answers
2k 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 ...
5
votes
2answers
1k views

SharpSVN Example Program Crashes

I downloaded the SharpSVN example they give to try and test it out but I get this error when I try and run it. System.BadImageFormatException {"Could not load file or assembly 'SharpSvn, ...
5
votes
3answers
3k views

How can I view the changes made after a revision is committed and parse it for comments?

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 ...
4
votes
1answer
96 views

Using the SharpSVN api are there any methods available to get the number of lines contained in a file at a Revision without Exporting it?

I was just wondering if I missed anything inside the documentation that would allow me to get the number of lines contained in a file at a certain revision (or even number of lines changed from a ...
4
votes
3answers
1k views

How to add .dll reference to ironpython VS2010 project?

I have a sharpsvn .net library i want to use in ironpython project. Library is shipped as a .ney .dll file. For C# projects i just add this file to project "Reference" section and after that i can use ...
4
votes
2answers
881 views

SVN Repository Authentication using SharpSVN

Can any one tell me how to authenticate users(SVN users) for a repository using SharpSVN Library. That repository should only be committed by those users. Thanks
4
votes
2answers
585 views

How can I get started with SharpSVN?

Are there any good resources and sites related to developing with SharpSVN and normal SVN/VisSVN? I've so far only come across a few samples that deal more with JIRA.
4
votes
2answers
615 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 ...
4
votes
3answers
2k 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
2answers
231 views

Commit file in SVN without working copy using SVN uri path

I'm new to SharpSVN, i have a aspx page in which i need to display a file content from SVN, change the content and commit the file in SVN from memorystream without working copy. I am able to get the ...
3
votes
4answers
3k views

SharpSvn and C# source code samples

Can somebody please suggest a good place to look for source code examples of how to use the SharpSvn library?
3
votes
1answer
596 views

How do I use SharpSVN to programatically “add to ignore list” for a folder

How do I use SharpSVN to programatically to add a folder to the ignore list? EDIT: Attempted: Here's what I've tried svnClient.GetProperty(new SvnUriTarget("svn://svn.foo.com/" + DatabaseName + ...
3
votes
3answers
221 views

How can I use SharpSVN in my own Mono (c#) project?

I would like to use the SharpSVN library to access SVN API, how can I access the SharpSVN namespace from my code? I downloaded the library, it doesn't seem to be code files, but some DLLs, some ...
3
votes
5answers
4k views

“Could not load file or assembly”/ “or one of its dependencies. The module was expected to contain an assembly manifest.”

I have a c# application which uses SharpSVN dll and NServicebus dll,it compile fine but when it is executing(in the time of initialize the bus) it throw the following error Could not load file or ...
3
votes
3answers
709 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 ...
3
votes
1answer
733 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 ...
3
votes
1answer
326 views

Does SharpSVN have an API to manage repository permissions

Does anyone know if there is any API exposed to manage repository permissions within SharpSVN? For example, programatically adding read and write permissions on a per repository basis. Alternatively, ...
3
votes
2answers
2k views

SharpSVN read ALL filenames

still a bit of a n00b on SharpSVN, I'm looking to get some simple code to open up an SVN repository, and read (at least) the full path of all files in a specific folder. Lets say that this folder is ...
3
votes
2answers
2k views

Add file using SharpSVN

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 subdirs, ...
3
votes
1answer
3k 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
2answers
66 views

SVN pre-commit-hook, is there a way to set the logmessage in the client window?

thank you for reading my question :) My goal is to modify this message before a commit is fired to the SVN-Server: I already have a start and pre-commit hook (C#), both of them are called when i ...
2
votes
1answer
355 views

Subversion connection with C # in Visual Studio 2010

I am using to connect the library with subversion Sharpsvn but I always get an error. The code is as follows: SvnClient client = new SvnClient(); string targetSource = ...
2
votes
1answer
405 views

SharpSvn: How can I see Update()'s result?

When using a simple command line svn client, if you run update you can see the changes that were made to your working copy. I've been trying to do so in SharpSvn (with C#, .Net 3.5), because I need ...
2
votes
1answer
300 views

Using sharpsvn with a local repository

I'm using sharpsvn dlls for .NET. I'm new to using subversion, and I'd like my repository to be on a filesystem and not on a remote server. Is it possible to use sharpsvn like this? I mean, have it ...
2
votes
2answers
429 views

Pre-commit hooks in C# with SharpSVN

I'm new to SharpSVN (and frankly--pretty new to C# as well). I've been trying get a simple pre-commit hook working which checks for a comment. (i.e. the commit fails in the absence of a comment) ...
2
votes
3answers
644 views

Using client.status in c# with sharpsvn

I want to use the status method but i dont understand how it works. Could someone show me an example of use please? EventHandler < SvnStatusEventArgs > statusHandler = new ...
2
votes
1answer
1k views

Get credentials from SharpSvn in C#

I am writing some C# code to perform multiple commits to SVN in one pass, much like the tool svnmucc. So far I've been using SharpSvn to do the rest of the necessary communication with SVN, so I'm ...
2
votes
1answer
672 views

How to read each revision of file using sharpsvn client using c#?

How to read each revision of file using sharpsvn client using c# ? Not the revision numbers but the content of the file in each revisions............
2
votes
1answer
699 views

How Can I read a file using sharpsvn client using c#

Is there any way to read a file using sharpsvn................
2
votes
1answer
608 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
783 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
745 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
28 views

subversion authentication with sharpsvn driver

I've set up my subversion server following the steps on : http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html The server is running on my localhost Configurations this is ...
1
vote
1answer
80 views

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 ...
1
vote
1answer
51 views

How can i create a branch in svn using SharpSVN

I am using SharpSVN to access my subversion repository using SharpSVN, i need a means to create a branch programatically using SharpSVN, how is this done!!
1
vote
0answers
95 views

SharpSVN Add local folder to repository location

I have an application, much like visual studio, in which you can create a solution out of source control, and then add it to souce control. I am using SharpSVN, and I cannont figure out how to add a ...
1
vote
1answer
46 views

sharpsvn: Creating a file remotely

Is there any way to create a file using sharpsvn remotely? I mean without using a file system.
1
vote
0answers
77 views

How to grant access to IIS user

I'm working on a web app that uses SharpSVN to checkout from a repo using svn+ssh. I have configured my ssh client correctly in my AppData config file by adding the path to Plink under the [tunnels] ...
1
vote
1answer
100 views

SharpSVN Error from MSBuild

I have the following code to get a list of changed files from Subversion using SharpSVN. The code works perfectly fine from unit tests but fails when run from MSBuild. Both unit test and MSBuild are ...
1
vote
1answer
177 views

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 ...
1
vote
1answer
153 views

SharpSVN and new/modified files in a revision

How is it possible to get list of all files (path/name only) which has been added or modified in a specific revision?
1
vote
1answer
329 views

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 ...
1
vote
1answer
116 views

Current Revision of the working directory in SharpSVN

How to get the current revision of the working directory? How to get a specific revision of a file from the repository's server?
1
vote
1answer
83 views

why do I need SharpSvn-DB44-20-win32 and SharpSvn-Sasl21-23-win32 as separate DLLs?

I'm using SharpSVN as part of a FluentMigrator branch (to add in source control calls to FM). When I build, I find that these two assemblies are required to get the code to compile: ...
1
vote
1answer
233 views

SharpSVN commit of multiple targets gives "-dir- is not a working copy' error

I have some files that I want to commit: C:\Dir1\Dir2\Data\dfile1.txt C:\Dir1\Dir2\Tools\tfile1.xml When I try to use svnClient.Commit(ICollection) for the above paths, I get 'Dir2 is not a working ...
1
vote
1answer
168 views

NullReferenceException in SharpSvn's SvnClient when the supplied DefaultCredentials returns null

I'm using SharpSvn in my project to communicate with SVN. For some SVN repostories, I already know the user name and password, while for others, I don't. Thus, I set the ...
1
vote
1answer
102 views

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 ...
1
vote
1answer
124 views

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 ...
1
vote
0answers
197 views

SharpSvn creating repository on a SVN server via http(s)

How do I create a repository on a Svn Apache server using SharpSvn library given a valid credential? i.e. creating a repository through http(s) instead of through filesystem. Thanks in advance, and ...

1 2 3