You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently yaml files with member names using kebab-case, the type provider exposes these as-is using `` as follows:
my-attribute1: abcd
my-attribute2: 1234
becomes
conf.``my-attribute1``
conf.``my-attribute2``
Using YamlDotNet I'm able to configure serialization so that my-attribute1 becomes conf.MyAttribute1, but this doesn't seem to be possible with the type provider, which makes using configuration from FSharp.Configuration kebab-case files pretty jarring from the F# code.
The text was updated successfully, but these errors were encountered:
Currently yaml files with member names using kebab-case, the type provider exposes these as-is using `` as follows:
becomes
Using YamlDotNet I'm able to configure serialization so that
my-attribute1
becomesconf.MyAttribute1
, but this doesn't seem to be possible with the type provider, which makes using configuration fromFSharp.Configuration
kebab-case files pretty jarring from the F# code.The text was updated successfully, but these errors were encountered: