Managing complex Web.Config files between deployment environments

后端 未结 11 859
被撕碎了的回忆
被撕碎了的回忆 2020-11-30 18:26

Does anyone know of any good tools/utilities for managing Web.Config files between different build/deployment environments?

For example, I have a WCF pr

11条回答
  •  失恋的感觉
    2020-11-30 19:04

    Annoyance:

    I mentioned my little cmd line app to merge XML docs in my 1st update... Well to do that I just use XmlDocument, and eventually just .Save() it to an FileStream.

    Unfortuantely, the nodes aren't really in any particular order, and apparently, .NET requires the element be the 1st child of the document.

    I thought all these fancy tools were supposed to make programming life easier?

提交回复
热议问题