Dave Van den Eynde

Results 14 comments of Dave Van den Eynde

I came across this issue as well. Thanks for the workaround!

Does this reproduce the problem? ``` public static async Task Main() { Console.WriteLine($"TotalMemory: {GC.GetTotalMemory(true):#,0} bytes"); var lazy = new Nito.AsyncEx.AsyncLazy(GetFunction); Console.WriteLine($"AsyncLazy result: {await lazy:#,0}"); await Task.Yield(); GC.Collect(); Console.WriteLine($"TotalMemory: {GC.GetTotalMemory(true):#,0} bytes");...

Sure, it's missing the `async` keyword, and I didn't change the name. Oh I see, your point is that the function passed to the `AsyncLazy` constructor should be forgotten after...

Yes, please let us know if you're planning to update this mod.

Is this still a viable PR?

In my humble opinion, once you change the license, you're effectively forking the project, and you're changing the whole dynamic of the community. I'm hoping people will still make contributions...

Nothing. In my opinion, the PR that merged the changed license is the fork. On Mon, 16 Oct 2023 at 21:51, csturm83 ***@***.***> wrote: > Right. Also not a lawyer,...

What keeps you from fixing the problem in the fork? Seeing how it’s fixed and then writing your own is not a copyright violation. On Wed, 18 Oct 2023 at...

How easy is it to do this?

You're right, I was looking for a simple docker image to get a local development env going on but I was intimidated by the wurstmeister image, but I never got...