Ian Buse

Results 9 comments of Ian Buse

> yo anyone wanna help me out? Ive got this problem on Unity where its telling me that it cannot covert method group "GetMouseButtonDown". On my project I made a...

Good to hear .NET Framework isn't being dropped. Might not be the latest and greatest, but are still apps that use it for one reason or another.

I meant to add to this that I used that Microsoft doc to add this line: ```c# builder.Services .AddControllers(o => o.SuppressImplicitRequiredAttributeForNonNullableReferenceTypes = true); ``` That seems to have fixed the...

They closed it because they don't have enough contributors to fix it. :( It's still a problem.

The only thing I've found that fixed the issue is using `Action` when adding the controllers: ```csharp var builder = WebApplication.CreateBuilder(args); builder.Services .AddControllers(o => o.SuppressImplicitRequiredAttributeForNonNullableReferenceTypes = true); ``` Yeah, the...

@buehler, I checked the old Bouncy Castle generator + CLI command, and it looks like this issue would have been in there too. I think there is an inconsistency between...

Hi @UTF-8x, Did you end up figuring this out? The error you're getting back from Kubernetes `x509: certificate signed by unknown authority` means that Kubernetes doesn't trust the issuer of...

Hi Edward, The KubeOps generator command uses [`KubernetesYaml.Serialize()`](https://github.com/kubernetes-client/csharp/blob/6b1da788771ff996e7bd650bf0509a04041514f7/src/KubernetesClient.Aot/KubernetesYaml.cs#L12) to convert objects into strings, and that's likely where the camelCase is coming from. You can use the `System.Text.Json.JsonPropertyName` attribute to override...

I tried testing this with the YamlMember attribute without success. Looks like the serialization configuration is set in `KubernetesYaml.Serializer`: ```csharp private static readonly IValueSerializer Serializer = new SerializerBuilder() .DisableAliases() .WithNamingConvention(CamelCaseNamingConvention.Instance)...