I need to implement Continuous Integration/Deployment with a .NET 4.5 Web App. My build definition has 3 steps:
- Visual Studio Build
- Visual Studio Test
- Azure Web App Deployment
The build and test steps work fine. All tests pass. But it throws an error during the deployment step.
Here are my build step settings:

The MSBuild Arguments value is:
/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.stagingDirectory)\WebApp.zip"
Here are my deployment step settings:
And here are my build results:
And here is the error message.
Any help would be greatly appreciated.



