Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2016-01-10 06:03:45 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2016-01-10 06:03:45 +0300
commit6956926848c5f8d0ae86bb51796447a07ddea7d0 (patch)
tree2555f78f035c9f574da58932a8aa75f1b26b522d /build.cmd
parent239e7dd3270aa6fc84154362918c8941c6658514 (diff)
Fix native-build command parsing and push it to log file in build.cmd
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.cmd b/build.cmd
index 3905d97672..c92efa4e0b 100644
--- a/build.cmd
+++ b/build.cmd
@@ -24,9 +24,10 @@ if not defined VisualStudioVersion (
:CheckNative
:: Run the Native Windows build
-call %~dp0src\native\Windows\build-native.cmd %*
+echo Building Native Libraries...
+call %~dp0src\native\Windows\build-native.cmd %* >nativebuild.log
IF ERRORLEVEL 1 (
- echo Native component build failed.
+ echo Native component build failed see nativebuild.log for more details.
)
:EnvSet