Results 105 comments of Nemec

Hey @RedMser I just checked in an implementation of my solution described above. I am putting it in the 2.0 branch, so I have no idea when it will be...

Not sure if this is the same issue you're seeing, but it works for me if I manually add a `.csproj` extension to the default chosen file name in the...

It does not. There was a comment in one of the issues where someone mentioned they remove the first item from `args` each time a verb is hit and then...

Try removing the call to `DefaultParsingErrorsHandler`: var helpText = HelpText.AutoBuild(parserResult, h => h, e => { return e; }); Console.WriteLine(helpText);

Is that so? I tested it on the latest version just before posting the suggestion, so it's odd that the solution doesn't work for you. Below is what I tried....

It looks like you are doing everything right. If you run `dir` in that release folder, does the last modified date of the exe you're running match the last time...

Should this be configured to use SQLite by default? Not everyone will have a postgres database and it would let less-technical users get up and running quickly. Maybe even add...

The reason this error handling doesn't work is because the exception is trapped and logged within `download_media` https://github.com/pyrogram/pyrogram/blob/master/pyrogram/client.py#L1020-L1021 ``` except Exception as e: log.exception(e) ``` The code should either re-throw...

Well there's a strange little oddity. Technically, that's "expected behavior" based on the argument array that you're passing in to the parser, but since one of the primary uses of...