From: Owen R. <exo...@us...> - 2005-09-11 16:46:27
|
Update of /cvsroot/netreflector/NetReflector In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31911 Modified Files: reflector.build Log Message: changed compile to always generate debug symbols (required for ncover) and to always optimize Index: reflector.build =================================================================== RCS file: /cvsroot/netreflector/NetReflector/reflector.build,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** reflector.build 11 Sep 2005 16:11:04 -0000 1.18 --- reflector.build 11 Sep 2005 16:46:18 -0000 1.19 *************** *** 4,12 **** <!-- PROPERTIES --> - - <property name="debug" value="true"/> <property name="verbosity" value="true"/> - <property name="nunit.output" value="Plain"/> - <property name="build.dir" value="build"/> <property name="src.dir" value="src" /> --- 4,8 ---- *************** *** 20,24 **** <property name="vil.executable" value="tools\vil\vil.exe" /> <property name="vil.assemblies" value="${core.dll},${test.dll}" /> - <property name="nunit.output" value="Plain"/> <property name="nunit-console.exe" value="tools\nunit\nunit-console.exe" /> <property name="ncover-console.exe" value="tools\ncover\NCover.Console.exe" /> --- 16,19 ---- *************** *** 46,50 **** <target name="compile.core" depends="init" description="compiles the core assembly" > ! <csc target="library" output="${build.dir}\${core.dll}" debug="${debug}"> <sources basedir="${src.dir}\NetReflector"> <include name="**\*.cs"/> --- 41,45 ---- <target name="compile.core" depends="init" description="compiles the core assembly" > ! <csc target="library" output="${build.dir}\${core.dll}" debug="true" optimize="true"> <sources basedir="${src.dir}\NetReflector"> <include name="**\*.cs"/> *************** *** 56,60 **** <target name="compile.plugin" depends="init" description="compiles plugin assembly to be used by the tests"> ! <csc target="library" output="${build.dir}\${plugin.dll}" debug="${debug}"> <sources basedir="${src.dir}\NetReflectorPluginTest"> <include name="**\*.cs"/> --- 51,55 ---- <target name="compile.plugin" depends="init" description="compiles plugin assembly to be used by the tests"> ! <csc target="library" output="${build.dir}\${plugin.dll}" debug="true" optimize="true"> <sources basedir="${src.dir}\NetReflectorPluginTest"> <include name="**\*.cs"/> *************** *** 68,72 **** <target name="compile.test" depends="init" description="compiles the core assembly" > ! <csc target="library" output="${build.dir}\${test.dll}" debug="${debug}"> <sources basedir="${src.dir}\NetReflector.Test"> <include name="**\*.cs"/> --- 63,67 ---- <target name="compile.test" depends="init" description="compiles the core assembly" > ! <csc target="library" output="${build.dir}\${test.dll}" debug="true" optimize="true"> <sources basedir="${src.dir}\NetReflector.Test"> <include name="**\*.cs"/> *************** *** 84,88 **** <target name="compile.documenter" depends="init" description="compiles the nant documenter task" > ! <csc target="library" output="${build.dir}\${documenter.dll}" debug="${debug}"> <sources basedir="${src.dir}\NetReflectorDocumenterTask"> <include name="**\*.cs"/> --- 79,83 ---- <target name="compile.documenter" depends="init" description="compiles the nant documenter task" > ! <csc target="library" output="${build.dir}\${documenter.dll}" debug="true" optimize="true"> <sources basedir="${src.dir}\NetReflectorDocumenterTask"> <include name="**\*.cs"/> *************** *** 98,108 **** <!-- TEST --> - <target name="test.unit2" description="runs unit tests"> - <nunit2> - <formatter type="${nunit.output}" /> - <test assemblyname="${build.dir}\${test.dll}"/> - </nunit2> - </target> - <target name="test.unit" description="runs unit tests"> <exec program="regsvr32" workingdir="tools\ncover" commandline="/s CoverLib.dll" /> --- 93,96 ---- *************** *** 115,119 **** <target name="dist.properties" description="sets properties for release build"> <property name="build.dir" value="dist" /> - <property name="debug" value="false" /> </target> --- 103,106 ---- *************** *** 154,159 **** <target name="ccnet.properties"> - <property name="debug" value="false"/> - <property name="nunit.output" value="Xml"/> <property name="publish.dir" value="${CCNetArtifactDirectory}\${CCNetLabel}"/> </target> --- 141,144 ---- |