hi,
go thro my code below
<?xml version="1.0"?>
<project name="MPS" default="build"
basedir=".">
<property name="basename"
value="HelloWorld"/>
<target
name="clean">
<delete file="bin\${basename}-cs.dll" failonerror="true"/> </target> <target
name="build">
<echo message="Compilation of classes in Moldule1 starts here...."/> <csc target="library" failonerror='false' output="bin\module1.dll" > <sources> <includes name="code\**.cs"/> </sources> </csc> <echo message="The classes of Moldule2 starts here"/> <csc target="library" output="bin\module2.dll"> <sources> <includes name="code1\**.cs"/> </sources> </csc> </target>
</project> there is a error in the source code in
"code\**.cs" -it should report the error and should continue the sources
available in
"code1\**.cs" right.But build stops once it
encounter the error in the first module itselft.If it is case what is the use of
giving failonerror='false'.
can you mail me regardsing this as soon as
possible
thank you
sengu
|
- RE: [nant-dev] failonerror=false is not working for m... Senguttuvan Haridass
- RE: [nant-dev] failonerror=false is not working ... Scott Hernandez