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

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -

Python __call__ special method practical example -