diff options
author | Daniel Podder <dapodd@microsoft.com> | 2017-06-29 04:05:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-29 04:05:38 -0500 |
commit | e6fe4aad7fdc7cf4db42753e8ad6e73fa0a7db15 (patch) | |
tree | c3a6da59a37de97d0a2ea9418df183d041e8146b /build.proj | |
parent | 03bec77fb4efaa397248a2b9a35c547522221447 (diff) | |
download | coreclr-e6fe4aad7fdc7cf4db42753e8ad6e73fa0a7db15.tar.gz coreclr-e6fe4aad7fdc7cf4db42753e8ad6e73fa0a7db15.tar.bz2 coreclr-e6fe4aad7fdc7cf4db42753e8ad6e73fa0a7db15.zip |
Reduce the verbosity of optdata sync on stdout (#12543)
Set the "StandardOutputImportance" attribute on the RestoreOptData
target to low, matching the "RestoreNETCorePlatforms" target. Logging
to sync.log remains verbose, but stdout on the console is made much less
verbose.
Fixes #12127
Diffstat (limited to 'build.proj')
-rw-r--r-- | build.proj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build.proj b/build.proj index 8d15cbcd6e..3889d1cafb 100644 --- a/build.proj +++ b/build.proj @@ -25,7 +25,8 @@ </Target> <Target Name="RestoreOptData"> - <Exec Command="$(DotnetRestoreCommand) $(SourceDir).nuget/optdata/optdata.csproj" /> + <Exec Command="$(DotnetRestoreCommand) $(SourceDir).nuget/optdata/optdata.csproj" + StandardOutputImportance="Low" /> </Target> <!-- |