sorry for such kind of question but I've spent too much time on it. I have an app.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<userSettings>
<tbp.qa.Properties.Settings>
<setting name="ServiceUri" serializeAs="String">
<value>localhost</value>
</setting>
</tbp.qa.Properties.Settings>
</userSettings>
</configuration>
How to change the 'value' with config transformation, I have tried the following and it doesn't change anything:
<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<userSettings>
<tbp.qa.Properties.Settings>
<add name="ServiceUri" xdt:Transform="Replace" xdt:Locator="Match(name)">
<value>localhost1</value>
</add>
</tbp.qa.Properties.Settings>
</userSettings>
</configuration>
What am I doing wrong?
settingbut in your translationadd. Should it be?<setting name="ServiceUri" xdt:Transform="Replace" xdt:Locator="Match(name)"> <value>localhost1</value> </setting>– nemesv Jan 28 at 20:48