自动化每日构建(三)用NAnt来完成.NET工程的每日构建[5]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 samlei 的 blog

   
  <!-- you may fill the tasks here.  -->
  
    </target>


    <!-- =================================================================== -->
    <!-- creates the deploy                                                  -->
    <!-- =================================================================== -->
    <target name="deploy" depends="">
   
  <!-- you may fill the tasks here.  -->
  
    </target>

 

    <!-- =================================================================== -->
    <!-- build the installation packge                                       -->
    <!-- =================================================================== -->
    <target name="release" depends="clean">
   
  <!-- you may fill the tasks here.  -->
  
    </target>

 

    <!-- =================================================================== -->
    <!-- clean targets                                                       -->
    <!-- =================================================================== -->
    <target name="clean" depends="init">
        <delete dir="${s.build.assemble}"/>
        <delete dir="${s.build.release}"/>
       
  <!-- you may fill the tasks here.  -->
  
    </target>

   
</project>

<!-- end of file -->
   
    

本文关键:自动化每日构建(三)用NAnt来完成.NET工程的每日构建
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top