I have a Web Deployment publish profile in my visual studio project. I have multiple environments, which in one I use NTLM provider and on the other I user Negotiate:Kerberos provider on the windows authentication mode.
My question is: How can I set the parameters.xml "match" value in order to set the right provider when using msdeploy.
The provider tag is as follows:
<add value="NTLM" />
Or instead:
<add value="Negotiate:Kerberos" />
Is it even possible to pull this of via parameters.xml only? If not what is the right way of doing so?