Hi,
 
Could you please send the build file, or at least the entire tasks that
are giving you trouble, and some information about the version of nant
that you are using?  It just helps in debugging.  
 
I am going to guess a little bit in the meantime, it looks like the csc
target that you have is correct, assuming the rest looks like this
(content, not format of course):
 
<csc target="library" output="../bin/BANC.Infrastructure.Controller.dll"
doc="../bin/BANC.Infrastructure.Controller.xml" debug="false">
            <sources>
                        <includes name="**/*.cs" />
            </sources>
            <references>
                        <includes name="Your.dll">
            </references>
</csc>
 
Can you visually verify that the xml file is NOT being generated?  If it
is being generated you might want to check the ndoc task to make sure
you are specifying an assembly and not the xml filename:
 
        <ndoc>
            <assemblies basedir="${build.dir}/bin">
                <includes name="Your-assembly.dll"/>
            </assemblies>
            <documenters>
                <documenter name="MSDN">
                        ....
 
If that does not help please send the task.  Thanks,
 
 
Clayton
 
-----Original Message-----
From: Ballal, Pradeep(STP) [mailto:[EMAIL PROTECTED] 
Sent: July 17, 2003 12:07 AM
To: NAnt Users (E-mail)
Subject: [Nant-users] NAnt csc task does not generate the xml
documentation file...
 
Hi,
 
I am beginning to use NAnt, and the csc task does not generate the xml
documentaion file.
I have included the following attributes witht he csc task
 
<csc target="library" output="../bin/BANC.Infrastructure.Controller.dll"
doc="../bin/BANC.Infrastructure.Controller.xml" debug="false">
...
 
the ndoc task is failing becuase it does not find the
BANC.Infrastructure.Controller.xml file...that the compiler is expected
to output... ???
 
 
thanks in advance.
 
cheers ears,
pradeep


-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to