From da0d8dd6db63a5ab547879e0b3071b0321fa44be Mon Sep 17 00:00:00 2001 From: Marcel Gosselin Date: Wed, 1 Jul 2015 03:18:52 -0400 Subject: [PATCH] Fix broken Developer Guide documentation links --- build.cmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.cmd b/build.cmd index c6e7275..a964a15 100644 --- a/build.cmd +++ b/build.cmd @@ -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 -- 2.7.4