I am trying to do a full CI-CD cycle using TFSonline. when I go with 'AzureWebsite' along with Visual Studio Online, it provides me with a build definition using 'tfvccontinuousdeploymentTemplate.12.xaml'.
On check-in I get the output, the build triggers and deployment also happens to the azure website. The log contains build along with my deployment details, which is also reflected on the TFS portal

When I go the conventional iis route, I tried 2 steps
With Default build template and the good old ms build arguments
/p:DeployOnBuild=true /p:VisualStudioVersion=12.0 /p:PublishProfile="dasd.pubxml"this does the build and deploy but I don't get the 'deployment summary', which is to be expected, because i did it via ms deploy...I used the
tfvccontinuousdeploymentTemplateand provided the build settings as the publish xml... well... build happens but the deployment does not

I'd like the build to contain the deployment summary for my deployment.