Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Enhance the clean batch tool for Visual Studio 2015. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
21952064b262c62028fc69d090f969de |
User & Date: | mistachkin 2015-08-12 20:24:41.718 |
Context
2015-08-12
| ||
20:27 | Make it easier to build the managed-only binaries for Mono. check-in: eeb5a164be user: mistachkin tags: trunk | |
20:24 | Enhance the clean batch tool for Visual Studio 2015. check-in: 21952064b2 user: mistachkin tags: trunk | |
20:15 | Enhance test suite infrastructure to make it work properly without the interop assembly. check-in: e161b486c4 user: mistachkin tags: trunk | |
Changes
Changes to Setup/clean.bat.
︙ | ︙ | |||
38 39 40 41 42 43 44 | IF NOT EXIST "%TEMP%" ( ECHO The TEMP directory, "%TEMP%", does not exist. GOTO usage ) IF DEFINED CLEANDIRS GOTO skip_cleanDirs | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | IF NOT EXIST "%TEMP%" ( ECHO The TEMP directory, "%TEMP%", does not exist. GOTO usage ) IF DEFINED CLEANDIRS GOTO skip_cleanDirs SET CLEANDIRS=.vs bin obj Doc\Output Setup\Output SET CLEANDIRS=%CLEANDIRS% SQLite.Designer\bin SQLite.Designer\obj SET CLEANDIRS=%CLEANDIRS% SQLite.Interop\bin SQLite.Interop\obj SET CLEANDIRS=%CLEANDIRS% System.Data.SQLite\bin System.Data.SQLite\obj SET CLEANDIRS=%CLEANDIRS% System.Data.SQLite.Linq\bin System.Data.SQLite.Linq\obj SET CLEANDIRS=%CLEANDIRS% test\bin test\obj testce\bin testce\obj testlinq\bin SET CLEANDIRS=%CLEANDIRS% testlinq\obj tools\install\bin tools\install\obj |
︙ | ︙ |