I\'ve got the following configuration in web.config:
You can use the Insert
transformation:
<resizer>
<plugins>
<add name="AzureReader" connectionString="DataConnectionString"
xdt:Transform="Insert" />
</plugins>
</resizer>
Web.config Transformation Syntax for Web Application Project Deployment
If you want to do it using XSLT then here is some guidance as I don't have time right now to knock this out.
match="add[@name='MvcRoutingShim']"
xsl:copy
and then output the AzureReader add elementThat should get you going.
Make sure you have an XML editor that allow you to do transforms so you can experiment locally until you get it right.