Skip to content

Commit

Permalink
Set Console.OutputEncoding <- System.Text.Encoding.UTF8
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Nov 3, 2016
1 parent 9f9b64a commit 7afa219
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 4.44.2 - 03.11.2016
*BUGFIX: Set Console.OutputEncoding <- System.Text.Encoding.UTF8 - https://github.com/fsharp/FAKE/pull/1414

#### 4.44.1 - 03.11.2016
* REVERT: Enable ServiceConfig element configuration in WixHelper - https://github.com/fsharp/FAKE/pull/1412

Expand Down
1 change: 1 addition & 0 deletions src/app/FakeLib/ProcessHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ let startedProcesses = ConcurrentBag()

/// [omit]
let start (proc : Process) =
System.Console.OutputEncoding <- System.Text.Encoding.UTF8
if isMono && proc.StartInfo.FileName.ToLowerInvariant().EndsWith(".exe") then
proc.StartInfo.Arguments <- "--debug \"" + proc.StartInfo.FileName + "\" " + proc.StartInfo.Arguments
proc.StartInfo.FileName <- monoPath
Expand Down

1 comment on commit 7afa219

@forki
Copy link
Member Author

@forki forki commented on 7afa219 Nov 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.