Gabriel Bider
Gabriel Bider
Thanks for your quick response. I wasn't aware of the numerous things you had planned for this amazing library! That list seems quite ambitious, especially the pipelines implementation, but I...
Performance improvements are always a welcome thing. Great work, @jehugaleahsa!
`UseGrace` already exists as an extension method on `IHostBuilder` in addition to `IWebHostBuilder`. Have you tried it?
Interesting; your answer now seems very obvious when I read it. Is there any way to disable this implicit behaviour?
That'd be much appreciated and quite useful! Thanks :)
@ipjohnson That's brilliant, huge thanks. Is the `SingletonPerKey` smart enough to not re-register the service if I provide it an already registered key? If I run this: ```csharp container.Configure(c =>...
I was thinking a combination of both. Cache an instance based on a key (which is also a constructor argument to the type being resolved) that is different depending on...
Having the same issue. `TheCallingAssembly()` method in netcoreapp2.0 mysteriously returns the StructureMap assembly instead of my MVC project assembly. And for some reason it says assembly version 4.5.0.0 instead of...
I checked the code [here](https://github.com/structuremap/structuremap/blob/master/src/StructureMap/Graph/AssemblyScanner.cs#L326) and right now the way `TheCallingAssembly()` determines the calling assembly based on the stack trace seems a bit arbitrary. You seem to assume that the...
Ok, I see thanks for the suggestion. Perhaps some convenience methods would be good to have here? Also it'd be nice to finally get those wrapper methods from `Grace.Net` implemented....