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 319fd07 commit 0176561Copy full SHA for 0176561
src/Tests/dotnet-watch.Tests/Utilities/AwaitableProcess.cs
@@ -51,6 +51,8 @@ public void Start()
51
var processStartInfo = _spec.GetProcessStartInfo();
52
processStartInfo.RedirectStandardOutput = true;
53
processStartInfo.RedirectStandardError = true;
54
+ processStartInfo.StandardOutputEncoding = Encoding.UTF8;
55
+ processStartInfo.StandardErrorEncoding = Encoding.UTF8;
56
processStartInfo.Environment["DOTNET_SKIP_FIRST_TIME_EXPERIENCE"] = "true";
57
58
_process = new Process
0 commit comments