How to propertly reference a namespace for Microsoft.Sdc.Tasks.XmlFile.GetValue
- by æther
Hi, i want to use MSBuild to insert a custom xml element into web.config. After looking up online, i found such solution:
1) Store element in the .build file in projectextensions
<ProjectExtensions>
<CustomElement name="CustomElementName">
...
</CustomElement>
</ProjectExtensions>
2) Retrieve the element with…