Bart Verkoeijen
Bart Verkoeijen
> ☹️ ....but subcommands have no role in binding, so the API might be a little more cluttered if they're included. I've been preferring an approach where my commands are...
@KathleenDollard I'm first setting things up in `Program.cs`: ```cs using System.CommandLine; using System.CommandLine.Builder; using System.CommandLine.Parsing; using Microsoft.Extensions.DependencyInjection; using MyApp.Cli.Commands; using MyApp.Cli.Models; using MyApp.Cli.Services; // See https://aka.ms/new-console-template for more information. var...
Before I was able to specify types on the handler that would automatically injected, and would resolve to the services registered in a middleware on startup. So a Command class...
Like your solution @jonsequitur! FYI, I'm using the extension method `GetRequiredService(this IServiceProvider provider)` from `Microsoft.Extensions.DependencyInjection` to play nicely with `enable` in csproj.
Thanks, will keep an eye out for a new version, or let me know if you want me to test a debug build.
Would the solution to explicitly state the ciphers for openssl also work for mkcert internals? See https://github.com/homebridge/homebridge-config-ui-x/issues/1428#issuecomment-1712369849
I got this error with zsh because I load the homebrew environment variables with this command in `.zprofile`: ```zsh eval "$(/opt/homebrew/bin/brew shellenv)" ``` And was loading NVM in `.zshenv` per...