We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69404dd commit 20a00b8Copy full SHA for 20a00b8
core/IncrementalCompiler/Compiler.cs
@@ -267,6 +267,7 @@ public static int ConvertPdb2Mdb(string dllFile)
267
var toolPath = Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), "pdb2mdb.exe");
268
var process = new Process();
269
process.StartInfo = new ProcessStartInfo(toolPath, '"' + dllFile + '"');
270
+ process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
271
process.Start();
272
process.WaitForExit();
273
return process.ExitCode;
0 commit comments