Skip to content

Commit 20a00b8

Browse files
committed
Hide console window during pdb2mdb running
1 parent 69404dd commit 20a00b8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/IncrementalCompiler/Compiler.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ public static int ConvertPdb2Mdb(string dllFile)
267267
var toolPath = Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), "pdb2mdb.exe");
268268
var process = new Process();
269269
process.StartInfo = new ProcessStartInfo(toolPath, '"' + dllFile + '"');
270+
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
270271
process.Start();
271272
process.WaitForExit();
272273
return process.ExitCode;

0 commit comments

Comments
 (0)