Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool for comparing web.config files [closed]

Is there a good tool to compare specifically web.config files to find specifically which settings are different values and which file has settings that don't appear in both.

XML comparison should do the trick, or an XSLT might work. There must be a tool for web.config settings out there?

like image 555
digiguru Avatar asked Dec 03 '08 09:12

digiguru


1 Answers

https://github.com/CameronWills/FatAntelope This tool will compare two web.config files and generate a web.config transform from the difference.

Disclaimer: I wrote it... I wanted to compare two web.config files and generate a transform. But I couldn't find anything out to help much beyond standard text file diff tools (WinMerge etc) which dont work very well for XML. So I created one :)

like image 79
cwills Avatar answered Sep 18 '22 13:09

cwills