I am using Microsoft Web Deployment Projects in order to deploy automatically my nightly build on the development and test servers.
It worked great but I struggled quite some time trying to replace the configuration section.
It worked great but I struggled quite some time trying to replace the
Well, it was as stupid as that you cannot replace the whole system.serviceModel because it's not a configuration section, but is a configuration section group...and guess what?
WDP can only replace configuration sections and not configuration section groups.
What you can do though is replacing a section within the section group.
Within system.serviceModel, you can replace the client configuration section for instance using the replacement string "system.serviceModel/client=system.serviceModel.client.dev.config;"
WDP can only replace configuration sections and not configuration section groups.
What you can do though is replacing a section within the section group.
Within system.serviceModel, you can replace the client configuration section for instance using the replacement string "system.serviceModel/client=system.serviceModel.client.dev.config;"