This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################################################## | |
# | |
# xmlsort | |
# | |
# Simple utility script to enable a diff of two XML files in a way | |
# that ignores the order or attributes and elements. | |
# | |
# Forked from | |
# Dale Lane ([email protected]) | |
# 6 Oct 2014 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/c/Python32/python.exe | |
import sys | |
import os | |
import os.path | |
import xml.etree.ElementTree as ET | |
ns = '{http://schemas.microsoft.com/developer/msbuild/2003}' | |
#Works with relative path also | |
projectFileName = sys.argv[1] |