views:

18

answers:

1

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>
A: 

I had to update to a newer version of xmlmassupdate to get this to work.

zachary