fslaborg / Deedle

Easy to use .NET library for data and time series manipulation and for scientific programming
http://fslab.org/Deedle/
BSD 2-Clause "Simplified" License
924 stars 196 forks source link

Add net461 target #467

Closed zyzhu closed 5 years ago

zyzhu commented 5 years ago

In the process of investigating XPlot using latest Google.DataTable.Net.Wrapper that targets netstandar2.0. I found that Chart.Show does not work in netcore app.

In order to launch HTML in browser across platform, it has to check OS platform by running System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform. That requires XPlot to target net472. Its dependency on Deedle has to be on net461 to be compatible.

I also updated latest FSharp.Formatting on nuget instead of from appveyor. A bunch of other dependencies are updated as well.

zyzhu commented 5 years ago

Just found a silly mistake. Deedle does not need to be net461 to make XPlot net472 work. Will update dependencies separately.