-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c# code generation is wrong #5663
Comments
Also if you wanna make a nuget package I think the world would be a happier place |
Are you sure your Which indicates exactly the problem with packages: unless That said, I don't mind supporting nuget. Related: #5620, #4162, #3753 |
I encountered an issue, too. I solved it by building flatc from source. Whatever is in v1.11.0 isn't working well in C#. I think cutting a new release and pushing a new version of flatc.exe from head would fix the problem. Haven't verified but that's my recollection from encountering a similar issue many months ago. Update: The issue I encountered is reported in #5620 |
A new release is forthcoming, but you should never rely on mixing different versions, whether release or not. |
This issue is stale because it has been open 6 months with no activity. Please comment or this will be closed in 14 days. |
This is flatbuffer (master) running in .net. The code generated by 'flatc --csharp filename.fbs' calls builder.StartObject instead of builder.StartTable causing the code to error out.
please switch to builder.StartTable for code generation
The text was updated successfully, but these errors were encountered: