Tagged Questions
1
vote
0answers
12 views
Chained builds using Jenkins and SVN?
I'm attempting to set up a build hierarchy in Jenkins of this type:
A tools DLL gets built due to code changes checked in to SVN.
If that build succeeds, the DLL is then copied to the references ...
0
votes
0answers
11 views
Is there any lib like pysvn in C#
I want to Up/Commit/Diff SVN in my application. The pysvn can do it, but my application write by C#. So I google it, but no any lib like pysvn in C#. How can I Up/Commit/Diff SVN in C#
2
votes
3answers
320 views
Retrieving last commit ID / revision number from a deployed application
I would like to have a function returning the last revision / commit ID of the source from which the deployed application / library was built.
I have been using the __DATE__ and __TIME__ macros in ...
0
votes
1answer
32 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
71 views
SVN and Jenkins for C# on same machine (ubuntu)
i am facing the following problem. I would like to implement the approach of CI with jenkins into my Project. The project is written in C#.
I have an ubuntu server v. 12.0.4.2 LTS. The idea is to run ...
2
votes
3answers
756 views
AnkhSVN for Subversion does not show Source-Code-Control related icons
We moved our projects (SQL Server and .Net) from Visual-Source-Safe to SubVersion.
We have installed Tortoise SVN and AnkhSVN clients on the location machine.
When I lock a file, the icon in Windows ...
0
votes
0answers
37 views
csproj reference has relative hint path that takes it out of source control
Our group solution has a csproj file with the following:
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Web.Administration, Version=7.0.0.0, ...
0
votes
1answer
41 views
Process to export svn files hangs with Process.Start()
I try to execute a .cmd to export files from SVN, it works manually and in my local machine(WS2003 SP2 IIS Identiy: Local System), but it fails in the execution server (same configuration).
The ...
0
votes
1answer
39 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 ...
4
votes
2answers
4k 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 ...
0
votes
1answer
28 views
Checking if SVN was updated C#
I'm trying to check if the svn was updated, and I don't wish to use SharpSVN.
I'm trying to use the Process class.
In batch, this is what I would normally do: svn st -u <svn path> | find "*"
...
1
vote
3answers
278 views
Failed importing code from SVN to GIT - SVN trunk is empty
I try to clone my SVN (assembla) repository to GIT one (bitbucket)
I used bitbucket wizard importing code from SVN to GIT online
But I got the following error:
23:58:39 svn import for: ...
0
votes
1answer
73 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:
...
-4
votes
2answers
54 views
Checkout a working copy of a SQL Server database using C#
I think the title speaks for itself. I need to checkout a working copy of a database on SQL Server, to my own computer, using C#. Pretty much like SVN. In this copy I must be able to ...
1
vote
0answers
25 views
C# svnadmin dump, strange behavior
i've written a c# application to check if a repository should be dumper or not (using some paramenters)
I've compiled this application on my computer (Winsows 8) where it works as intended.
When i ...