-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from OpenTouryoProject/develop
Release work ( ~ June 1, 2021)
- Loading branch information
Showing
64 changed files
with
3,415 additions
and
853 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,19 @@ | ||
@echo off | ||
|
||
set DIRECTORIES=packages, obj, bin, bld, Temp, Build, PrecompiledWeb, .vs | ||
@echo -------------------------------------------------- | ||
@echo Delete the packages, obj, bin, bld, Temp, Build, PrecompiledWeb, .vs folders. | ||
@echo Delete the %DIRECTORIES% folders. | ||
@echo -------------------------------------------------- | ||
|
||
for /D /R %%i in ( packages ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( obj ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( bin ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( bld ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( Temp ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( Build ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( PrecompiledWeb ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
for /D /R %%i in ( .vs ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
@rem カンマをスペースに変換 | ||
set w1=%DIRECTORIES:,= % | ||
|
||
@rem 連続したスペースを、スペース1個に変換 | ||
set w2=%w1: = % | ||
|
||
for %%a in ( %w2% ) do ( | ||
for /D /R %%i in ( %%a ) do ( | ||
if exist "%%~i" RD /S /Q "%%~i" | ||
) | ||
) | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.