Pavel Krymets

Results 45 comments of Pavel Krymets

Seems to be related to the recent `text/plain` change.

Hi! Thank you for the report. Considering that VS and dotnet build work, this seems to be a Rider issue. Do you mind filing an issue in [rider issue tracker](https://youtrack.jetbrains.com/issues/RIDER)?

[This issue](https://youtrack.jetbrains.com/issue/RIDER-80865/Source-Generators-in-Rider-20222-with-Net6-require-a-total-restart-of-Rider-to-have-the-editor-recognize-generated-symbols) looks slightly related

Take a look at this target: https://github.com/pakrym/jab/blob/main/src/Jab.Tests/Jab.Tests.csproj#L33 It generates the https://github.com/pakrym/jab/blob/main/src/Jab/Properties/launchSettings.json file that mimicks the csc invocation and allows for F5 debugging.

I think it's a great idea. Which conventions do you think would be the most useful?

Can you show me a more extended example of what you are imagining, please? > What was the reason for choosing an interface over a class for modules? It avoids...

Hm, I can't repro this one. Are on the latest version? This is the `Program.cs` I used. ``` using Jab; var c = new Container(); c.GetService(); internal interface IService where...

This (Jab fully replacing the default DI) is something I would love to implement. But unfortunately there are two technical issues that stand in the way: 1. In a typical...

So while fully replacing the default service provider is hard short term I'll still try to think if there is any way to integrate them in a clean way. I'm...

The linked approach has a problem: now you have 2 DI containers managing the same set of objects causing problems like multiple disposal. It also makes it hard to resolve...