System.Data.SQLite

Check-in [b58ba923aa]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update the batch build tool for Visual Studio 2015 / .NET Framework 4.6.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | vs2015
Files: files | file ages | folders
SHA1: b58ba923aa437c4b7b3688abd6545792ee5029ab
User & Date: mistachkin 2015-07-21 02:09:07.764
Context
2015-07-21
02:41
Project system and updates for Visual Studio 2015. check-in: 42eb54d04f user: mistachkin tags: vs2015
02:09
Update the batch build tool for Visual Studio 2015 / .NET Framework 4.6. check-in: b58ba923aa user: mistachkin tags: vs2015
2015-07-20
22:46
Add Visual C++ 2015 redist files. check-in: 068cd88467 user: mistachkin tags: vs2015
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/build.bat.
169
170
171
172
173
174
175








176
177
178
179
180







181
182
183
184
185
186
187
IF DEFINED NETFX452ONLY (
  %_AECHO% Forcing the use of the .NET Framework 4.5.2...
  SET YEAR=2013
  CALL :fn_CheckFrameworkDir v4.0.30319
  CALL :fn_CheckMsBuildDir 12.0
  GOTO setup_buildToolDir
)









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 12.0
  IF DEFINED MSBUILDDIR (
    SET YEAR=2013
  )
)








>
>
>
>
>
>
>
>





>
>
>
>
>
>
>







169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
IF DEFINED NETFX452ONLY (
  %_AECHO% Forcing the use of the .NET Framework 4.5.2...
  SET YEAR=2013
  CALL :fn_CheckFrameworkDir v4.0.30319
  CALL :fn_CheckMsBuildDir 12.0
  GOTO setup_buildToolDir
)

IF DEFINED NETFX46ONLY (
  %_AECHO% Forcing the use of the .NET Framework 4.6...
  SET YEAR=2015
  CALL :fn_CheckFrameworkDir v4.0.30319
  CALL :fn_CheckMsBuildDir 14.0
  GOTO setup_buildToolDir
)

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 (
    SET YEAR=2015
  )
)

IF NOT DEFINED MSBUILDDIR (
  CALL :fn_CheckMsBuildDir 12.0
  IF DEFINED MSBUILDDIR (
    SET YEAR=2013
  )
)