2016-06-15 00:59:59 +03:00
|
|
|
@ECHO OFF
|
2016-08-31 21:33:41 +03:00
|
|
|
|
|
|
|
rem
|
|
|
|
rem Copyright (c) Microsoft. All rights reserved.
|
|
|
|
rem Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
rem
|
|
|
|
|
2016-06-15 00:59:59 +03:00
|
|
|
FOR /D /R . %%G IN (bin) DO @IF EXIST "%%G" (@echo RDMR /S /Q "%%G" & rd /s /q "%%G")
|
|
|
|
FOR /D /R . %%G IN (obj) DO @IF EXIST "%%G" (@echo RDMR /S /Q "%%G" & rd /s /q "%%G")
|