summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorMarcel Gosselin <marcel.gosselin@gmail.com>2015-07-01 03:18:52 -0400
committerMarcel Gosselin <marcel.gosselin@gmail.com>2015-07-01 03:18:52 -0400
commitda0d8dd6db63a5ab547879e0b3071b0321fa44be (patch)
tree5fc2e5686a03ad52518edddea650f87b5d1d9768 /build.cmd
parent572b986b2e7ca4bc25e05be96872bcab506b745e (diff)
downloadcoreclr-da0d8dd6db63a5ab547879e0b3071b0321fa44be.tar.gz
coreclr-da0d8dd6db63a5ab547879e0b3071b0321fa44be.tar.bz2
coreclr-da0d8dd6db63a5ab547879e0b3071b0321fa44be.zip
Fix broken Developer Guide documentation links
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.cmd b/build.cmd
index c6e7275a6d..a964a1589e 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