Hi,


I have been using the IDE for compiling and debugging my web appl project.It works just fine.
But I built a NANT.build for the same,there seems to be some problem..
I have written the below nant.build file.
It says BUILD succeeded when I do "NANT" on the VS .NET cmd prompt. But when I open the browser and open up my page and then click submit on my webpage, the tool doesn't seem to be running at all..?
Please let me know what am I doing wrong here?


This is the Build file that I have been using:

<?xml version="1.0" ?>
<project name="Tool" default="build" basedir=".">
   <property name="debug" value="true"/>
   <property name="bin_directory" value="bin"/>

   <target name="clean" description="remove all generated files">
       <delete dir="${bin_directory}" failonerror="true" verbose="true"/>
   </target>

   <target name="build" description="compiles the source code"
depends="clean">
       <solution configuration="release">
           <projects>
                    <includes name="Tool.csproj" />
           </projects>
       </solution>
   </target>

</project>



Thanks,

_________________________________________________________________
Is your computer infected with a virus? Find out with a FREE computer virus scan from McAfee. Take the FreeScan now! http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963




-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to