On Wednesday, July 29, 2015 at 6:04:13 AM UTC-4, jean-pierre.muench wrote: > > > > Am 29.07.2015 um 06:43 schrieb Jeffrey Walton: > > 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\" > > Maybe add rmdir /Q /S "%THIS_DIR%\.vs\" ? > > This is a hidden directory created by VS 2015 upon conversion and > containing some *.suo file. >
Yeah, good point. Related, would you use a script like this on occasion? Jeff -- -- 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.
