View Single Post
  #1  
Old 01-08-2016, 02:02 PM
paxil paxil is online now
Registered User
 
Join Date: 03-18-2014
Location: Richmond, VA
Posts: 12
Modifying a configuration file prior to deployment

I have a xml config file that I want to modify with many different macros (40+) in this format when it comes out of source control. I have a macro for each of the values. I know I can add a "Replace in File" build step for each value to be replaced with my macros, but is there an easier way to do this without having to run the replace file 40+ times?

<ConfigurationSettings>

<Setting name="AdminEmail" value="$(AdminEmail)" />
<Setting name="AdminFirstName" value="$(AdminFirstName)" />
<Setting name="AdminLastName" value="$(AdminLastName)" />

</ConfigurationSettings>

Thanks

Pax


Forgot to mention, I'm using v8.6 of VBP. Also, can this issue above be completed with a LOOP_VALUE within a LOOP_VALUE?

Last edited by paxil; 01-08-2016 at 02:32 PM. Reason: Adding details
Reply With Quote