Recursively clean Visual Studio SLN files


/ Published in: DOS Batch
Save to your folder(s)

Simple batch file to recursively do a Clean for Visual Studio .SLN files.


Copy this code and paste it in your HTML
  1. for /f "tokens=*" %%a IN ('dir /b /s *.sln') do (
  2. "c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe" "%%a" /clean )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.