How to run a Nant task with Ant?

后端 未结 1 748
忘掉有多难
忘掉有多难 2021-01-23 16:54

I am looking to do something that seems feasible, but searches on Google do not return something as precise as what I need.

We inherited Nant scripts from a previous com

1条回答
  •  遥遥无期
    2021-01-23 17:45

    You call put your ant scripts in a batch file (ant_tasks.bat) and then execute it from nant using exec.
    Something like that:

    
       
         
       
     
    

    Docs

    Or you can put your nant scripts in a batch file and then execute it from ant using exec.

    Example:

    
    
    
      
        
        
        
      
    
    
    
    

    Docs

    0 讨论(0)
提交回复
热议问题