Socolin

Results 121 comments of Socolin

@BobbyCannon I'm using something like this as a workaround ``` _host = builder.Build(); var webJobsShutdownWatcher = new WebJobsShutdownWatcher(); webJobsShutdownWatcher.Token.Register(async () => { await _host.StopAsync(); }); await _host.StartAsync(); var applicationLifetime =...

Hello, I have the same problem but with on an azure webapp where I can't update git version. Their version of git lfs is an old one 2.5.2 with bugs...

Hello, I encounter this error but this seems related with the DirectoConnectionMode https://docs.microsoft.com/en-us/azure/cosmos-db/sql-sdk-connection-modes It seems to work when specifying explicitly `.WithConnectionModeGateway()` instead of ` WithConnectionModeDirect()` on `CosmosClientBuilder`

Hello, I have the same issue I think with this: ``` resource "kubernetes_namespace" "ingress-basic" { metadata { name = "ingress-basic" labels = { "cert-manager.io/disable-validation" = "true" } } lifecycle {...

@bendbennett Hello, is there any chance to see this PR merge (or if it's not something you want, rejected) soon ? I need this I would like to know if...

@bendbennett Have you any ETA ? I really need this and I'm just going to move it to my own provider and close this if it's not going to be...

I have some enums like this one and I would like to generate the equality members automatically ```cs [Equatable] public readonly struct Color { [DefaultEquality] public int R { get;...

I'm running test from Rider, and inside our team we have very differents computer (mine have 12 core/24 thread, other co-workers have only 4core/8thread) so I cannot really configure with...

I did not know we could create a custom attribute for that, it worked :) Thanks you I agree with your comment, it would need more discussions about this. In...

Hello, I'm also interested by this feature