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
"""<summary>Typed representation of a CSV file.</summary>
@@ -260,7 +263,8 @@ type public CsvProvider(cfg: TypeProviderConfig) as this =
260
263
<param name='ResolutionFolder'>A directory that is used when resolving relative file references (at design time and in hosted execution).</param>
261
264
<param name='EmbeddedResource'>When specified, the type provider first attempts to load the sample from the specified resource
262
265
(e.g. 'MyCompany.MyAssembly, resource_name.csv'). This is useful when exposing types generated by the type provider.</param>
263
-
<param name='PreferDateOnly'>When true on .NET 6+, date-only strings are inferred as DateOnly and time-only strings as TimeOnly. Defaults to false for backward compatibility.</param>"""
266
+
<param name='PreferDateOnly'>When true on .NET 6+, date-only strings are inferred as DateOnly and time-only strings as TimeOnly. Defaults to false for backward compatibility.</param>
267
+
<param name='StrictBooleans'>When true, only <c>true</c> and <c>false</c> (case-insensitive) are inferred as boolean. Values such as <c>0</c>, <c>1</c>, <c>yes</c>, and <c>no</c> are treated as integers or strings respectively. Defaults to false.</param>"""
264
268
265
269
do csvProvTy.AddXmlDoc helpText
266
270
do csvProvTy.DefineStaticParameters(parameters, buildTypes)
0 commit comments