Hi,
Am trying to create virtual directory in remote machine but i don't
know how to do.
For local machine am able to create virtual directory using the below
nant script.
-------------------------------------------------------
<?xml version="1.0"?>
<project name="NEWVD" default="build" basedir="E:\PandT" >
<property name="debug" value="true" />
<target name="configiis" >
<mkiisdir dirpath="E:\PandT\PrecompiledWeb\WebPandT"
vdirname="PandT"/>
</target>
<target name="build">
<call target="configiis" />
<msbuild project="PandT.sln">
<property name="Configuration" value="debug" />
</msbuild>
</target>
</project>
------------------------------------------------------------
For create Virtual directory in remote machine which task i need to
use .
If any one have solution for this ,Please provide it is great help to
me .
Thanks in advance.