Skip to content

Commit 9f0afb1

Browse files
committed
Fix docs
1 parent f404e1a commit 9f0afb1

File tree

9 files changed

+11
-850
lines changed

9 files changed

+11
-850
lines changed

docs/content/polar-charts.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ let t = [0; 45; 90; 135; 200; 320; 184;]
3030
]
3131
|> Chart.Combine
3232
(*** include-it:polar1 ***)
33+
|> Chart.Show
3334

paket.dependencies

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ framework: netstandard2.0, net461
22
source https://nuget.org/api/v2
33

44
nuget FSharp.Core redirects: force
5-
nuget Newtonsoft.Json redirects: force
65
nuget HtmlAgilityPack
76
nuget Microsoft.Xaml
87

98

109
group Build
11-
framework: net461
10+
framework: netstandard2.0, net461
1211
source https://nuget.org/api/v2
1312

1413
nuget FAKE
@@ -26,4 +25,4 @@ group Test
2625

2726
nuget xunit
2827
nuget Microsoft.NET.Test.Sdk
29-
nuget xunit.runner.visualstudio
28+
nuget xunit.runner.visualstudio

paket.lock

Lines changed: 0 additions & 822 deletions
This file was deleted.

src/FSharp.Plotly.WPF/App.config

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,4 @@
77
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
88
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.3.0" />
99
</dependentAssembly>
10-
<dependentAssembly>
11-
<Paket>True</Paket>
12-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
13-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="11.0.0.0" />
14-
</dependentAssembly>
1510
</assemblyBinding></runtime></configuration>

src/FSharp.Plotly.WPF/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FSharp.Plotly.WPF")>]
66
[<assembly: AssemblyProductAttribute("FSharp.Plotly")>]
77
[<assembly: AssemblyDescriptionAttribute("A F# interactive charting library using plotly.js")>]
8-
[<assembly: AssemblyVersionAttribute("0.6")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.6")>]
8+
[<assembly: AssemblyVersionAttribute("1.1.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.1.1")>]
1010
[<assembly: AssemblyConfigurationAttribute("Release")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
1414
let [<Literal>] AssemblyTitle = "FSharp.Plotly.WPF"
1515
let [<Literal>] AssemblyProduct = "FSharp.Plotly"
1616
let [<Literal>] AssemblyDescription = "A F# interactive charting library using plotly.js"
17-
let [<Literal>] AssemblyVersion = "0.6"
18-
let [<Literal>] AssemblyFileVersion = "0.6"
17+
let [<Literal>] AssemblyVersion = "1.1.1"
18+
let [<Literal>] AssemblyFileVersion = "1.1.1"
1919
let [<Literal>] AssemblyConfiguration = "Release"

src/FSharp.Plotly/App.config

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,4 @@
77
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
88
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.3.0" />
99
</dependentAssembly>
10-
<dependentAssembly>
11-
<Paket>True</Paket>
12-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
13-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="11.0.0.0" />
14-
</dependentAssembly>
1510
</assemblyBinding></runtime></configuration>

src/FSharp.Plotly/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FSharp.Plotly")>]
66
[<assembly: AssemblyProductAttribute("FSharp.Plotly")>]
77
[<assembly: AssemblyDescriptionAttribute("A F# interactive charting library using plotly.js")>]
8-
[<assembly: AssemblyVersionAttribute("0.6")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.6")>]
8+
[<assembly: AssemblyVersionAttribute("1.1.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.1.1")>]
1010
[<assembly: AssemblyConfigurationAttribute("Release")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
1414
let [<Literal>] AssemblyTitle = "FSharp.Plotly"
1515
let [<Literal>] AssemblyProduct = "FSharp.Plotly"
1616
let [<Literal>] AssemblyDescription = "A F# interactive charting library using plotly.js"
17-
let [<Literal>] AssemblyVersion = "0.6"
18-
let [<Literal>] AssemblyFileVersion = "0.6"
17+
let [<Literal>] AssemblyVersion = "1.1.1"
18+
let [<Literal>] AssemblyFileVersion = "1.1.1"
1919
let [<Literal>] AssemblyConfiguration = "Release"

src/FSharp.Plotly/FSharp.Plotly.fsproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737

3838
<ItemGroup>
3939
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" >
40-
<Private>True</Private>
41-
<Paket>True</Paket>
4240
</PackageReference>
4341
</ItemGroup>
4442

tests/FSharp.Plotly.Tests/App.config

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
77
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.3.0" />
88
</dependentAssembly>
9-
<dependentAssembly>
10-
<Paket>True</Paket>
11-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
12-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="11.0.0.0" />
13-
</dependentAssembly>
149
</assemblyBinding></runtime></configuration>

0 commit comments

Comments
 (0)