Dear All,
I want to know whether I have to compile my xyz.cs, ABC.cs files every time when I build my application using NANT.


Using the following code
<csc target="exe" output="XYZ.exe" debug="true">
<sources> <includes name="XYZ.cs" /> </sources>
   <references>
       <include name="C:\DevTools\nunit v2.1\bin\nunit.framework.dll"/>
   </references>

</csc>
<csc target="dll" output="ABC.DLL" debug="true>
     <sources><includes name="ABC.CS"/></sources>
</csc>

Or all these are not required if I have the Solution files of the project which include all these sub projects that is required.
<solution solutionfile="${Solution.Filename}" outputdir="${Build.OutputFolder}latest\" configuration="${Solution.Configuration}"/>


Thanks
Sanjoy




------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to