From c84d7e4a274e96fabdfdddb3201ced93957228aa Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Sun, 17 Jun 2018 13:02:58 +0500 Subject: [PATCH] supress even more detailed messages --- src/BuildUtil/Win32BuildUtil.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BuildUtil/Win32BuildUtil.cs b/src/BuildUtil/Win32BuildUtil.cs index a6172f15..e3b85cd2 100644 --- a/src/BuildUtil/Win32BuildUtil.cs +++ b/src/BuildUtil/Win32BuildUtil.cs @@ -627,19 +627,19 @@ namespace BuildUtil StreamWriter bat = new StreamWriter(batFileName, false, Str.ShiftJisEncoding); bat.WriteLine("call \"{0}\"", Paths.VisualStudioVCBatchFileName); bat.WriteLine("echo on"); - bat.WriteLine("\"{0}\" /toolsversion:3.5 /verbosity:detailed /target:Clean /property:Configuration=Release /property:Platform=Win32 \"{1}\"", + bat.WriteLine("\"{0}\" /toolsversion:3.5 /target:Clean /property:Configuration=Release /property:Platform=Win32 \"{1}\"", Paths.MSBuildFileName, Paths.VPN4SolutionFileName); bat.WriteLine("IF ERRORLEVEL 1 GOTO LABEL_ERROR"); - bat.WriteLine("\"{0}\" /toolsversion:3.5 /verbosity:detailed /target:Clean /property:Configuration=Release /property:Platform=x64 \"{1}\"", + bat.WriteLine("\"{0}\" /toolsversion:3.5 /target:Clean /property:Configuration=Release /property:Platform=x64 \"{1}\"", Paths.MSBuildFileName, Paths.VPN4SolutionFileName); bat.WriteLine("IF ERRORLEVEL 1 GOTO LABEL_ERROR"); - bat.WriteLine("\"{0}\" /toolsversion:3.5 /verbosity:detailed /target:Rebuild /property:Configuration=Release /property:Platform=Win32 \"{1}\"", + bat.WriteLine("\"{0}\" /toolsversion:3.5 /target:Rebuild /property:Configuration=Release /property:Platform=Win32 \"{1}\"", Paths.MSBuildFileName, Paths.VPN4SolutionFileName); bat.WriteLine("IF ERRORLEVEL 1 GOTO LABEL_ERROR"); - bat.WriteLine("\"{0}\" /toolsversion:3.5 /verbosity:detailed /target:Rebuild /property:Configuration=Release /property:Platform=x64 \"{1}\"", + bat.WriteLine("\"{0}\" /toolsversion:3.5 /target:Rebuild /property:Configuration=Release /property:Platform=x64 \"{1}\"", Paths.MSBuildFileName, Paths.VPN4SolutionFileName); bat.WriteLine("IF ERRORLEVEL 1 GOTO LABEL_ERROR");