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
Post a Comment