this is an extract - we use visualsvn - it works out of the box, the
exe used is svn.exe, visual svn need no special handling
<cb:define name="logincredentials">
<username>ourbuildserveruser</username>
<password>ithinkyougettheidea</password>
</cb:define>
<sourcecontrol type="svn">
<autoGetSource>true</autoGetSource>
<executable>$(SVNexePath)</executable>
<trunkUrl>https://ourlocalvisualsvnserver:8443/svn/main/</
trunkUrl>
<cb:logincredentials/>
<cleanUp>true</cleanUp>
<workingDirectory>ourworkingfolder/project</workingDirectory>
</sourcecontrol >
i can´t really show you more since most of our projects look like
this:
<cb:scope myProjectType="_longrunning">
<project name="$(MyProject)" queue="$(MyProject)"
queuePriority="2">
<category>$(MyCategory)</category>
<cb:ContinousTrigger/>
<cb:SubversionBlock/>
<tasks>
<cb:debugBuild/>
<nunit path="$(nunitPath)">
<cb:nunitAssemblies/>
<cb:nunitlongrunning/>
</nunit>
</tasks>
<publishers>
<cb:StandardLogger/>
</publishers>
</project>
</cb:scope>
//ö
On Nov 20, 9:51 pm, Ruben Willems <[email protected]> wrote:
> Hi
>
> just use the svn source control block, that should
> work.http://confluence.public.thoughtworks.org/display/CCNET/Subversion+So...
>
> with kind regards
> Ruben Willems
>
> On Fri, Nov 19, 2010 at 10:03 PM, csharper <[email protected]> wrote:
> > Hi, I am a .net developer and I use VisualSVN free edition as my
> > source control. I really would love to set up continuous integration
> > using CruiseControl.NET. I've seen examples setting up CruiseControl
> > with Visual Source Safe. But I cannot find an example of
> > CruiseControl.NET with VisualSVN. I access my VisualSVN server
> > through URLhttps://mydomain.com:8443/svn/MyProject/.
>
> > How do I go about configure the ccnet.config file under C:\Program
> > Files (x86)\CruiseControl.NET\server to create a successful continuous
> > integration? Do I need NAnt in the equation?
>
> > Please give me a hint to get started or a pointer to a good tutorial.
> > Thank you.