Andrew Reilly
Andrew Reilly
Are there any updates on this request? It would be nice to at least have a config flag to suppress the generation of `System.Text.Json.Serialization.JsonConverterAttribute` on enum properties so that a...
I was able to change the attribute using template overrides (https://github.com/RicoSuter/NSwag/wiki/Templates). It would still be nice to have it as a configurable option, as to remove the need for a...
Thanks for the suggestion! I was replacing the line post generation via the csproj, but that caused the file to always be triggered by the build's up-to-date check (so building...
@rafaelkallis If you are using an NSwag configuration file (e.g., nswag.json) for your build then you can add a template overrides directory from there. ```json { ... "codeGenerators": { ......
If expanding `Math`, then it might be nice to add a `BigInteger` class for arithmetic on arbitrarily large integers. Well... at least according to some languages such as Java, it...
How about having the `override` on the property as a whole: ```haxe class AdjustableCar extends Car { public override var Speed: Int { get -> ...; set -> ...; }...
Not sure if there has been any additional work/thoughts on this since the last comment, but just weighing in w/ my own thoughts... Somewhat similar to @Simn's response, here is...
I thought the example I provided was quite similar and would be fairly compatible, so I was just adding it as extra supporting documentation 😅 But the reason to stick...
I still think it is quite similar, I just didn't elaborate on the `Option` use case. It can be done like this (using the same `Enumeration` as previously mentioned): ```csharp...
I'm not sure that I agree on that part since leaving it as a `static readonly field` will allow that field to be used to check if any given `Option`...