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 51cc5a1 commit 5719656Copy full SHA for 5719656
new-cli/GitVersion.Cli/GitVersionApp.cs
@@ -20,10 +20,14 @@ public Task<int> RunAsync(string[] args) =>
20
EnrichLogger(context);
21
await next(context);
22
})
23
- .UseDefaults()
+ .UseDefaults() // this will also register for dotnet-suggest
24
.Build()
25
.InvokeAsync(args);
26
27
+ // Note: there are 2 locations to watch for dotnet-suggest
28
+ // - sentinel file: $env:TEMP\system-commandline-sentinel-files\ and
29
+ // - registration file: $env:LOCALAPPDATA\.dotnet-suggest-registration.txt
30
+
31
private static void EnrichLogger(InvocationContext context)
32
{
33
Option<T>? GetOption<T>(string alias)
0 commit comments