Hi there, one other thing I should note the <cvs-password/> is not correct, it 
should be <cvs-pass/> 
(http://nant.sourceforge.net/nightly/latest/help/tasks/cvs-pass.html).  Sorry 
for the note below I think I used the wrong one as well.  This should also use 
the cvsroot attribute if you are executing it from a directory that does not 
have a CVS\Root folder. 

        -----Original Message----- 
        From: Srivathsan K [mailto:[EMAIL PROTECTED] 
        Sent: Thu 2/17/2005 11:24 AM 
        To: Clayton Harbour; Nant 
        Cc: 
        Subject: RE: [Nant-users] Can Some one bail me out? CVS Check out
        
        

        Hi,
        Really appreciate your feedback and this is what my build file looks 
like after you suggested changes
        
        <?xml version="1.0" encoding="utf-8" ?>
                <project name="autoGEm" build="clean">
                                <target name="Get latest" description="Pull the 
latest  from the CVS">
                                        <cvs-password password="xxxx"/>         
        
                                        <cvs-checkout
                                                usesharpcvslib="false"
                                                verbose="true"
                                                
destination="D:\NantBuilds\New\"                                                
                        cvsroot=":pserver:[EMAIL 
PROTECTED]:2401:/home/cvsrepo/NantTest"
                                                module="NantDemoProject" />
                                 </target>
                </project>
        
        I want the files under "New" folder. and here's the info that I get 
with -v on the commandline.
        
        Framework 'net-1.0' is invalid and has not been loaded : The 
'System.dll' assemb
        ly does not exist in framework assembly directory 
'C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705'.
        
        Framework 'net-2.0' is invalid and has not been loaded : Framework 
directory 'C:
        \WINDOWS\Microsoft.NET\Framework\v2.0.40607' does not exist.
        
        Framework 'mono-1.0' is invalid and has not been loaded : Registry Path 
Not Foun
        d! - key='SOFTWARE\Mono\';hive='Microsoft.Win32.RegistryHive[]';
        
        Framework 'mono-2.0' is invalid and has not been loaded : Registry Path 
Not Foun
        d! - key='SOFTWARE\Mono\';hive='Microsoft.Win32.RegistryHive[]';
        
        Framework 'sscli-1.0' is invalid and has not been loaded : Framework 
directory '
        C:\sscli\build\v1.x86fstchk.rotor' does not exist.
        
        Buildfile: file:///D:/NantBuilds/Test.build
        Base Directory: D:\NantBuilds.
        
        Thanks in advance.
        
        Srivats
        
        -----Original Message-----
        From: [EMAIL PROTECTED]
        [mailto:[EMAIL PROTECTED] Behalf Of Clayton
        Harbour
        Sent: Thursday, February 17, 2005 9:49 PM
        To: Srivathsan K; Nant
        Subject: RE: [Nant-users] Can Some one bail me out? CVS Check out
        
        
        Hi there, sorry I haven't had a chance to sort through my email for the 
past couple of days.  Could you try running the command in verbose mode (adding 
verbose="true" to the <cvs-checkout/> task or passing in -verbose on the 
commandline will do this) and send me the checkout string that you are working 
with and any other information that looks interesting.  If the file is large 
you can just send it to my account.
        
        A couple of more notes, the <cvs-password/> task should come before you 
do a checkout (this adds an entry to the .cvspass file in your home directory.  
Final note you could try with the attribute usesharpcvslib="false" and see if 
that corrects the issue.  If so please still send the full verbose output to 
me.  Thanks!
        
        Clayton
        
        
        
                -----Original Message-----
                From: Srivathsan K [mailto:[EMAIL PROTECTED]
                Sent: Wed 2/16/2005 1:07 AM
                To: Nant
                Cc:
                Subject: [Nant-users] Can Some one bail me out? CVS Check out
               
               
                Still Stuck here. Can some one bail me out?
        
                        -----Original Message-----
                        From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Behalf Of Richard Poole
                        Sent: Tuesday, February 15, 2005 5:16 PM
                        To: Nant
                        Subject: RE: [Nant-users] CVS Check out
                       
                       
                        We're on 1.11.16. Could be? Like I said... no trouble 
with the FreeBSD version of the CVS server, only the Linux (Red Hat) version. 
It's difficult to tell exactly what's causing the problem, but everything 
points at the CVS server.
        
          _____ 
        
                        From: Srivathsan K [mailto:[EMAIL PROTECTED]
                        Sent: 15 February 2005 11:40
                        To: Richard Poole; Nant
                        Subject: RE: [Nant-users] CVS Check out
                       
                       
                        Im on cvs-1.11.2-5
                        
                        Would that be a Issue?
        
                                -----Original Message-----
                                From: [EMAIL PROTECTED] [mailto:[EMAIL 
PROTECTED] Behalf Of Richard Poole
                                Sent: Tuesday, February 15, 2005 3:59 PM
                                To: 'Srivathsan K'; Nant
                                Subject: RE: [Nant-users] CVS Check out
                               
                               
                                I've had no end of trouble checking stuff out 
of CVS with NAnt but I think it's more to do with our CVS server (a very recent 
stable build running on Red Hat) than the CVS tasks. You may be in a similar 
boat. We have experimented with a FreeBSD CVS server and both the CVS tasks and 
SmartCVS (the CVS client we use) seem to work fine with that.
                                
                                I also doubt it helps having the cvs-password 
task after the cvs-checkout task, but I could be wrong.
                                
                                Cheers,
                                Richard.
        
          _____ 
        
                                From: Srivathsan K [mailto:[EMAIL PROTECTED]
                                Sent: 15 February 2005 10:17
                                To: Nant
                                Subject: [Nant-users] CVS Check out
                               
                               
                                Hi All,
                                
                                I have a windows C# net application in CVS 
Repo. I need to pull all files related to this project on to a Folder which I 
created say for e.g. d:\NantBuilds.
                                
                                Here's my build file. Though I get successfull 
build I dont see the folder for the Project created under the Directory 
d:\NantBuilds. What am I doing wrong?
                                
                                <?xml version="1.0" encoding="utf-8" ?>
                                <project name="autoGEm" build="clean">
                                <target name="Get latest" description="Pull the 
latest from the CVS">
                                 <cvs-checkout destination="D:\NantBuilds" 
cvsroot="pserver:[EMAIL PROTECTED]:2401:/home/cvsrepo/NantTest" 
module="NantDemoProject" />
                                 <cvs-password password="xxxxxx"/>
                                </target>
                                </project>
                               
                                Thanks in Advance
                                
                                Srivats
                                
                                -----------------------------
                                If you're trying to achieve, there will be 
roadblocks. I've had them; everybody has had them. But obstacles don't have to 
stop you. If you run into a wall, don't turn around and give up. Figure out how 
to climb it, go through it, or work around it. -- Michael Jordan 
<http://www.brainyquote.com/quotes/quotes/m/michaeljor165967.html>
                                
        
        
        
                                DISCLAIMER: The information contained in this 
e-mail is confidential and may be privileged. It is intended for the addressee 
only. If you are not the intended recipient, please delete this e-mail 
immediately. The contents of this email must not be disclosed or copied without 
the sender's consent. We cannot accept any responsibility for viruses, so 
please scan all attachments. The statements and opinions expressed in this 
message are those of the author and do not necessarily reflect those of the 
company. The company does not take any responsibility for the views of the 
author.
        
        
        
        
                        DISCLAIMER: The information contained in this e-mail is 
confidential and may be privileged. It is intended for the addressee only. If 
you are not the intended recipient, please delete this e-mail immediately. The 
contents of this email must not be disclosed or copied without the sender's 
consent. We cannot accept any responsibility for viruses, so please scan all 
attachments. The statements and opinions expressed in this message are those of 
the author and do not necessarily reflect those of the company. The company 
does not take any responsibility for the views of the author.
        
        
        HWj)?yNLvyvzjwvxv!3??jj[z?'?Xz?*J?v)ri?^rCzj)    ?z?qz?X?~zwX??
        
        

Reply via email to