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
If I have a yaml file that I use to create a type using FSharp.Configuration.YamlConfig and that file contains a floating point value like floatValue: 1.0 then the associated member of the F# type will be a float. If I then use the Save method of one of these objects with the floatValue set to 1.0 it should be written as 1.0 so that it can be read properly. On some machines this value will be written as 1 instead, and the resulting file cannot be read (there will be an error about having an Int32 for that property instead of a Double).
The text was updated successfully, but these errors were encountered:
If I have a yaml file that I use to create a type using
FSharp.Configuration.YamlConfig
and that file contains a floating point value likefloatValue: 1.0
then the associated member of the F# type will be afloat
. If I then use theSave
method of one of these objects with thefloatValue
set to1.0
it should be written as1.0
so that it can be read properly. On some machines this value will be written as1
instead, and the resulting file cannot be read (there will be an error about having an Int32 for that property instead of a Double).The text was updated successfully, but these errors were encountered: