Noah Stolk

Results 19 comments of Noah Stolk

I know this is an old PR, but I'd just like to state that even if we were to change the code generator, I'm pretty sure this is by design...

I got this working a while ago, and I believe you must call `ImGuiNative.ImFontConfig_ImFontConfig` to properly create an `ImFontConfig`: ```cs ImFontConfig* icons_config = ImGuiNative.ImFontConfig_ImFontConfig(); icons_config->MergeMode = 1; // etc... ```...

As stated by the build error, you need to add a using directive that imports the namespace where your `ImGuiController` type is declared. This is common C# knowledge and not...

Do you mean something like this? ```cs if (ImGui.Begin("Main Window", ImGuiWindowFlags.NoCollapse)) { if (ImGui.BeginPopup("PopupName")) { ImGui.Text("Test popup"); if (ImGui.Button("Close popup")) ImGui.CloseCurrentPopup(); ImGui.EndPopup(); } if (ImGui.Button("Open popup")) ImGui.OpenPopup("PopupName"); } ImGui.End(); ```...

Same here. We use a strict build configuration which has `WarningsAsErrors` set to `nullable`, so this is a build error for us that we currently have to work around. For...

For some reason the PR is stuck on "Processing updates"... Will close and re-open to see if that helps.

![image](https://github.com/user-attachments/assets/8e4d0804-d16a-433b-ab14-d0a92e90eabd) I can't re-open it. I think the PR broke because the fork source was changed to https://github.com/ah-/confluent-kafka-dotnet for some reason...

I've opened a new PR: https://github.com/confluentinc/confluent-kafka-dotnet/pull/2263

> @NoahStolk Confluent will do nothing. They do not actively support most of their open-source libraries. Just look at elasticsearch and jdbc connectors for instance: they completely ignore issues and...

Thanks @anchitj, I'll set up a branch with my current work, and see if I can port the remaining parts of the library to NJsonSchema 11 later this week. 👍