David A. Sjøen
David A. Sjøen
Will this be merged, @tochoromero?
I'll give it a go, @bigopon.
I agree, my take is to make the interface unimplemented, and add some documentation.
Running an `strace` leads me to suspect that running `docker-runc` inside a container isn't possible: It first reads the state of the plugin, finds the PID, and then tries opening...
Here's a script that lets one work around this: `build.sh` ```shell #!/bin/sh docker build -t buttervolume-cli -
As far as I can see from the source code, the CLI version needs access to `btrfs.sock`. To find that, it needs to know the path to the plugin, and...
@MaceWindu The trouble here is finding existing code that uses these comparisons. I used ReSharper pattern search, and found 64 places with `someUint32Expression == someInt32Expression`. Then you have the other...
This is one of the things solved by the following pull request: https://github.com/dennisroche/xunit.ioc.autofac/pull/12
@atsvetkov, the following workaround adds support for `@inject` attributes to `FluentEmail.Razor`: ```csharp services.AddRazorLight(() => new RazorLightEngineBuilder() .UseMemoryCachingProvider() .Build()); ``` ```csharp public static class FluentEmailExtensions { public static FluentEmailServicesBuilder AddInjectedRazorRenderer( this...