sharpsvn Questions
1
Solved
SvnUpdateArgs asdf = new SvnUpdateArgs();
asdf.AllowObstructions = false;
asdf.Depth = SvnDepth.Infinity;
asdf.IgnoreExternals = false;
asdf.UpdateParents = true;
asdf.Revision = SvnRevision....
Primitive asked 7/11, 2013 at 18:0
4
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
Maddocks asked 23/6, 2010 at 6:34
3
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 th...
Alltime asked 12/3, 2013 at 2:58
3
I'm trying to get all branches of repository by using SharpSvn but I can not find any method can do it.
Is it possible to get all branches by using SharpSvn?
3
Say i have a svn repository at https://www.mysvn.com/svn/. How can i use SharpSVN to figure out whether the remote folder https://www.mysvn.com/svn/a/b/c exists on the server?
I need to do it an a...
3
Solved
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 subdir...
6
Solved
How to get latest revision number using SharpSVN?
2
Solved
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 h...
Wallack asked 25/7, 2012 at 14:38
1
Solved
I use SharpSVN and I add a folder to the subversion. Then I try to commit it and I get this exception:
SharpSvn.SvnRepositoryIOException: OPTIONS of 'https://sth.com/svn/blah/Documents': Server ce...
Hipparch asked 20/6, 2013 at 10:41
2
Solved
In SharpSvn's documentation I found (here), the return value of SvnClient.getinfo (boolean type) is missing. Can anyone help with that?
Thanks.
3
Solved
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, Version=1...
1
Solved
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()) {
4...
1
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 correct...
Trimetallic asked 8/11, 2012 at 23:8
2
I'm trying to get a list of changed files from SharpSVN. I can get the data I need on the command line like this:
svn diff -r <startrev>:HEAD --summarize --xml
Can somebody point me to the...
3
Solved
When trying to add SharpSVN to my C# project, compiling with SharpSVN related calls gives me this error:
FileLoadException was Unhandled
Mixed mode assembly is built against version 'v2.0.50727' o...
Haydon asked 8/6, 2010 at 17:40
0
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 extern...
Inarticulate asked 29/8, 2012 at 15:53
2
Solved
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();
svnClient.Write(pa...
1
Solved
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!!
3
Solved
I'm trying to get SharpSVN to work with a VB.NET project I'm working on in VS2010. I've added SharpSVN.dll to my project references but the following error appears when I try to load the site:
Cou...
1
Solved
I am trying to build a simple repository browser into a web application and have been looking into using SharpSvn to help.
I can find all the usual physical commands, like update, commit, that wou...
2
Solved
I am using the Export() member function to obtain files at specific revisions which is working but for some reason in other cases it is not. For all the modified paths it seems to be working howeve...
2
Solved
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 ...
4
Can somebody please suggest a good place to look for source code examples of how to use the SharpSvn library?
1
Solved
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
Solved
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 al...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.