Open1

Visual Studio のキャッシュを消したい

なぎゆーなぎゆー
@echo off
echo Deleting bin, obj, .vs, TestResults, and other caches...

for /d /r %%i in (bin,obj,.vs,TestResults,packages,node_modules) do (
    if exist "%%i" (
        echo Deleting %%i
        rmdir /s /q "%%i"
    )
)

echo Cache clean-up complete!
pause