Yoshifumi Kawai
Yoshifumi Kawai
Are you installed Core library from NuGet?
maybe latest NuGetForUnity solves it. https://github.com/GlitchEnzo/NuGetForUnity/releases/tag/v4.1.1
Ah, that's true, there might be cases where you want to describe details. I think interpreting remarks doesn't seem like a bad idea.
Instead, the commands and options sections are shown, so is that not enough functionality? When the root command contains options, it becomes `Usage: [command] [options...] [-h|--help] [--version]` and the `Options`...
RazorConsole appears to be built on top of BackgroundService, so just implementing IHostApplicationBuilder won't be meaningful. In ConsoleAppFramework's IHost integration, the Host itself does Start. Anything beyond that level of...
Hmm, I'm not quite sure what exactly you're looking for. Since ConsoleAppContext is not a command argument, it is registered as a root command with no arguments. So when you...
Currently, the ConfigurationBuilder's Build is executed immediately, but it seems more correct to delay it. I think it would also be possible to add overloads when implementing the delay.
The solution is to change `public class` to `internal class`. However, I see, ConsoleAppContext might be fine as public rather than internal. I'll consider making the change after thinking about...
The Visual Studio hover is just a byproduct, and commands are never called directly from code, so I don't think there's value in strictly applying this. But well, I'll think...
Controlling it to that extent is outside the scope of a CUI execution framework, I think, since it doesn't govern the rendering. What do you think?