Skip to content

Commit 2efdf50

Browse files
muehlmuehl
authored andcommitted
2 parents 20f7781 + f4e1c65 commit 2efdf50

File tree

3 files changed

+29
-9
lines changed

3 files changed

+29
-9
lines changed

src/FSharp.Plotly/App.config

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
43
<startup>
54
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
65
</startup>
7-
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8-
<dependentAssembly>
9-
<Paket>True</Paket>
10-
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
11-
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
12-
</dependentAssembly>
13-
</assemblyBinding></runtime></configuration>
6+
<runtime>
7+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8+
<dependentAssembly>
9+
<Paket>True</Paket>
10+
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
11+
<bindingRedirect oldVersion="2.0.0.0" newVersion="4.4.0.0" />
12+
<bindingRedirect oldVersion="2.3.0.0" newVersion="4.4.0.0" />
13+
<bindingRedirect oldVersion="2.3.5.0" newVersion="4.4.0.0" />
14+
<bindingRedirect oldVersion="4.0.0.0" newVersion="4.4.0.0" />
15+
<bindingRedirect oldVersion="4.3.0.0" newVersion="4.4.0.0" />
16+
<bindingRedirect oldVersion="3.3.1.0" newVersion="4.4.0.0" />
17+
<bindingRedirect oldVersion="2.3.5.1" newVersion="4.4.0.0" />
18+
<bindingRedirect oldVersion="3.78.3.1" newVersion="4.4.0.0" />
19+
<bindingRedirect oldVersion="3.259.3.1" newVersion="4.4.0.0" />
20+
<bindingRedirect oldVersion="4.3.1.0" newVersion="4.4.0.0" />
21+
<bindingRedirect oldVersion="3.47.4.0" newVersion="4.4.0.0" />
22+
<bindingRedirect oldVersion="3.78.4.0" newVersion="4.4.0.0" />
23+
<bindingRedirect oldVersion="3.259.4.0" newVersion="4.4.0.0" />
24+
</dependentAssembly>
25+
</assemblyBinding>
26+
</runtime>
27+
</configuration>

src/FSharp.Plotly/FSharp.Plotly.fsproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RootNamespace>FSharp.Plotly</RootNamespace>
1111
<AssemblyName>FSharp.Plotly</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
13+
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
1414
<Name>FSharp.Plotly</Name>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
@@ -95,6 +95,9 @@
9595
</ItemGroup>
9696
<ItemGroup>
9797
<Reference Include="mscorlib" />
98+
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
99+
<Private>True</Private>
100+
</Reference>
98101
<Reference Include="System" />
99102
<Reference Include="System.Core" />
100103
<Reference Include="System.Numerics" />

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
</ItemGroup>
7171
<ItemGroup>
7272
<Reference Include="mscorlib" />
73+
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
74+
<Private>True</Private>
75+
</Reference>
7376
<Reference Include="Newtonsoft.Json">
7477
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
7578
<Private>True</Private>

0 commit comments

Comments
 (0)