You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expected format should be, which is good for manually maintain
<?xml version="1.0" encoding="utf-8"?>
<!--For more information on using transformations see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configurationxmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<addkey="test20180423"value="3"xdt:Transform="Insert" />
<addkey="test20180424"value="4"xdt:Transform="Insert" />
</appSettings>
</configuration>
The text was updated successfully, but these errors were encountered:
The reason why I would like to use Insert instead of InsertBefore is, when I remove and add another section . I can not smoothly write the xdt manually with InsertBefore.
However I can manually write transform file with Insert
<?xml version="1.0" encoding="utf-8"?>
<!--For more information on using transformations see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configurationxmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<addkey="test20180423"value="3"xdt:Transform="Insert" />
<addkey="test20180425"value="5"xdt:Transform="Insert" />
</appSettings>
</configuration>
source file
target file
The generated patch file is
The expected format should be, which is good for manually maintain
The text was updated successfully, but these errors were encountered: