Reputation: 9171
Using XmlMassupdate how to change:
Change this:
<applicationSettings>
<StackOverflow.Properties.Settings>
<setting name="StackOverflow_References_References" serializeAs="String">
<value>OLDVALUE</value>
</setting>
</StackOverflow.Properties.Settings>
</applicationSettings>
To this:
<applicationSettings>
<StackOverflow.Properties.Settings>
<setting name="StackOverflow_References_References" serializeAs="String">
<value>NEWVALUE</value>
</setting>
</StackOverflow.Properties.Settings>
</applicationSettings>
Upvotes: 0
Views: 266
Reputation: 9171
I had to update to a newer version of xmlmassupdate to get this to work.
Upvotes: 1