Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Revise batch build tool for Mono to include support for Visual Studio 2017 as well. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8903d7bf8ea2ecf621996336dca021f8 |
User & Date: | mistachkin 2018-04-09 17:25:12.621 |
Context
2018-04-12
| ||
18:34 | Add GetFieldAffinity method to the SQLiteDataReader class. check-in: bfd912fefd user: mistachkin tags: trunk | |
2018-04-09
| ||
17:26 | Merge updates from trunk. check-in: c0a69eeb3c user: mistachkin tags: netStandard20 | |
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 | |
Changes
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 NOVS2015 ( IF DEFINED VS2015SP ( SET YEARS=2015 ) ELSE ( ECHO Could not detect Visual Studio 2015. ) | > > > > > > > > > > | 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 NOVS2017 ( IF DEFINED VS2017SP ( SET YEARS=2017 ) ELSE ( ECHO Could not detect Visual Studio 2017. ) ) ELSE ( ECHO Use of Visual Studio 2017 is disallowed. ) IF NOT DEFINED NOVS2015 ( IF DEFINED VS2015SP ( SET YEARS=2015 ) ELSE ( ECHO Could not detect Visual Studio 2015. ) |
︙ | ︙ |