Open
Description
I have variable $(CPath) with value C:\software
I am trying to patch the following XML's LogFile node
<?xml version="1.0"?><Configuration>
<Runtime>
<LogFile>C:wnetRCdsfsd</LogFile>
</Configuration>
using Pach Content :
= /WnetConfiguration/Runtime/LogFile => "$(CPath)"
In the output XML, I am getting
<?xml version="1.0"?><Configuration>
<Runtime>
<LogFile>C:software</LogFile>
</Configuration>
As can be seen, output LogFile node is missing the backslash.