Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct configuration suffix handling in the .NET Standard test batch tool. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | preRelease |
Files: | files | file ages | folders |
SHA1: |
15814cefdcb961d242bbaf7839f75bf0 |
User & Date: | mistachkin 2018-08-13 19:09:37.442 |
Context
2018-08-13
| ||
19:47 | Make it possible for the managed and native test configuration suffixes to differ. check-in: c3d7f73889 user: mistachkin tags: preRelease | |
19:09 | Correct configuration suffix handling in the .NET Standard test batch tool. check-in: 15814cefdc user: mistachkin tags: preRelease | |
04:47 | Add 'dllmap' element to the System.Data.SQLite assembly configuration file for NuGet in order to better support Mono. check-in: f8caa45f2f user: mistachkin tags: preRelease | |
Changes
Changes to Setup/test_net_standard_20.bat.
︙ | ︙ | |||
177 178 179 180 181 182 183 184 185 186 187 188 189 190 | IF NOT DEFINED NATIVE_YEAR ( ECHO Cannot run .NET Core test suite, missing native year. CALL :fn_SetErrorLevel GOTO :EOF ) SET CONFIGURATION=%NATIVE_CONFIGURATION% SET CONFIGURATION=%CONFIGURATION:NativeOnly=% IF EXIST "bin\%YEAR%\%CONFIGURATION%\bin" ( IF EXIST "bin\%NATIVE_YEAR%\%PLATFORM%\%NATIVE_CONFIGURATION%" ( %__ECHO% "%DOTNET%" %SUBCOMMANDS% "Externals\Eagle\bin\netStandard20\%EAGLESHELL%" %PREARGS% -anyInitialize "set test_year {%YEAR%}; set test_native_year {%NATIVE_YEAR%}; set test_configuration {%CONFIGURATION%}" -file "%TEST_FILE%" %POSTARGS% IF ERRORLEVEL 1 ( ECHO Testing of "%YEAR%/%NATIVE_YEAR%/%CONFIGURATION%" .NET Standard 2.0 assembly failed. CALL :fn_SetErrorLevel GOTO :EOF | > | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | IF NOT DEFINED NATIVE_YEAR ( ECHO Cannot run .NET Core test suite, missing native year. CALL :fn_SetErrorLevel GOTO :EOF ) SET CONFIGURATION=%NATIVE_CONFIGURATION% SET CONFIGURATION=%CONFIGURATION:NativeOnly=% SET CONFIGURATION=%CONFIGURATION%NetStandard20 IF EXIST "bin\%YEAR%\%CONFIGURATION%\bin" ( IF EXIST "bin\%NATIVE_YEAR%\%PLATFORM%\%NATIVE_CONFIGURATION%" ( %__ECHO% "%DOTNET%" %SUBCOMMANDS% "Externals\Eagle\bin\netStandard20\%EAGLESHELL%" %PREARGS% -anyInitialize "set test_year {%YEAR%}; set test_native_year {%NATIVE_YEAR%}; set test_configuration {%CONFIGURATION%}" -file "%TEST_FILE%" %POSTARGS% IF ERRORLEVEL 1 ( ECHO Testing of "%YEAR%/%NATIVE_YEAR%/%CONFIGURATION%" .NET Standard 2.0 assembly failed. CALL :fn_SetErrorLevel GOTO :EOF |
︙ | ︙ |