Hi all,
I am experimenting with the build file that is part of web deployment project. My goal is do something in the "AfterBuild" target. I am doing the following:
<Target Name="AfterBuild">
<MakeDir Directories="$(TargetDir)\Upload" />
</Target>
For some reason the folder never gets created. Any idea why this is happening?
Thanks.