Add build and rebuild targets.
diff --git a/nant-common.xml b/nant-common.xml
index 1e70104..0ad3fcf 100644
--- a/nant-common.xml
+++ b/nant-common.xml
@@ -518,6 +518,9 @@
   <!--      M I S C E L L A N E O U S    T A R G E T S                                              -->
   <!-- ============================================================================================ -->
 
+  <target name="build" depends="default" description="Build the project." />
+  <target name="rebuild" depends="clean,build" description="Rebuild the project." />
+  
   <target name="clean" description="Deletes build">
     <if test="${target::exists('clean-init')}">
       <call target="clean-init"/>