Hash : 4c484856 Author : Date : 2015-06-14T18:21:04
Updated Visual Studio projects There is now a single solution used by Visual Studio 2010 and newer
Download
1 2 3 4
#!/bin/sh find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete find . -depth -type d \( -name Win32 -o -name x64 \) -exec rm -rv {} \;