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.
2 parents 93ad627 + 395740e commit 0cb1c22Copy full SHA for 0cb1c22
src/GitVersionCore/Configuration/ConsoleAdapter.cs
@@ -6,22 +6,22 @@ class ConsoleAdapter : IConsole
6
{
7
public void WriteLine(string msg)
8
9
- throw new NotImplementedException();
+ Console.WriteLine(msg);
10
}
11
12
public void WriteLine()
13
14
+ Console.WriteLine();
15
16
17
public void Write(string msg)
18
19
+ Console.Write(msg);
20
21
22
public string ReadLine()
23
24
+ return Console.ReadLine();
25
26
27
public IDisposable UseColor(ConsoleColor consoleColor)
0 commit comments