Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Clean up after NuGet packages left in the source directory. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1a80776bac41e4db06c7a6dfdd6e2b68 |
User & Date: | mistachkin 2011-10-03 05:49:03.985 |
Context
2011-10-03
| ||
09:53 | Add Tcl-based tool capable of automatically updating the file sizes and hashes on the downloads page. check-in: 3f0042b2f5 user: mistachkin tags: trunk | |
05:49 | Clean up after NuGet packages left in the source directory. check-in: 1a80776bac user: mistachkin tags: trunk | |
05:29 | Add LINQ assembly to NuGet packages. Also, restore base NuSpec file wrongfully deleted in the previous commit. check-in: 4923bf755e user: mistachkin tags: trunk | |
Changes
Changes to Setup/clean.bat.
︙ | ︙ | |||
71 72 73 74 75 76 77 78 79 80 81 82 83 84 | %_AECHO%. ) ) ELSE ( %_AECHO% Directory "%SOURCE%\%%D" does not exist. %_AECHO%. ) ) IF EXIST "%SOURCE%\Doc\SQLite.NET.chw" ( %_ECHO% DEL /Q "%SOURCE%\Doc\SQLite.NET.chw" IF ERRORLEVEL 1 ( ECHO Could not delete "%SOURCE%\Doc\SQLite.NET.chw". ECHO. | > > > > > > > > > > > > > > > > | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | %_AECHO%. ) ) ELSE ( %_AECHO% Directory "%SOURCE%\%%D" does not exist. %_AECHO%. ) ) IF EXIST "%SOURCE%\*.nupkg" ( %_ECHO% DEL /Q "%SOURCE%\*.nupkg" IF ERRORLEVEL 1 ( ECHO Could not delete "%SOURCE%\*.nupkg". ECHO. GOTO errors ) ELSE ( %_AECHO% Deleted "%SOURCE%\*.nupkg". %_AECHO%. ) ) ELSE ( %_AECHO% No files matching "%SOURCE%\*.nupkg" exist. %_AECHO%. ) IF EXIST "%SOURCE%\Doc\SQLite.NET.chw" ( %_ECHO% DEL /Q "%SOURCE%\Doc\SQLite.NET.chw" IF ERRORLEVEL 1 ( ECHO Could not delete "%SOURCE%\Doc\SQLite.NET.chw". ECHO. |
︙ | ︙ |
Changes to exclude_src.txt.
1 2 3 4 5 6 7 8 9 10 11 12 | *.cache *.chw *.docstates *.fossil *.ncb *.suo *.user *.zip _FOSSIL_ bin/* Doc/Output/* Externals/Eagle/bin/Eagle.dll | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | *.cache *.chw *.docstates *.fossil *.ncb *.nupkg *.suo *.user *.zip _FOSSIL_ bin/* Doc/Output/* Externals/Eagle/bin/Eagle.dll |
︙ | ︙ |