Jean-Sebastien Carle
Jean-Sebastien Carle
> That said, if you're willing to [build from source](https://github.com/cli/cli/blob/trunk/docs/source.md), I'd always appreciate the extra UX feedback, knowing that it satisfies your needs. Do you think it's feasible to build...
> @williammartin It's done. But there's a timing/state-refresh kind of issue happening here. Look at the bottom lines of the following QA script. The first time that we run `gh...
> @jscarle Thanks for the hint, but yeah I tried that and it didn't help. Seems like something has to trigger a merge-ability check on the server. Personally, I'd mostly...
You'd think that "ignore" would be clear enough.
There will be a new version coming out soon with a lot of the core internals being rewritten. I'd recommend you give it a try when it comes out and...
> Looks like the problem still exists in SSH.NET 2024. If we keep connection alive and continue to execute ssh commands using either RunCommand or CreateCommand then the amount of...
SshCommand is disposable, and you're not disposing it. Does this still produce the same issue? ```csharp SshClient sshClient = new SshClient("localhost", "user", "password"); sshClient.Connect(); int i = 0; while (i...
Unless you're using this code is an old version of .NET, the discussion regarding finalizers is less and less relevant by the day. Although that used to be a consideration,...
@SzamanSZ > My simple point is: when we are writing the code, we don't know whether the specific class implements IDisposable or not - do you check every new class...