xmlmassupdate

XMLMASSUPDATE MSBUILD Tigris Tasks

I am trying to set the compiler options attribute from a value to blank using the msbuild task of xmlmassupdate. Unfortunately it is only changing the c# (the first one) and not the second one. Does anyone know the syntax for xmlmassupdate to do this? ...

XmlMassUpdate - Replace Value Node

Hi Guys. I'm trying to use XmlMassUpdate to update my config files based on build Version type. There seems to be no documentation on how to update the new app.config (vs2008) settings formats anywhere. This is the config section: <applicationSettings> <CTC.Mica.ClientService.Properties.Settings> <setting name="PipeName" serializeAs=...

MSBuild XmlMassUpdate Task

I wanted to ask a quick question regarding the behaviour of the MSBuild task XmlMassUpdate. Has anyone found that the task will only copy unique nodes over to the content XML? For example, if I have a client node which has multiple children called endpoint, then it will only mass copy the first endpoint node while eliminating all the ot...

XmlMassUpdate - How to delete a node

We would like to use msbuild to clear the connectionStrings section from a web.config file. What is the easiest way to do that? We have previously used XmlMassUpdate to replace values (see also this question: http://stackoverflow.com/questions/1294438/xmlmassupdate-replace-value-node), but have not found a way to remove it entirely. M...

Can XmlMassUpdate be used to delete an attribute?

For example, I have this line: <forms loginUrl="/redirecttosignin.aspx" name="NAME_HERE" requireSSL="false" timeout="60" domain=".blah.com" /> And I want to delete the "name" attribute altogether. I know I can do this to blank it: <forms xmu:key="loginUrl" loginUrl="/redirecttosignin.aspx" name="" /> But, I literally want to get t...

MSBuild and Xmlmassupdate having trouble changing xml

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: <applicationSett...