I'm trying to update an existing appSettings in my web.config. I don't want to replace the entire value, but append my new value to the end. Is this possible?
Current value:
<add key="umbracoReservedPaths" value="~/umbraco,~/install/" />
Required value:
<add key="umbracoReservedPaths" value="~/umbraco,~/install/,~/signalr" />
This is what I have currently in my transform file:
<add key="umbracoReservedPaths" value=",~/signalr" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(key)"/>