I am using NAnt to build a solution with multiple projects for an ASP.NET solution.
How to configure the default.build with the details of multiple projects ?
Here is my current default.build: (I need to add another project and the out put should go to a seperate dll file, similar to DAIDSES.Demo.EmployeeBE.dll
<?xml version="1.0"?>
<project name="DAIDSES.DataAccess" default="build" basedir=".">
<property name="nant.settings.currentframework" value="net-1.1" />
<target name="build">
<mkdir dir="build"/>
<csc target="library" output="build\DAIDSES.Demo.EmployeeBE.dll">
<sources>
<includes name="DAIDSES.Demo.EmployeeBE\*.cs"/>
</sources>
</csc>
</target>
<target name="clean" description="Deletes compiled binaries">
<delete dir="build" failonerror="false"/>
</target>
</project>
<project name="DAIDSES.DataAccess" default="build" basedir=".">
<property name="nant.settings.currentframework" value="net-1.1" />
<target name="build">
<mkdir dir="build"/>
<csc target="library" output="build\DAIDSES.Demo.EmployeeBE.dll">
<sources>
<includes name="DAIDSES.Demo.EmployeeBE\*.cs"/>
</sources>
</csc>
</target>
<target name="clean" description="Deletes compiled binaries">
<delete dir="build" failonerror="false"/>
</target>
</project>
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing