summaryrefslogtreecommitdiff
path: root/clean.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'clean.cmd')
-rw-r--r--clean.cmd7
1 files changed, 5 insertions, 2 deletions
diff --git a/clean.cmd b/clean.cmd
index 17f9e402c6..f4150d7811 100644
--- a/clean.cmd
+++ b/clean.cmd
@@ -26,8 +26,11 @@ if /I [%NO_DASHES_ARG:-=%] == [all] (
)
:no_args
-if [%1]==[] set __args=-b
-call %~dp0run.cmd clean %__args% %*
+if [%1]==[] set __args=/t:CleanAllProjects
+if [%1]==[-b] set __args=/t:CleanAllProjects
+if [%1]==[-p] set __args=/t:CleanPackages
+if [%1]==[-c] set __args=/t:CleanPackagesCache
+call %~dp0msbuild.cmd /nologo /verbosity:minimal /clp:Summary /nodeReuse:false /flp:v=normal;LogFile=clean.log %__args%
exit /b %ERRORLEVEL%
:Usage