Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit 4341ce6

Browse files
committed
Fixed flashing of the console window during builds within the IDE.
1 parent 8983ab9 commit 4341ce6

3 files changed

Lines changed: 1 addition & 0 deletions

File tree

lib/DotNetOpenAuth.BuildTasks.dll

512 Bytes
Binary file not shown.

lib/DotNetOpenAuth.BuildTasks.pdb

0 Bytes
Binary file not shown.

src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ private string GetGitHeadCommitId() {
6161
string cmdPath = Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.System), "cmd.exe");
6262
ProcessStartInfo psi = new ProcessStartInfo(cmdPath, "/c git rev-parse HEAD");
6363
psi.WindowStyle = ProcessWindowStyle.Hidden;
64+
psi.CreateNoWindow = true;
6465
psi.RedirectStandardOutput = true;
6566
psi.UseShellExecute = false;
6667
Process git = Process.Start(psi);

0 commit comments

Comments
 (0)