FSharp.Data 2.0.0-alpha

This is a prerelease version of FSharp.Data.
There is a newer version of this package available.
See the version list below for details.
dotnet add package FSharp.Data --version 2.0.0-alpha
NuGet\Install-Package FSharp.Data -Version 2.0.0-alpha
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FSharp.Data" Version="2.0.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharp.Data --version 2.0.0-alpha
#r "nuget: FSharp.Data, 2.0.0-alpha"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FSharp.Data as a Cake Addin
#addin nuget:?package=FSharp.Data&version=2.0.0-alpha&prerelease

// Install FSharp.Data as a Cake Tool
#tool nuget:?package=FSharp.Data&version=2.0.0-alpha&prerelease

The F# Data library (FSharp.Data.dll) implements everything you need to access data in your F# applications and scripts. It implements F# type providers for working with structured file formats (CSV, JSON and XML) and for accessing the WorldBank and Freebase data. It also includes helpers for parsing JSON and CSV files and for sending HTTP requests.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • Portable Class Library (.NETFramework 4.0, Silverlight 5.0, Windows 8.0, WindowsPhone 8.0)

  • Portable Class Library (.NETFramework 4.5, Windows 8.0)

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on FSharp.Data:

Repository Stars
xamarin/ios-samples
Xamarin.iOS sample apps
Version Downloads Last updated
2.2.1 2,310 5/4/2015
2.2.0 3,504 3/22/2015
2.1.1 9,849 12/24/2014
2.1.0 4,575 11/2/2014
2.1.0-beta2 150 10/21/2014
2.1.0-beta 291 10/12/2014
2.0.15 2,294 9/23/2014
2.0.14 2,868 8/30/2014
2.0.13 132 8/29/2014
2.0.12 120 8/28/2014
2.0.11 159 8/27/2014
2.0.10 443 8/21/2014
2.0.9 5,085 6/15/2014
2.0.8 1,514 5/10/2014
2.0.7 430 4/28/2014
2.0.6 95 4/28/2014
2.0.5 576 3/29/2014
2.0.4 457 3/20/2014
2.0.3 395 3/17/2014
2.0.2 95 3/16/2014
2.0.1 133 3/14/2014
2.0.0 139 3/10/2014
2.0.0-beta3 123 3/4/2014
2.0.0-beta2 76 2/27/2014
2.0.0-beta 88 2/24/2014
2.0.0-alpha7 82 2/20/2014
2.0.0-alpha6 98 2/4/2014
2.0.0-alpha5 68 2/3/2014
2.0.0-alpha4 87 1/30/2014
2.0.0-alpha3 83 12/30/2013
2.0.0-alpha2 89 12/24/2013
2.0.0-alpha 86 12/15/2013
1.1.10 4,299 9/12/2013
1.1.9 157 7/21/2013
1.1.8 96 7/1/2013
1.1.7 96 7/1/2013
1.1.6 88 6/30/2013
1.1.5 127 5/13/2013
1.1.4 108 4/13/2013
1.1.3 97 4/8/2013
1.1.2 94 3/30/2013
1.1.1 109 2/18/2013
1.1.0 102 2/18/2013
1.0.13 92 1/16/2013
1.0.12 86 1/14/2013
1.0.11 90 1/14/2013
1.0.10 92 1/6/2013
1.0.9 96 1/4/2013
1.0.8 85 1/4/2013
1.0.6 92 12/23/2012
1.0.5 78 12/20/2012
1.0.4 97 12/17/2012
1.0.2 97 12/14/2012
1.0.1 91 12/14/2012
1.0.0 102 12/13/2012

Support for F# 3.1 and for new portable class library projects.
Support for sending HTTP requests with a binary body.
Support for HTTP compression in portable class library versions.
Fixed problem when using uri's with encoded slashes (%2F) in the sample parameter of CsvProvider, JsonProvider & XmlProvider.
CsvProvider now has GetSample static method like the other providers in addition to the default constructor.
Add AsyncLoad(string uri) and AsyncGetSample() to CsvProvider, JsonProvider and XmlProvider.
Remove .AsTuple member from CsvProvider.
Renamed SampleList to SampleIsList.
Renamed Separator to Separators.
When SampleIsList is true, a GetSamples method is generated.
Fixed XmlProvider's SampleIsList not working correctly.
Fix handling of optional elements in XmlProvider when using multiple samples.
Fixed CsvProvider's SafeMode not working when there were more rows than the InferRows limit.
Exceptions raised by CsvProvider and CsvFile were reporting the wrong line number when reading files with windows line endings.
CsvInference is now part of the runtime so it can be reused by Deedle.
Allow currency symbols on decimals.
Fixed file change notification not invalidating type providers correctly.
Fix generated code doing repeated work.
Windows Phone 7 no longer supported.
Added Japanese documentation.