paxil
01-08-2016, 03:02 PM
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?
<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?