Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a file using Nant script

Tags:

nant

I want to create a file using nant script. Like mkdir any command is awailable in nant script for creating a text or doc file?

like image 442
learner Avatar asked Jan 19 '23 19:01

learner


1 Answers

You can use <touch> task to create files (or update their timestamps). Using <echo> you can output plain text to a file. <xmlpoke> allows manipulating XML files.

like image 196
skolima Avatar answered Jan 21 '23 09:01

skolima