View Single Post
  #1  
Old 05-07-2004, 12:18 PM
VBuild_Rookie VBuild_Rookie is online now
Registered User
 
Join Date: 05-07-2004
Posts: 23
replacing sections in XML

I want to be able to replace sections of the XML file using visual build. Is this possible I have no clue on how to do this but I just need to change sections of config files (.NET) for diff enviroments

<appSettings>
<add key="DatasourceConnection" value="blah lah" />
<add key="ServerlessLDAPBinding" value="blah" />
<add key="ActiveDirectoryServer" alue="blah"/>
<add key="NewtonUsersOU" value="blah"/>
<add key="NewtonUsersOUContainer" value="blah"/>
</appSettings>

WITH
<appSettings>
<add key="DatasourceConnection" value="NEW blah lah" />
<add key="ServerlessLDAPBinding" value="NEW blah" />
<add key="ActiveDirectoryServer" alue="NEW blah"/>
<add key="NewtonUsersOU" value="NEW blah"/>
<add key="NewtonUsersOUContainer" value="NEW blah"/>
</appSettings>
Reply With Quote