Bart Verkoeijen

Results 10 comments of 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...

Thanks for the tip @1mike12, and thanks for the fix @pafry7! For yarn, add the following to the root `package.json` (leave your existing dependencies unchanged): ```json "resolutions": { "@gorhom/bottom-sheet": "github:pafry7/react-native-bottom-sheet#fix/config-reducerMotion-in-worklet"...

Would be great to have it working like @marbemac said. 😄 I was under the false impression that it was supposed to work since my local dev worked fine, but...

Thanks for that fix, that's good to have even with the side effect in local dev. In the meantime it may help others to add some guidance regarding this behavior...