diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-18 19:52:41 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-18 19:53:50 -0800 |
commit | abe869bc02ca037ceb3b202b844157eaf8ca8c7f (patch) | |
tree | c513820f9dc2f5fe46c1e6202cd2d13cbb546dc6 | |
parent | ba92d01ee3a93341f2f65a150b401ca63adf28e7 (diff) | |
download | DotNetOpenAuth-abe869bc02ca037ceb3b202b844157eaf8ca8c7f.zip DotNetOpenAuth-abe869bc02ca037ceb3b202b844157eaf8ca8c7f.tar.gz DotNetOpenAuth-abe869bc02ca037ceb3b202b844157eaf8ca8c7f.tar.bz2 |
Fixed flashing of the console window during builds within the IDE.
-rw-r--r-- | lib/DotNetOpenAuth.BuildTasks.dll | bin | 58368 -> 58368 bytes | |||
-rw-r--r-- | lib/DotNetOpenAuth.BuildTasks.pdb | bin | 144896 -> 144896 bytes | |||
-rw-r--r-- | src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs | 1 |
3 files changed, 1 insertions, 0 deletions
diff --git a/lib/DotNetOpenAuth.BuildTasks.dll b/lib/DotNetOpenAuth.BuildTasks.dll Binary files differindex 0393d02..224516d 100644 --- a/lib/DotNetOpenAuth.BuildTasks.dll +++ b/lib/DotNetOpenAuth.BuildTasks.dll diff --git a/lib/DotNetOpenAuth.BuildTasks.pdb b/lib/DotNetOpenAuth.BuildTasks.pdb Binary files differindex 0c13f09..580835b 100644 --- a/lib/DotNetOpenAuth.BuildTasks.pdb +++ b/lib/DotNetOpenAuth.BuildTasks.pdb diff --git a/src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs b/src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs index 23db9a6..1d60ca4 100644 --- a/src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs +++ b/src/DotNetOpenAuth.BuildTasks/GetBuildVersion.cs @@ -61,6 +61,7 @@ namespace DotNetOpenAuth.BuildTasks { string cmdPath = Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.System), "cmd.exe"); ProcessStartInfo psi = new ProcessStartInfo(cmdPath, "/c git rev-parse HEAD"); psi.WindowStyle = ProcessWindowStyle.Hidden; + psi.CreateNoWindow = true; psi.RedirectStandardOutput = true; psi.UseShellExecute = false; Process git = Process.Start(psi); |