Antony Male
Antony Male
At some point, I'd like to move to RestEase 2. There are two main things want to achieve: 1. Make use of source generators 2. Make Json.NET optional This issue...
Currently we just allow dictionaries, but we might as well permit `IEnumerable` instead of `IDictionary`
The "Upload Rate" and "Download Rate" for the other devices in the GUI are confusing. The numbers show how much data we're download from / uploading to that device, but...
This can happen when the user's full name is used as %USERPROFILE%. Fixes: #72
I have a simple script `test.csx`: ```cs Console.WriteLine(string.Join(" ", Args)); ``` And run it like: ``` dotnet script test.csx build --version=1.2.3 ``` In 1.3.1, the output is: > build, --version=1.2.3...
The version in the topic is generally kept well up-to-date, but the manpages frequently lag behind, presumably as people forget to update them. Having .version call .man_update might be a...
Can we have a new gem release of this? The last one is 3 years old, and its usage is completely different to the example shown in the README. Thanks!
Hi, I've run across a problem using `skip_message` with messages which contain a map. ```proto message Test { option (nanopb_msgopt).skip_message = true; map map = 1; } ``` nanopb still...
Currently, if the operation's event is ignored, the operation gets confused.
If you've got a custom subclass of State, for one state only, you can't use WithEntry on it, because it returns State rather than your custom state subclass. Not sure...