Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the batch build tool, attempt to make sure the target solution/project file matches up with the .NET Framework used. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
49d0228259358c85c592c9b5e0e76f51 |
User & Date: | mistachkin 2015-07-23 04:40:36.874 |
Context
2015-07-24
| ||
00:17 | Update SQLite core library to the latest trunk code. check-in: d4447158f6 user: mistachkin tags: trunk | |
2015-07-23
| ||
04:40 | In the batch build tool, attempt to make sure the target solution/project file matches up with the .NET Framework used. check-in: 49d0228259 user: mistachkin tags: trunk | |
2015-07-21
| ||
22:54 | Add full support for Visual Studio 2015 and the .NET Framework 4.6. check-in: 52f2ca84c7 user: mistachkin tags: trunk | |
Changes
Changes to Setup/build.bat.
︙ | ︙ | |||
185 186 187 188 189 190 191 | REM REM TODO: When the next version of MSBuild is released, this section may need REM updating. REM IF NOT DEFINED MSBUILDDIR ( CALL :fn_CheckMsBuildDir 14.0 IF DEFINED MSBUILDDIR ( | > | > > | > > | > > | > > | > | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | REM REM TODO: When the next version of MSBuild is released, this section may need REM updating. REM IF NOT DEFINED MSBUILDDIR ( CALL :fn_CheckMsBuildDir 14.0 IF DEFINED MSBUILDDIR ( IF NOT DEFINED YEAR ( SET YEAR=2015 ) ) ) IF NOT DEFINED MSBUILDDIR ( CALL :fn_CheckMsBuildDir 12.0 IF DEFINED MSBUILDDIR ( IF NOT DEFINED YEAR ( SET YEAR=2013 ) ) ) REM REM TODO: When the next version of Visual Studio is released, this section REM may need updating. REM IF NOT DEFINED FRAMEWORKDIR ( CALL :fn_CheckFrameworkDir v4.0.30319 IF DEFINED FRAMEWORKDIR ( IF NOT DEFINED YEAR ( SET YEAR=2010 ) ) ) IF NOT DEFINED FRAMEWORKDIR ( CALL :fn_CheckFrameworkDir v3.5 IF DEFINED FRAMEWORKDIR ( IF NOT DEFINED YEAR ( SET YEAR=2008 ) ) ) IF NOT DEFINED FRAMEWORKDIR ( CALL :fn_CheckFrameworkDir v2.0.50727 IF DEFINED FRAMEWORKDIR ( IF NOT DEFINED YEAR ( SET YEAR=2005 ) ) ) :setup_buildToolDir IF DEFINED BUILDTOOLDIR ( %_AECHO% Forcing the use of build tool directory "%BUILDTOOLDIR%"... |
︙ | ︙ |