Gustavo Guerra
Gustavo Guerra
Sorry, Pull Request
Actually, the case constructor is only available inside the current project, not outside, so this seem like a bug
Let me rephrase that. I's obvious how to show the labels `Chart.Point(points, Labels=labels)`, but usually the output of that is not what you wanted:  Most of the time you...
TypeScript also supports string literals in these union types, i.e, in addition to `type T1 = number | string`, it also supports `type T1 = number | "string1" | "string2"`....
TBH, I don't remember why RightToleft was used
> Things are not perfect in FSharp.Data in that cultural intent isn't always specified explicitly Can you please create an issue there with the problems you found? We take care...
That's what I usually do, but that way you loose the performance of the lookups
I solved the same problem in FSharp.Data with a simple ReadLine: https://github.com/fsharp/FSharp.Data/commit/a85c9850f57a6fe7c7f2876c964b998f8ac72dc5#diff-6074983490330a0aac1bd23c958232d7R226
It's handy to be able to just alt+enter generate.fsx from VS, forcing you to go to the command line to run fake would be a step back
I agree that we should try to remove the repetition, but right now you can use both Fake and directly run in fsi inside VS, we should try to keep...