If i don't have any targets in the deployment file, it publishes the files to the outputpath specified. But if i include any targets, it won't.
Here is the build results with no <target>
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\aspnet_merge.exe .\TempBuildDir -o VS2008Test1 -a -debug -copyattrs
Successfully merged '.\TempBuildDir'.
if exist "c:\temp\vs2008test1\" rd /s /q "c:\temp\vs2008test1\"
if not exist "c:\temp\vs2008test1\" md "c:\temp\vs2008test1\"
if exist ".\TempBuildDir\" rd /s /q ".\TempBuildDir\"
========== Rebuild All: 2 succeeded, 0 failed, 0 skipped ==========
If i add <Target Name="AfterBuild"><MakeDir Directories="c:\temp\out\" /></Target> then it doesn't copy them out of the .\TempBuildDir\
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\aspnet_merge.exe .\TempBuildDir -o VS2008Test1 -a -debug -copyattrs
Successfully merged '.\TempBuildDir'.
========== Rebuild All: 2 succeeded, 0 failed, 0 skipped ==========
That's with the same 'hello world' project but just adding that target... any ideas?