Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge updates from trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard20 |
Files: | files | file ages | folders |
SHA1: |
c0a69eeb3ca8ca34a57a39ec28dc39f7 |
User & Date: | mistachkin 2018-04-09 17:26:08.701 |
Context
2018-04-13
| ||
12:49 | Merge updates from trunk. check-in: 3c9aa14d0e user: mistachkin tags: netStandard20 | |
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 | |
2018-04-08
| ||
18:30 | Adjust to upstream changes in test constraints for .NET Core. check-in: 0083cd98e7 user: mistachkin tags: netStandard20 | |
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 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 75 76 77 78 79 80 81 82 83 84 | 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. ) ) 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. ) |
︙ | ︙ |