We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba1ebd commit 2203f2eCopy full SHA for 2203f2e
src/https/Program.cs
@@ -131,9 +131,12 @@ void Help()
131
{
132
var stream = _stdout();
133
var writer = new StreamWriter(stream) { AutoFlush = true };
134
+ writer.Write("dotnet-https ");
135
+ writer.WriteLine(typeof(Program).Assembly.GetName().Version);
136
writer.WriteLine("https [method] [uri] [options] [content]");
137
writer.WriteLine("For example https put httpbin.org/put hello=world");
138
writer.WriteLine("");
139
+
140
writer.Flush();
141
}
142
0 commit comments