cmd - How to run Windows remove command from NAnt? -


i want execute remove command inside nant script. how can that?

i'm not aware of command called 'remove' in msdos. did mean 'rm'?

assuming meant 'rm' here example of how work ...

<tasks>   <exec>     <executable>$(windir)\system32\cmd</executable>     <buildargs>/c "rm somefile.txt"</buildargs>   </exec> </tasks> 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -