Jan Vargovský
Jan Vargovský
Added InlineReactionReply. InlineReactionReply is normal UserMessage with a set of reactions and its own callbacks. example story: user triggers a command bot responds with message e.g. "Do you want 1...
I haven't found that `IAsyncDisposable` is actually supported and thus not being called. I'm using implementation of `IHostedService`, so I can run something like ```csharp IServiceProvider _services; // injected and...
I've created default templated and added Blazorise, so my `_Host.cshtml` consist of following: ```html ``` generated `preview.html` looks like this: ```html ``` which causes problem that it tries to download...
As title says, you have wrong condition in the `Dispose` method of the `KeystrokeAPI` class. It is supposed to be ```csharp if (globalKeyboardHookId != IntPtr.Zero) User32.UnhookWindowsHookEx(globalKeyboardHookId); ``` instead of ```csharp...
### Installed product versions - Visual Studio: Microsoft Visual Studio Professional 2022 (64-bit) Version 17.0.6 - This extension: 1.14.4 ### Description Compiling `site.less` fails on access to the path 7z.dll...
Probably just add condition to Resources directory (Lib.csproj) - there are only windows resources right now and its pointless to deploy them on other platforms. I personally tried to use...
Windows' Toast Notifications requires registered application id in Registry in order to be able to push a notification. bbcore now sends windows notifications on behalf of powershell. Add bbcore into...
Is it possible to add support for commands (git clone, pull and push), to use implicit credentials as its done using git CLI?