Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Attempt to use MSBuild v16.0, if available. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f6aa557316b52235792abd81511b60cf |
User & Date: | mistachkin 2020-03-10 03:49:43.511 |
References
2020-04-03
| ||
18:24 | Cherrypick of [f6aa557316]. check-in: 5216297fcd user: mistachkin tags: branch-1.0.112 | |
Context
2020-05-30
| ||
14:28 | Temporarily remove the preliminary support for the .NET Framework 4.8. check-in: 1911e60e5e user: mistachkin tags: trunk | |
2020-04-03
| ||
18:24 | Cherrypick of [f6aa557316]. check-in: 5216297fcd user: mistachkin tags: branch-1.0.112 | |
2020-03-27
| ||
16:08 | Enhancements to the build system, including better support for 'vswhere' and 'dotnet restore' automation. check-in: 18cf53434a user: mistachkin tags: trunk | |
2020-03-10
| ||
03:49 | Attempt to use MSBuild v16.0, if available. check-in: f6aa557316 user: mistachkin tags: trunk | |
03:44 | Add preliminary support for the .NET Framework 4.8. check-in: d6b5423937 user: mistachkin tags: trunk | |
Changes
Changes to Setup/build.bat.
︙ | ︙ | |||
356 357 358 359 360 361 362 | SET YEAR=%NETFX48YEAR% ) ELSE ( SET YEAR=2017 ) ) CALL :fn_CheckFrameworkDir v4.0.30319 CALL :fn_CheckMsBuildDir 14.0 | | > > > > > > > > > | 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | SET YEAR=%NETFX48YEAR% ) ELSE ( SET YEAR=2017 ) ) CALL :fn_CheckFrameworkDir v4.0.30319 CALL :fn_CheckMsBuildDir 14.0 CALL :fn_CheckVisualStudioMsBuildDir Current 16.0 GOTO setup_buildToolDir ) REM REM TODO: When the next version of Visual Studio and/or MSBuild is released, REM this section may need updating. REM IF NOT DEFINED VISUALSTUDIOMSBUILDDIR ( CALL :fn_CheckVisualStudioMsBuildDir Current 16.0 IF DEFINED VISUALSTUDIOMSBUILDDIR ( IF NOT DEFINED YEAR ( SET YEAR=2017 ) ) ) IF NOT DEFINED VISUALSTUDIOMSBUILDDIR ( CALL :fn_CheckVisualStudioMsBuildDir 15.0 15.0 IF DEFINED VISUALSTUDIOMSBUILDDIR ( IF NOT DEFINED YEAR ( SET YEAR=2017 ) ) |
︙ | ︙ |