From c20cc90b6020897e19185b1efc977f24b3ca8bb4 Mon Sep 17 00:00:00 2001 From: latkin Date: Tue, 3 Feb 2015 15:47:40 -0800 Subject: [PATCH] Fix NGen command in appveyor build script --- appveyor-build.cmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor-build.cmd b/appveyor-build.cmd index 017aff43348..5536898b3a4 100644 --- a/appveyor-build.cmd +++ b/appveyor-build.cmd @@ -25,7 +25,8 @@ if not exist %_ngenexe% echo Error: Could not find ngen.exe. && goto :eof %_msbuildexe% src\fsharp-proto-build.proj @if ERRORLEVEL 1 echo Error: compiler proto build failed && goto :eof -%_ngenexe% install lib\proto\fsc-proto.exe +%_ngenexe% install Proto\net40\bin\fsc-proto.exe +@if ERRORLEVEL 1 echo Error: NGen of proto failed && goto :eof %_msbuildexe% src/fsharp-library-build.proj /p:UseNugetPackages=true @if ERRORLEVEL 1 echo Error: library debug build failed && goto :eof