Permalink
Please
sign in to comment.
Browse files
Manually update the dependencies.props and move S.P.Corelib to use La…
…ngVersion=8.0 (#22452) * Update BuildTools to preview1-03713-01 (master) * Updating CoreCLR to use LangVersion=8.0 * Moving the Windows scripts to default to `dotnet msbuild` for managed components * Setting UseSharedCompilation=true * Changing some additional callsites that were using msbuild to use dotnet msbuild * Revert packages.builds to use Desktop msbuild on Windows * Fixing runtest.cmd to always set DotNetCli
- Loading branch information...
Showing
with
90 additions
and 105 deletions.
- +1 −1 BuildToolsVersion.txt
- +2 −2 UpdatePublishedVersions.ps1
- +2 −2 build-packages.cmd
- +1 −1 build-packages.sh
- +14 −19 build-test.cmd
- +8 −13 build.cmd
- +2 −2 build.sh
- +2 −2 clean.cmd
- +2 −2 dependencies.props
- +9 −11 dir.props
- +30 −0 dotnet.cmd
- +2 −2 publish-packages.cmd
- +0 −1 src/System.Private.CoreLib/System.Private.CoreLib.csproj
- +0 −1 src/System.Private.CoreLib/Tools/GenUnicodeProp/GenUnicodeProp.csproj
- +2 −2 sync.cmd
- +5 −6 tests/dir.props
- +7 −18 tests/runtest.cmd
- +0 −1 tests/src/CoreMangLib/system/span/RefStructWithSpan.csproj
- +0 −1 tests/src/CoreMangLib/system/span/SlowTailCallArgs.csproj
- +0 −1 tests/src/Interop/PInvoke/ArrayWithOffset/ArrayWithOffsetTest.csproj
- +0 −1 tests/src/JIT/Directed/StructPromote/Unsafe/AccessInvalidFieldOffset.csproj
- +0 −1 tests/src/JIT/Directed/StructPromote/Unsafe/ReadDoubleFromIntOffset.csproj
- +0 −1 tests/src/JIT/Directed/StructPromote/Unsafe/ReadStructAsAnotherType.csproj
- +0 −1 tests/src/JIT/HardwareIntrinsics/X86/Sse2/dir.props
- +0 −1 tests/src/JIT/Performance/CodeQuality/Span/Indexer.csproj
- +0 −1 tests/src/JIT/Performance/CodeQuality/Span/SpanBench.csproj
- +0 −2 tests/src/JIT/Regression/JitBlue/DevDiv_736188/DevDiv_736188.csproj
- +0 −1 tests/src/JIT/Regression/JitBlue/GitHub_21915/Github_21915.csproj
- +0 −1 tests/src/JIT/Regression/JitBlue/GitHub_21990/GitHub_21990.csproj
- +1 −2 tests/src/JIT/opt/Devirtualization/box2.csproj
- +0 −1 tests/src/baseservices/TieredCompilation/TieredVtableMethodTests.csproj
- +0 −1 tests/src/baseservices/exceptions/stacktrace/Tier1StackTrace.csproj
- +0 −1 tests/src/readytorun/DynamicMethodGCStress/DynamicMethodGCStress.csproj
- +0 −1 tests/src/reflection/SetValue/TrySetReadonlyStaticField.csproj
- +0 −1 tests/src/reflection/Tier1Collectible/Tier1Collectible.csproj
@@ -1 +1 @@ | |||
3.0.0-preview1-03617-02 | |||
3.0.0-preview1-03713-01 |
@@ -0,0 +1,30 @@ | |||
@if not defined _echo @echo off | |||
setlocal | |||
|
|||
set "__ProjectDir=%~dp0" | |||
|
|||
call "%__ProjectDir%"\setup_vs_tools.cmd | |||
|
|||
REM setup_vs_tools.cmd will correctly echo error message. | |||
if NOT '%ERRORLEVEL%' == '0' exit /b 1 | |||
|
|||
:: Clear the 'Platform' env variable for this session, as it's a per-project setting within the build, and | |||
:: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69). | |||
set Platform= | |||
set __ProjectDir= | |||
|
|||
:: Restore the Tools directory | |||
call %~dp0init-tools.cmd | |||
if NOT [%ERRORLEVEL%]==[0] ( | |||
exit /b 1 | |||
) | |||
|
|||
pushd %~dp0 | |||
echo Running: dotnet %* | |||
call "%~dp0\Tools\dotnetcli\dotnet.exe" %* | |||
popd | |||
if NOT [%ERRORLEVEL%]==[0] ( | |||
exit /b 1 | |||
) | |||
|
|||
exit /b 0 |

Oops, something went wrong.
0 comments on commit
cd9831c