lipchev
lipchev
> > > > Has anyone tried this ? > > [Continuous Benchmark (.NET)](https://github.com/marketplace/actions/continuous-benchmark-net) > > Yep, I'm currently using it in [Handlebars.Net](https://github.com/Handlebars-Net/Handlebars.Net). We're also exploring this in [UnitsNet](https://github.com/angularsen/UnitsNet/pull/923). I've...
This would indeed be very helpful- it is just the amount of space my reports need in order to avoid line wrapping.. Additionally I think the same logic applies to...
I think throwing an exception would definitely be a breaking change for some people who never noticed the memory leak (and were ok with it). A log message would seem...
Right, so I've been profiling another application where I've got some long lived objects (cached in a single ORM context), bound to a ListView (virtualization enabled). Each item is then...
In my case the unload behavior is set to `UnloadBehavior.CloseViewModel`, I'm considering switching to `CancelAndCloseViewModel` instead, but that would need some special handling- as I'm currently using the CancelAsync method...
It took a bit of work but I managed switching to using CancelAndCloseViewModel and that plugged the leaks. > > > When a view is unloaded, Catel should cancel it....
I think the second option is the way to go- what you are describing is exactly the behavior that I would expect with the `UnloadBehavior.CloseViewModel` (given the two other alternatives)....
Great- after installing the tool from the locally built nuget (replacing `referenceKey` with `s_referenceKey`), I was able to get the correct `Reference.cs`. Is there a way to update the package...
@pgrawehr Yes, quite so I'm afraid- I actually started off with the implementation from your branch, but things evolved quickly from there - up to the point where It's now...
Ah, damn it- I just re-read what I wrote last night, realizing that the equality contract is still broken- due to the lack of transitivity (again).. If we wanted to...