No matter which spinner I choose, it doesn't show #1417
-
Hello. I am new to Spectre.Console, and I am trying to add a spinner using await AnsiConsole.Status()
.Spinner(Spinner.Known.Dots8Bit)
.StartAsync("Searching...", async (context) =>
{
references = await PotentialReferencesService.GetPotentialReferencesForObjectNameAsync(settings.ObjectName);
}); Anything missing here? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
patriksvensson
Dec 29, 2023
Replies: 1 comment
-
Your terminal does not have UTF-8 output encoding, so Spectre.Console falls back to a compatible spinner (ASCII). You can read more about this here: https://spectreconsole.net/best-practices |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
patriksvensson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your terminal does not have UTF-8 output encoding, so Spectre.Console falls back to a compatible spinner (ASCII). You can read more about this here: https://spectreconsole.net/best-practices