Skip to content

Instantly share code, notes, and snippets.

@Infarh
Last active August 3, 2021 14:32
Show Gist options
  • Save Infarh/f47cde2ba3ee3ce572d69d36bede359a to your computer and use it in GitHub Desktop.
Save Infarh/f47cde2ba3ee3ce572d69d36bede359a to your computer and use it in GitHub Desktop.
Скрипты очистки артефактов работы Visual Studio и компилятора C#
for %d in (bin obj) do @for /f %f in ('dir /s /b %d') do @rd /s /q %f
@echo off
rmdir /s /q .vs > nul
rmdir /s /q _ReSharper.Caches > nul
@echo off
for /f %%f in ('dir /s /b obj') do (del /f /s /q %%f > nul)
for /f %%f in ('dir /s /b bin') do (del /f /s /q %%f > nul)
for /f %%f in ('dir /s /b obj') do (rmdir /s /q %%f > nul)
for /f %%f in ('dir /s /b bin') do (rmdir /s /q %%f > nul)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment