tags:

views:

9

answers:

0

I am trying to checkout files from cvs repository using NAnt. The repository is in my own machine in D:\NantTest. I am using the following target.

<target name="cvscheckout">
    <echo message="checkout started" /> 
    <cvs-checkout verbose = "true"
        destination="D:\Subrat\Projects\WPF\WpfApplicationNAntTest" 
        cvsroot=":local:D:/NantTestt" 
        password="" 
        module="WpfNantTest" />
    <echo message="checkout succedded" />   
</target>

But it is not working.