Reputation: 1014
How do you use the nant <copy> command and maintain the directory structure? This is what I am doing, but it is copying all the files to a single directory.
<copy todir="..\out">
<fileset>
<includes name="..\src\PrecompiledWeb\**\*" />
</fileset>
</copy>
Upvotes: 8
Views: 5763
Reputation:
Try:
<fileset baseDir="../src/PrecompiledWeb"><includes name="**/*" />
Upvotes: 15