nant tasks to copy zip folder from one machine to other
How do i copy a zip folder fro开发者_如何学编程m my local machine to a server on same domain using nant script
Use the nant copy task.
<copy
file="myfile.zip"
tofile="\\servername\folder\myfile.zip"
inputencoding="latin1"
outputencoding="utf-8" />
精彩评论