I'm using the AzureContinuousDeployment.11.xaml Template for CI builds and it's working great.
However, I need to keep additional files on the server (the app creates files). If I was using the "Web deploy" method, I'd simply disable the "Remove additional files at destination" property, but I don't see an option for that using the Azure deployment template.
Do I need to create a publish profile and associate it with the template? I see there's an option to add one in the template settings, but it seems odd that it would be necessary for this.
Update: According to this thread: Valid Parameters for MSDeploy via MSBuild
I should be able to add /p:SkipExtraFilesOnServer=True to the MSBuild arguments in the build definition, but it isn't working. Files are still being deleted from the web server when I deploy