System.Data.SQLite

Check-in [6a7c6452dc]
Login

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

Overview
Comment:Revise batch build tool for Mono to include support for Visual Studio 2015.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6a7c6452dcd866576471a797ea27da9d8b4d5744
User & Date: mistachkin 2018-04-09 15:51:33.950
Context
2018-04-09
17:25
Revise batch build tool for Mono to include support for Visual Studio 2017 as well. check-in: 8903d7bf8e user: mistachkin tags: trunk
15:51
Revise batch build tool for Mono to include support for Visual Studio 2015. check-in: 6a7c6452dc user: mistachkin tags: trunk
2018-04-05
03:45
Pickup the SQLite core library 3.23.0 docs from upstream. check-in: 6bb5d25e27 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/build_mono.bat.
51
52
53
54
55
56
57










58
59
60
61
62
63
64

IF ERRORLEVEL 1 (
  ECHO Could not detect Visual Studio.
  GOTO errors
)

CALL :fn_UnsetVariable YEARS











IF NOT DEFINED NOVS2013 (
  IF DEFINED VS2013SP (
    SET YEARS=2013
  ) ELSE (
    ECHO Could not detect Visual Studio 2013.
  )







>
>
>
>
>
>
>
>
>
>







51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

IF ERRORLEVEL 1 (
  ECHO Could not detect Visual Studio.
  GOTO errors
)

CALL :fn_UnsetVariable YEARS

IF NOT DEFINED NOVS2015 (
  IF DEFINED VS2015SP (
    SET YEARS=2015
  ) ELSE (
    ECHO Could not detect Visual Studio 2015.
  )
) ELSE (
  ECHO Use of Visual Studio 2015 is disallowed.
)

IF NOT DEFINED NOVS2013 (
  IF DEFINED VS2013SP (
    SET YEARS=2013
  ) ELSE (
    ECHO Could not detect Visual Studio 2013.
  )