Stan Wijckmans

Results 46 comments of Stan Wijckmans

Inside the MQTTnet library where we originally discovered this it has ConfigureAwait(false). I will retest but I don't think it's the cause.

I got something like a dispatcher running in a console app using the AsyncEx Nuget package, but no repro that way. ``` using Nito.AsyncEx; internal class Program { private static...

Just had this in C++, but the CPU was under load so that is acceptable. ``` Too long: 636 Too long: 1165 Too long: 869 ``` EDIT: Bingo, have a...

@maxkatz6 seems you are right. After running `defaults write NSGlobalDomain NSAppSleepDisabled -bool YES` to disable App Nap globally the issue is completely gone. Thanks! So yep, we need to look...

I will try to add an option to disable this in MacOSPlatformOptions.

Created a PR with new option, ~~but the app crashes when loading. Any ideas? My C++ is decent but I do not see what is going wrong here.~~ Today it...

> You can test this PR using the following package version. `11.0.999-cibuild0023557-beta`. (feed url: https://nuget.avaloniaui.net/repository/avalonia-all/index.json) [PRBUILDID] Just want to say that this is super convenient for if you want to...

> I don't think it should be am app-wide setting, that would incentive invalid app behavior. The app is supposed to ask the OS to not use app-nap while the...

Ok I made something that works like you suggested.

It looks like the options for Windows are to prevent the entire system to go to sleep. This is not equivalent to App Nap which puts this specific app to...