2009-08-20 15:53:17 +00:00
|
|
|
:: clean_msvc.cmd
|
|
|
|
::
|
|
|
|
:: This batch file cleans up some files that MSVC's Clean/Rebuild commands tend to miss.
|
|
|
|
:: In particular the .ilk and .pdb files are known to get corrupted and cause all sorts of odd
|
|
|
|
:: linker errors, and the .ncb files can also get corrupted and cause intellisense breakges.
|
|
|
|
::
|
|
|
|
:: Safety: This tool should be pretty safe. None of the files it deletes are important. That
|
|
|
|
:: is, they're all files MSVC just rebuilds automatically next time you run/recompile. But even
|
|
|
|
:: so, don't go running this batch file in your root c:\ folder. It's probably not a wise action.
|
|
|
|
:: Enjoy. :)
|
2009-07-23 13:52:27 +00:00
|
|
|
|
2009-09-06 00:42:24 +00:00
|
|
|
del /s *.ncb;*.ilk;*.pdb;*.bsc;*.sbr;*.res
|