Alex Tsoi

Results 24 comments of Alex Tsoi

Would be nice to have it fixed eventually. Everything still works, but getting errors (not even warnings) during the build is suboptimal at best.

I see that `private` instance properties are included as well in `14.0.2`.

@RicoSuter any word on this issue? I am generating TypeScript classes from a 3rd party library and all of the private fields are being included in the output. I cannot...

I am using the following schema filter to ignore private properties: ```cs private class NSwag4681Fix : ISchemaProcessor { public void Process(SchemaProcessorContext context) { foreach (ContextualPropertyInfo property in context.ContextualType.Properties) { if...

@andyfeller, it does open up a PR in a web browser - no issue there. I find the inability to control click a url somewhat limiting for no apparent reason....

Yes. It's exactly what I am asking for. Thanks, @cameronldroberts, for putting this together.

@ewindsor31 do you have an example of the workaround you mentioned in Use Case section? Is it just about installing gssntlmssp or is there anything else that needs to be...

I tried installing gssntlmssp in docker lambda - got "No package gssntlmssp available" error. ``` FROM public.ecr.aws/lambda/dotnet:7 RUN yum install -y epel-release gssntlmssp ... ``` ``` #6 0.858 Loaded plugins:...

Thank you, sir. This is super helpful.

@ewindsor31 did you happen to upgrade to .NET 8? I tried, and you can no longer install `gssntlmssp` in `public.ecr.aws/lambda/dotnet:8` as it's now based on `Amazon Linux 2023`[^1] which no...