Skip to content

Commit 40c664e

Browse files
muehlmuehl
authored andcommitted
2 parents fff7faf + 566cfd5 commit 40c664e

File tree

9 files changed

+2560
-744
lines changed

9 files changed

+2560
-744
lines changed

paket.lock

Lines changed: 646 additions & 592 deletions
Large diffs are not rendered by default.

src/FSharp.Plotly.WPF/AssemblyInfo.fs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
namespace System
1+
// Auto-Generated by FAKE; do not edit
2+
namespace System
23
open System.Reflection
34

45
[<assembly: AssemblyTitleAttribute("FSharp.Plotly.WPF")>]
@@ -9,5 +10,8 @@ open System.Reflection
910
do ()
1011

1112
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.0.2"
13-
let [<Literal>] InformationalVersion = "1.0.2"
13+
let [<Literal>] AssemblyTitle = "FSharp.Plotly.WPF"
14+
let [<Literal>] AssemblyProduct = "FSharp.Plotly"
15+
let [<Literal>] AssemblyDescription = "A F# interactive charting library using plotly.js"
16+
let [<Literal>] AssemblyVersion = "1.0.2"
17+
let [<Literal>] AssemblyFileVersion = "1.0.2"

src/FSharp.Plotly.WPF/FSharp.Plotly.WPF.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputType>Library</OutputType>
1010
<RootNamespace>FSharp.Plotly.WPF</RootNamespace>
1111
<AssemblyName>FSharp.Plotly.WPF</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1515
<Name>FSharp.Plotly.WPF</Name>

src/FSharp.Plotly/App.config

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33

4+
<startup>
5+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
6+
</startup>
47
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
58
<dependentAssembly>
69
<Paket>True</Paket>
710
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
8-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.0.0" />
11+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
912
</dependentAssembly>
10-
</assemblyBinding></runtime></configuration>
13+
</assemblyBinding></runtime></configuration>

src/FSharp.Plotly/AssemblyInfo.fs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
namespace System
1+
// Auto-Generated by FAKE; do not edit
2+
namespace System
23
open System.Reflection
34

45
[<assembly: AssemblyTitleAttribute("FSharp.Plotly")>]
@@ -9,5 +10,8 @@ open System.Reflection
910
do ()
1011

1112
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.0.2"
13-
let [<Literal>] InformationalVersion = "1.0.2"
13+
let [<Literal>] AssemblyTitle = "FSharp.Plotly"
14+
let [<Literal>] AssemblyProduct = "FSharp.Plotly"
15+
let [<Literal>] AssemblyDescription = "A F# interactive charting library using plotly.js"
16+
let [<Literal>] AssemblyVersion = "1.0.2"
17+
let [<Literal>] AssemblyFileVersion = "1.0.2"

src/FSharp.Plotly/FSharp.Plotly.fsproj

Lines changed: 737 additions & 121 deletions
Large diffs are not rendered by default.

src/FSharp.Plotly/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net40" requireReinstallation="true" />
44
</packages>

tests/FSharp.Plotly.Tests/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<dependentAssembly>
66
<Paket>True</Paket>
77
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
8-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.0.0" />
8+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
99
</dependentAssembly>
1010
</assemblyBinding></runtime></configuration>

tests/FSharp.Plotly.Tests/FSharp.Plotly.Tests.fsproj

Lines changed: 1155 additions & 20 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)