I want to automate the addition of SVN using NAnt. I want to add all new files in this directory to SVN. The NAnt script will successfully execute the add command, but will display the Add Tortoise SVN dialog box, which is not acceptable because it will run on the build server that CruiseControl is running on. The build server is running Windows Server 2003.
Any ideas?
<target name="addtest">
<exec program="c:\program files\tortoisesvn\bin\tortoiseproc.exe"
commandline="/command:add * --force /path:C:\svn\test /notempfile /closeonend:1"
basedir="C:\svn\test"
failonerror="false"/>
</target>
Dawes
source
share