diff options
author | Stephen Toub <stoub@microsoft.com> | 2015-07-01 09:13:20 -0400 |
---|---|---|
committer | Stephen Toub <stoub@microsoft.com> | 2015-07-01 09:13:20 -0400 |
commit | 2219d103cc1a881f154a657dc522b496a4e3b6d1 (patch) | |
tree | 5fc2e5686a03ad52518edddea650f87b5d1d9768 | |
parent | 572b986b2e7ca4bc25e05be96872bcab506b745e (diff) | |
parent | da0d8dd6db63a5ab547879e0b3071b0321fa44be (diff) | |
download | coreclr-2219d103cc1a881f154a657dc522b496a4e3b6d1.tar.gz coreclr-2219d103cc1a881f154a657dc522b496a4e3b6d1.tar.bz2 coreclr-2219d103cc1a881f154a657dc522b496a4e3b6d1.zip |
Merge pull request #1189 from MarcelGosselin/master
Fix broken Developer Guide documentation links
-rw-r--r-- | build.cmd | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -97,14 +97,14 @@ goto CheckVS :: Check presence of VS if defined VS%__VSProductVersion%COMNTOOLS goto CheckVSExistence echo Visual Studio 2013 Community (free) is a pre-requisite to build this repository. -echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/developer-guide.md#prerequisites +echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :CheckVSExistence :: Does VS 2013 or VS 2015 really exist? if exist "!VS%__VSProductVersion%COMNTOOLS!\..\IDE\devenv.exe" goto CheckMSBuild echo Visual Studio 2013 Community (free) is a pre-requisite to build this repository. -echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/developer-guide.md#prerequisites +echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :CheckMSBuild @@ -122,7 +122,7 @@ set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" set UseRoslynCompiler=true :CheckMSBuild14 if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe" -if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/developer-guide.md for build instructions. && exit /b 1 +if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1 :: All set to commence the build @@ -143,7 +143,7 @@ of previous version to "%VSINSTALLDIR%" and then resume build. :: DIA SDK not included in Express editions echo Visual Studio 2013 Express does not include the DIA SDK. ^ You need Visual Studio 2013 Community (free). -echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/developer-guide.md#prerequisites +echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites exit /b 1 :GenVSSolution |