#!/bin/bash ./runprebuild.sh autoclean # Clean the stuff autoclean forgets to clean. I feel so dirty. find -name obj -type d -print | xargs /bin/rm -fr find -name *.csproj -type f -print | xargs /bin/rm -fr find -name *.csproj.* -type f -print | xargs /bin/rm -fr find -name *.pdb -type f -print | xargs /bin/rm -fr # Clean the stuff the tests created. rm -fr bin/ScriptEngines rm Test*.txt