nulltoken
nulltoken
:wave: I don't see this as a breaking change. @poveden Thoughts?
@Zoltu Indeed, libgit2 exposes the concepts of pluggable backends: to my knowledge there are 3 of them: object database, reference database and configuration storage. - The object database backend is...
https://github.com/libgit2/libgit2/blob/master/include/git2/sys/config.h
@zoltu The interop layer is indeed the less polished part of the codebase. The `Proxy` layer is there to avoid polluting too much the remaining parts of the code. One...
> How often is this called (object iteration, partial or complete)? This is being called when the consumer leverages the `ObjectDatabase.IEnumerator` implementation. > How bad is it if we miss...
@carlosmn :heart:
> Maybe some sort of NativeBinaries.Debug package that's built in addition to the regular package? Indeed, that's the idea > Then LibGit2Sharp could depend on the Debug package, and when...
Thanks for reporting this. > When installing the package, npm gives warning EBADENGINE Unsupported engine. What version of Nodejs are you using? > Can we change the supported node version...
Fixed by #308
How about replicating the way IServiceCollection.AddSingleton() works? There's an extension that accepts a IServiceProvider. This way, the user could either resolve a IConfiguration or a bound xxxOptions directly? Another option...