Skip to content

Commit

Permalink
Resolved problem with -cout parameter parameter looked at --cin as ch…
Browse files Browse the repository at this point in the history
…eck if --chout was set.

fixes Pxtl#21
  • Loading branch information
svallebro committed Mar 5, 2018
1 parent 0f2e26b commit 78e6850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PxtlCa.XmlCommentMarkDownGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void Main(string[] args)
var inReader = options.ConsoleIn
? Console.In
: new StreamReader(options.InputFile);
using (var outWriter = options.ConsoleIn
using (var outWriter = options.ConsoleOut
? Console.Out
: new StreamWriter(options.OutputFile)
)
Expand Down

0 comments on commit 78e6850

Please sign in to comment.