I have installed the Windows Azure SDK 1.7 coming with a refresh for WebDeploy. Since then the custom steps I had configured in the project file using the CopyAllFilesToSingleFolderForPackageDependsOn technique is not working anymore.
Try using the task CopyAllFilesToSingleFolderForMsdeployDependsOn instead of CopyAllFilesToSingleFolderForPackageDependsOn. I believe it has been renamed.
I had the same issue and found the step CopyAllFilesToSingleFolderForMsdeployDependsOn in the output of msbuild when the verbosity level was set to Diagnostic. My project file now looks like this:
Thank-you so very much, Brendan you nailed my issue and I wasted hours on this today!!! At least I got to learn MSBuild a lot more, though, I guess. Wow, I was pulling my hair out on this one big time!
Sebastien Ro...
2 Posts
CopyAllFilesToSingleFolderForPackageDependsOn custom steps are not processed since WebDeploy refr...
Jul 24, 2012 09:36 PM|LINK
I have installed the Windows Azure SDK 1.7 coming with a refresh for WebDeploy. Since then the custom steps I had configured in the project file using the CopyAllFilesToSingleFolderForPackageDependsOn technique is not working anymore.
How can I resolve this ?
Thanks
Sebastien
paperslice
2 Posts
Re: CopyAllFilesToSingleFolderForPackageDependsOn custom steps are not processed since WebDeploy ...
Aug 07, 2012 09:23 AM|LINK
Try using the task CopyAllFilesToSingleFolderForMsdeployDependsOn instead of CopyAllFilesToSingleFolderForPackageDependsOn. I believe it has been renamed.
Regards, Brendan
Sebastien Ro...
2 Posts
Re: CopyAllFilesToSingleFolderForPackageDependsOn custom steps are not processed since WebDeploy ...
Aug 14, 2012 05:22 PM|LINK
paperslice
2 Posts
Re: CopyAllFilesToSingleFolderForPackageDependsOn custom steps are not processed since WebDeploy ...
Aug 20, 2012 09:33 AM|LINK
I had the same issue and found the step CopyAllFilesToSingleFolderForMsdeployDependsOn in the output of msbuild when the verbosity level was set to Diagnostic. My project file now looks like this:
...
<PropertyGroup>
<CopyAllFilesToSingleFolderForMsdeployDependsOn>
CollectScriptFiles;
CollectBuildId;
$(CopyAllFilesToSingleFolderForMsdeployDependsOn);
</CopyAllFilesToSingleFolderForMsdeployDependsOn>
</PropertyGroup>
...
thetaschroed...
1 Post
Re: CopyAllFilesToSingleFolderForPackageDependsOn custom steps are not processed since WebDeploy ...
Nov 17, 2012 02:23 AM|LINK
Thank-you so very much, Brendan you nailed my issue and I wasted hours on this today!!! At least I got to learn MSBuild a lot more, though, I guess. Wow, I was pulling my hair out on this one big time!