Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | There is no setup package for the .NET Standard 2.0 -AND- its precompiled binaries packages are treated specially. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | preRelease |
Files: | files | file ages | folders |
SHA1: |
733b300527b815185fed155143e9f44b |
User & Date: | mistachkin 2018-08-13 20:26:16.109 |
Context
2018-08-13
| ||
20:41 | Fixes to the NuGet package build tooling. check-in: 70a0a088f0 user: mistachkin tags: preRelease | |
20:26 | There is no setup package for the .NET Standard 2.0 -AND- its precompiled binaries packages are treated specially. check-in: 733b300527 user: mistachkin tags: preRelease | |
20:12 | Update the CHM file for release 1.0.109.0. check-in: 7664bb096b user: mistachkin tags: preRelease | |
Changes
Changes to Setup/bake_all.bat.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | %__ECHO3% CALL "%TOOLS%\vsSp.bat" IF ERRORLEVEL 1 ( ECHO Could not detect Visual Studio. GOTO errors ) %__ECHO3% CALL "%TOOLS%\set_common.bat" IF ERRORLEVEL 1 ( ECHO Could not set common variables. GOTO errors ) | > > > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | %__ECHO3% CALL "%TOOLS%\vsSp.bat" IF ERRORLEVEL 1 ( ECHO Could not detect Visual Studio. GOTO errors ) REM REM NOTE: There is no setup package for the .NET Standard 2.0. REM SET NONETSTANDARD20=1 %__ECHO3% CALL "%TOOLS%\set_common.bat" IF ERRORLEVEL 1 ( ECHO Could not set common variables. GOTO errors ) |
︙ | ︙ |
Changes to Setup/release_all.bat.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | %__ECHO3% CALL "%TOOLS%\vsSp.bat" IF ERRORLEVEL 1 ( ECHO Could not detect Visual Studio. GOTO errors ) %__ECHO3% CALL "%TOOLS%\set_common.bat" IF ERRORLEVEL 1 ( ECHO Could not set common variables. GOTO errors ) | > > > > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | %__ECHO3% CALL "%TOOLS%\vsSp.bat" IF ERRORLEVEL 1 ( ECHO Could not detect Visual Studio. GOTO errors ) REM REM NOTE: Precompiled binary packages for the .NET Standard 2.0 are handled REM by another tool. REM SET NONETSTANDARD20=1 %__ECHO3% CALL "%TOOLS%\set_common.bat" IF ERRORLEVEL 1 ( ECHO Could not set common variables. GOTO errors ) |
︙ | ︙ |