I have a VB.Net website with an associated deployment project. Everything is building fine through the web deployment project, but I can't seem to get ANY custom tasks working.
I went back to the MSDN doc's and tried replicating the one task they had listed as an example:
<Target Name="BeforeBuild">
</Target>
<Target Name="BeforeMerge">
</Target>
<Target Name="AfterMerge">
</Target>
<Target Name="AfterBuild">
<MakeDir Directories="$(TargetDir)\Upload" />
</Target>
Do I need to do something else to get this working (yes - I uncommented this section)? I have only been running this through VS (but hope to move it to a build server if I can get it working).
Thanks in advance . . .