ant svn

  1.  <!-- 檢出代碼 這裏使用 export 不是checkout 兩者區別 checkout會svn相關信息文件檢出,export只是檢出最新的文件-->  
  2.     <target name="checkout" depends="clean">  
  3.         <svn refid="svn.setting">  
  4.             <export srcUrl="${urlRepos}" destPath="." force="true"/>  
  5.         </svn>  
  6.     </target>

 

ant中的if與unlessless

if與unless之間是相反的條件表達svn

for example:ui

<condition property="isDirExist">
    <and>
        <available file="example" type="dir" />
    </and>
</condition>

<!--若是存在則不執行1-->
<target name="1" unless="isDirExist">

<!--若是存在則執行2-->
<target name="2" if="isDirExist">

ant 執行sln,選擇project的配置項如"Debug|win32" url

 

<arg line="/build release" />spa

相關文章
相關標籤/搜索