1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

supress even more detailed messages

This commit is contained in:
Ilya Shipitsin 2018-06-17 13:02:58 +05:00
parent 16a1d1f7a0
commit c84d7e4a27

View File

@ -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");