I am trying to match element by element name, I have to change sessionState element timeout in release, but I cannot match it by any attribute value.
<sessionState timeout="5000"/>
How can I match this element in Web.Release.config?
this should work:
<sessionState timeout="2000"
xdt:Transform="SetAttributes(timeout)">
</sessionState>