Skip to content

Instantly share code, notes, and snippets.

@zach-brockway
Created October 3, 2012 07:54
Show Gist options
  • Save zach-brockway/3825678 to your computer and use it in GitHub Desktop.
Save zach-brockway/3825678 to your computer and use it in GitHub Desktop.
A quick-and-dirty python script to find invalid ClInclude nodes in VS 2010 projects
#!/c/Python32/python.exe
import sys
import os.path
import xml.etree.ElementTree as ET
ns = '{http://schemas.microsoft.com/developer/msbuild/2003}'
filterTree = ET.parse(sys.argv[1]+".filters")
filterRoot = filterTree.getroot()
filterDict = dict()
missingDict = dict()
for inc in filterRoot.iter(ns+'ClInclude'):
incFileRel = inc.get('Include')
incFilter = inc.find(ns+'Filter')
if incFileRel != None and incFilter != None:
filterDict[incFileRel] = incFilter.text
if incFilter.text not in missingDict:
missingDict[incFilter.text] = []
projTree = ET.parse(sys.argv[1])
projRoot = projTree.getroot()
for inc in projRoot.iter(ns+'ClInclude'):
incFileRel = inc.get('Include')
if incFileRel != None:
incFile = os.path.abspath( os.path.dirname(sys.argv[1]) +"\\"+ incFileRel )
if not os.path.exists(incFile):
missingDict[filterDict[incFileRel]].append(incFileRel)
for (missingGroup, missingList) in missingDict.items():
if len(missingList) > 0:
print("["+missingGroup+"]:")
for missing in missingList:
print(" " + os.path.basename(missing) + " (" + missing + ")")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment