I have a script I use to clean the Visual Studio cruft. The script is below.
Is anyone opposed to committing it? ***** $ cat vs-clean.cmd @echo OFF REM set THIS_DIR=%~dp0 set THIS_DIR=. attrib -R -A -S -H "%THIS_DIR%\*.suo" attrib -R -A -S -H "%THIS_DIR%\*.sdf" attrib -R -A -S -H "%THIS_DIR%\*.vcxproj" attrib -R -A -S -H "%THIS_DIR%\*.filters" del "%THIS_DIR%\*.suo" /q del "%THIS_DIR%\*.sdf" /q del "%THIS_DIR%\*.filters" /q del "%THIS_DIR%\*.vcxproj" /q del "%THIS_DIR%\*.diff" /q del "%THIS_DIR%\adhoc.cpp" /q del "%THIS_DIR%\adhoc.cpp.copied" /q del "%THIS_DIR%\UpgradeLog.htm" /q rmdir /Q /S "%THIS_DIR%\Backup\" rmdir /Q /S "%THIS_DIR%\Debug\" rmdir /Q /S "%THIS_DIR%\Release\" rmdir /Q /S "%THIS_DIR%\Win32\" rmdir /Q /S "%THIS_DIR%\x64\" rmdir /Q /S "%THIS_DIR%\ipch\" -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
