git-svn-id: https://svn.kenai.com/svn/winsw~subversion/trunk@18 c8b2a3fe-9b5b-6a51-a37e-dc31b0e308fa
remotes/git-svn
kohsuke 2009-01-05 18:30:52 +00:00
parent 92418b67d8
commit 58d7f0afd2
1 changed files with 620 additions and 619 deletions

View File

@ -470,7 +470,8 @@ namespace winsw
ps.RedirectStandardError = true;
foreach (string key in envs.Keys)
ps.EnvironmentVariables[key] = envs[key];
System.Environment.SetEnvironmentVariable(key, envs[key]);
// ps.EnvironmentVariables[key] = envs[key]; // bugged (lower cases all variable names due to StringDictionary being used, see http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=326163)
process.Start();