NAnt を使用して SVN の追加を自動化したい。特定のディレクトリにあるすべての新しいファイルを SVN に追加したいと考えています。NAnt スクリプトは add コマンドを正常に実行しますが、Tortoise SVN 追加ダイアログが表示されます。これは、CruiseControl を実行しているビルド サーバーで実行されるため、受け入れられません。ビルド サーバーは Windows Server 2003 を実行しています。
何か案は?
<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>