Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
emacs/ | 23-Apr-2015 | ||
graphviz.py | 23-Apr-2015 | 2.8K | |
pretty_gyp.py | 23-Apr-2015 | 4.6K | |
pretty_sln.py | 23-Apr-2015 | 5K | |
pretty_vcproj.py | 23-Apr-2015 | 9.4K | |
README | 23-Apr-2015 | 837 | |
Xcode/ | 23-Apr-2015 |
1 pretty_vcproj: 2 Usage: pretty_vcproj.py "c:\path\to\vcproj.vcproj" [key1=value1] [key2=value2] 3 4 They key/value pair are used to resolve vsprops name. 5 6 For example, if I want to diff the base.vcproj project: 7 8 pretty_vcproj.py z:\dev\src-chrome\src\base\build\base.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > orignal.txt 9 pretty_vcproj.py z:\dev\src-chrome\src\base\base_gyp.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > gyp.txt 10 11 And you can use your favorite diff tool to see the changes. 12 13 Note: In the case of base.vcproj, the original vcproj is one level up the generated one. 14 I suggest you do a search and replace for '"..\' and replace it with '"' in original.txt 15 before you perform the diff.