Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB

  1. @echo OFF
  2. REM set THIS_DIR=%~dp0
  3. set THIS_DIR=.
  4. attrib -R -A -S -H "%THIS_DIR%\*.aps"
  5. attrib -R -A -S -H "%THIS_DIR%\*.ncb"
  6. attrib -R -A -S -H "%THIS_DIR%\*.suo"
  7. attrib -R -A -S -H "%THIS_DIR%\*.sdf"
  8. attrib -R -A -S -H "%THIS_DIR%\*.user"
  9. del "%THIS_DIR%\*.aps" /q
  10. del "%THIS_DIR%\*.ncb" /q
  11. del "%THIS_DIR%\*.suo" /q
  12. del "%THIS_DIR%\*.sdf" /q
  13. del "%THIS_DIR%\cryptlib.user" /q
  14. del "%THIS_DIR%\cryptdll.user" /q
  15. del "%THIS_DIR%\dlltest.user" /q
  16. del "%THIS_DIR%\adhoc.cpp" /q
  17. del "%THIS_DIR%\cryptopp.mac.done" /q
  18. del "%THIS_DIR%\adhoc.cpp.copied" /q
  19. REM New Visual Studio 2005 and VC 6.0
  20. del "%THIS_DIR%\cryptlib.vcproj" /q
  21. del "%THIS_DIR%\cryptest.vcproj" /q
  22. del "%THIS_DIR%\cryptdll.vcproj" /q
  23. del "%THIS_DIR%\dlltest.vcproj" /q
  24. del "%THIS_DIR%\cryptopp.vcproj" /q
  25. del "%THIS_DIR%\cryptlib.dsp" /q
  26. del "%THIS_DIR%\cryptest.dsp" /q
  27. del "%THIS_DIR%\cryptdll.dsp" /q
  28. del "%THIS_DIR%\dlltest.dsp" /q
  29. del "%THIS_DIR%\cryptest.dsw" /q
  30. REM Visual Studio build artifacts
  31. rmdir /Q /S "%THIS_DIR%\Debug\"
  32. rmdir /Q /S "%THIS_DIR%\Release\"
  33. rmdir /Q /S "%THIS_DIR%\Win32\"
  34. rmdir /Q /S "%THIS_DIR%\x64\"
  35. rmdir /Q /S "%THIS_DIR%\ipch\"
  36. rmdir /Q /S "%THIS_DIR%\.vs\"
  37. REM Visual Studio VCUpgrade artifacts
  38. del "%THIS_DIR%\*.old" /q
  39. del "%THIS_DIR%\UpgradeLog.htm" /q
  40. del "%THIS_DIR%\UpgradeLog.XML" /q
  41. rmdir /Q /S "%THIS_DIR%\_UpgradeReport_Files\"
  42. rmdir /Q /S "%THIS_DIR%\Backup\"