forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Manually update the dependencies.props and move S.P.Corelib to use La…
…ngVersion=8.0 (dotnet/coreclr#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 Commit migrated from dotnet/coreclr@cd9831c
- Loading branch information
1 parent
d52be3f
commit dbe4607
Showing
35 changed files
with
90 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0.0-preview1-03617-02 | ||
3.0.0-preview1-03713-01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.