Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | The build batch tool should never override the SOLUTION environment variable if it is already set. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | preRelease |
Files: | files | file ages | folders |
SHA1: |
bb7b1890d0ef0768b7ee8c81744b9ce0 |
User & Date: | mistachkin 2015-12-10 04:17:38.444 |
Context
2015-12-10
| ||
04:35 | Update the CHM file. check-in: bc02379c9e user: mistachkin tags: preRelease | |
04:17 | The build batch tool should never override the SOLUTION environment variable if it is already set. check-in: bb7b1890d0 user: mistachkin tags: preRelease | |
2015-12-09
| ||
19:54 | Updates for release 1.0.99.0. check-in: 59740bc1b4 user: mistachkin tags: preRelease | |
Changes
Changes to Setup/build.bat.
︙ | ︙ | |||
284 285 286 287 288 289 290 | IF NOT DEFINED SOLUTION ( IF DEFINED COREONLY ( %_AECHO% Building core managed project... SET SOLUTION=.\System.Data.SQLite\System.Data.SQLite.%YEAR%.csproj ) ) | > | | | | | | > | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | IF NOT DEFINED SOLUTION ( IF DEFINED COREONLY ( %_AECHO% Building core managed project... SET SOLUTION=.\System.Data.SQLite\System.Data.SQLite.%YEAR%.csproj ) ) IF NOT DEFINED SOLUTION ( IF DEFINED BUILD_FULL ( %_AECHO% Building all projects... SET SOLUTION=.\SQLite.NET.%YEAR%.sln ) ELSE ( %_AECHO% Building all projects... SET SOLUTION=.\SQLite.NET.%YEAR%.MSBuild.sln ) ) %_VECHO% Solution = '%SOLUTION%' IF NOT EXIST "%SOLUTION%" ( ECHO Solution file "%SOLUTION%" does not exist. GOTO errors |
︙ | ︙ |