Felix
Felix
I'm having the same problem. Interestingly as @Shatur writes vcpkg manages to copy all required dlls during the build (Not sure how this works, `qtdeploy.ps1`?). For normal development this is...
I'd suggest that, instead of exposing the `RedirectedStandardOutputHandler` and `RedirectedStandardErrorHandler` from `ProcessSettings`, we extend `ToolSettings` by an handler that gets passed the stdout and stderror, but doesnt intercept. We could...
After looking at different tool aliases, this seems to be the current behavior of most (all?) tools. https://github.com/cake-build/cake/blob/c39e42433275f6cbc39d565e6a3bc341fc07aec4/src/Cake.Core/Tooling/Tool.cs#L133-L141 If the exit code is not zero you'll get this generic error...
It would have to be a proxy `ProcessRunner`, as that is the one actually handling the redirect. https://github.com/cake-build/cake/blob/c39e42433275f6cbc39d565e6a3bc341fc07aec4/src/Cake.Core/IO/ProcessRunner.cs#L158-L170 Combining that with a opt-in via ToolSettings means that each alias would...
Looking around this seems to be a possible duplicate of #1423. It's also somewhat related to #2270 . If there was a way for Tool to pass a handler for...
This is trying to allocate roughly 222.222 x 222.222 `u16` wich is roughly 98GB. We should be able to handle this gracefully once [try_reserve](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve) is stable.
Hey, thanks for implementing this. Can confirm that this allows the usage of mavlink messages with a component ID of e.g. 158 ([MAV_COMP_ID_PERIPHERAL](https://mavlink.io/en/messages/common.html#MAV_COMP_ID_PERIPHERAL)) for VGIs:  LGTM!