Skip to content

Commit 32cd976

Browse files
committed
Fix: WPF
1 parent 03a8847 commit 32cd976

File tree

13 files changed

+415
-118
lines changed

13 files changed

+415
-118
lines changed

FSharp.Plotly.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.26430.16
43
VisualStudioVersion = 15.0.27130.2036
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B98-5CED-492C-A5B7-A5B4F73CF142}"
@@ -65,9 +64,6 @@ EndProject
6564
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ED8079DD-2B06-4030-9F0F-DC548F98E1C4}"
6665
EndProject
6766
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Plotly.Tests", "tests\FSharp.Plotly.Tests\FSharp.Plotly.Tests.fsproj", "{12CFF99C-5660-42FE-9370-9085A6558F16}"
68-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Plotly.Tests", "tests\FSharp.Plotly.Tests\FSharp.Plotly.Tests.fsproj", "{B7F06453-847A-4894-9705-7BFB793E5AFC}"
69-
EndProject
70-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Plotly", "src\FSharp.Plotly\FSharp.Plotly.fsproj", "{AF92DAC1-46E7-4C6A-B784-772A284DD3BD}"
7167
EndProject
7268
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Plotly.WPF", "src\FSharp.Plotly.WPF\FSharp.Plotly.WPF.fsproj", "{2869F1FF-BA08-420C-AB41-CFF4835DD954}"
7369
EndProject
@@ -85,14 +81,6 @@ Global
8581
{12CFF99C-5660-42FE-9370-9085A6558F16}.Debug|Any CPU.Build.0 = Debug|Any CPU
8682
{12CFF99C-5660-42FE-9370-9085A6558F16}.Release|Any CPU.ActiveCfg = Release|Any CPU
8783
{12CFF99C-5660-42FE-9370-9085A6558F16}.Release|Any CPU.Build.0 = Release|Any CPU
88-
{B7F06453-847A-4894-9705-7BFB793E5AFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
89-
{B7F06453-847A-4894-9705-7BFB793E5AFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
90-
{B7F06453-847A-4894-9705-7BFB793E5AFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
91-
{B7F06453-847A-4894-9705-7BFB793E5AFC}.Release|Any CPU.Build.0 = Release|Any CPU
92-
{AF92DAC1-46E7-4C6A-B784-772A284DD3BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
93-
{AF92DAC1-46E7-4C6A-B784-772A284DD3BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
94-
{AF92DAC1-46E7-4C6A-B784-772A284DD3BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
95-
{AF92DAC1-46E7-4C6A-B784-772A284DD3BD}.Release|Any CPU.Build.0 = Release|Any CPU
9684
{2869F1FF-BA08-420C-AB41-CFF4835DD954}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
9785
{2869F1FF-BA08-420C-AB41-CFF4835DD954}.Debug|Any CPU.Build.0 = Debug|Any CPU
9886
{2869F1FF-BA08-420C-AB41-CFF4835DD954}.Release|Any CPU.ActiveCfg = Release|Any CPU

paket.dependencies

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ source https://nuget.org/api/v2
33

44
nuget FSharp.Core redirects: force
55
nuget Newtonsoft.Json
6+
nuget HtmlAgilityPack
7+
nuget Microsoft.Xaml
8+
69

710
group Build
811
framework: net461

paket.lock

Lines changed: 324 additions & 0 deletions
Large diffs are not rendered by default.

src/FSharp.Plotly.WPF/App.config

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
4+
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<Paket>True</Paket>
7+
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
8+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.3.0" />
9+
</dependentAssembly>
10+
</assemblyBinding></runtime></configuration>

src/FSharp.Plotly.WPF/AssemblyInfo.fs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Auto-Generated by FAKE; do not edit
2+
namespace System
3+
open System.Reflection
4+
5+
[<assembly: AssemblyTitleAttribute("FSharp.Plotly.WPF")>]
6+
[<assembly: AssemblyProductAttribute("FSharp.Plotly")>]
7+
[<assembly: AssemblyDescriptionAttribute("A F# interactive charting library using plotly.js")>]
8+
[<assembly: AssemblyVersionAttribute("0.6")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.6")>]
10+
[<assembly: AssemblyConfigurationAttribute("Release")>]
11+
do ()
12+
13+
module internal AssemblyVersionInformation =
14+
let [<Literal>] AssemblyTitle = "FSharp.Plotly.WPF"
15+
let [<Literal>] AssemblyProduct = "FSharp.Plotly"
16+
let [<Literal>] AssemblyDescription = "A F# interactive charting library using plotly.js"
17+
let [<Literal>] AssemblyVersion = "0.6"
18+
let [<Literal>] AssemblyFileVersion = "0.6"
19+
let [<Literal>] AssemblyConfiguration = "Release"
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
5+
<ProjectGuid>{2869F1FF-BA08-420C-AB41-CFF4835DD954}</ProjectGuid>
6+
<RootNamespace>FSharp.Plotly.WPF</RootNamespace>
7+
<AssemblyName>FSharp.Plotly.WPF</AssemblyName>
8+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
9+
<DocumentationFile>bin\$(Configuration)\$(AssemblyName).XML</DocumentationFile>
10+
</PropertyGroup>
11+
<ItemGroup>
12+
<Compile Include="AssemblyInfo.fs" />
13+
<Compile Include="ViewContainer.fs" />
14+
<Compile Include="ChartWPF.fs" />
15+
<None Include="WpfTest.fsx" />
16+
</ItemGroup>
17+
<ItemGroup>
18+
<Content Include="App.config" />
19+
</ItemGroup>
20+
<ItemGroup>
21+
<ProjectReference Include="..\FSharp.Plotly\FSharp.Plotly.fsproj" />
22+
</ItemGroup>
23+
<Import Project="..\..\.paket\Paket.Restore.targets" />
24+
</Project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FSharp.Core
2+
HtmlAgilityPack
3+
Microsoft.Xaml

0 commit comments

Comments
 (0)