Andrew Reilly

Results 6 comments of 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 -> ...; }...