Skip to content

Commit 4a4b50a

Browse files
authored
Merge pull request #32 from muehlhaus/developer
Update with changes from developer
2 parents 00021aa + 3b5e5ce commit 4a4b50a

File tree

201 files changed

+2116
-18303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+2116
-18303
lines changed

FSharp.Plotly.sln

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60
2222
EndProject
2323
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{83F16175-43B1-4C90-A1EE-8E351C33435D}"
2424
ProjectSection(SolutionItems) = preProject
25+
docsrc\tools\formatters.fsx = docsrc\tools\formatters.fsx
2526
docsrc\tools\generate.fsx = docsrc\tools\generate.fsx
2627
docsrc\tools\templates\template.cshtml = docsrc\tools\templates\template.cshtml
2728
EndProjectSection
@@ -78,7 +79,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".build", ".build", "{7C6D08
7879
appveyor.yml = appveyor.yml
7980
build.cmd = build.cmd
8081
build.fsx = build.fsx
81-
build.proj = build.proj
8282
build.sh = build.sh
8383
EndProjectSection
8484
EndProject
@@ -87,19 +87,24 @@ EndProject
8787
Global
8888
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8989
Debug|Any CPU = Debug|Any CPU
90+
Dotnet|Any CPU = Dotnet|Any CPU
9091
Release|Any CPU = Release|Any CPU
9192
EndGlobalSection
9293
GlobalSection(ProjectConfigurationPlatforms) = postSolution
9394
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
9495
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
96+
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Dotnet|Any CPU.ActiveCfg = Dotnet|Any CPU
97+
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Dotnet|Any CPU.Build.0 = Dotnet|Any CPU
9598
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
9699
{F635BEEF-9609-4485-8C72-D8090A5F40A2}.Release|Any CPU.Build.0 = Release|Any CPU
97100
{82EEB69B-361E-486E-9F54-D346A8C76CC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
98101
{82EEB69B-361E-486E-9F54-D346A8C76CC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
102+
{82EEB69B-361E-486E-9F54-D346A8C76CC9}.Dotnet|Any CPU.ActiveCfg = Dotnet|Any CPU
99103
{82EEB69B-361E-486E-9F54-D346A8C76CC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
100104
{82EEB69B-361E-486E-9F54-D346A8C76CC9}.Release|Any CPU.Build.0 = Release|Any CPU
101105
{B88586CA-044D-4D65-AB51-A7339C83D42F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
102106
{B88586CA-044D-4D65-AB51-A7339C83D42F}.Debug|Any CPU.Build.0 = Debug|Any CPU
107+
{B88586CA-044D-4D65-AB51-A7339C83D42F}.Dotnet|Any CPU.ActiveCfg = Dotnet|Any CPU
103108
{B88586CA-044D-4D65-AB51-A7339C83D42F}.Release|Any CPU.ActiveCfg = Release|Any CPU
104109
{B88586CA-044D-4D65-AB51-A7339C83D42F}.Release|Any CPU.Build.0 = Release|Any CPU
105110
EndGlobalSection

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
### 1.2.1 - Apr 8 2020
2+
* [Improve C# interop](https://github.com/muehlhaus/FSharp.Plotly/commit/4bc8a45d4cdea3961c15429680923927b47a2840) by using null as default parameter for optional parameters in chart extensions and requiring qualified access for style parameters
3+
4+
15
### 1.2.0 - Feb 17 2020
26
Additional functionality:
3-
* *
47
* [Various marker style options](https://github.com/muehlhaus/FSharp.Plotly/commit/11a80f94d9fb9f94a4504073955e009746e9fd0d)
58
* [Config support](https://github.com/muehlhaus/FSharp.Plotly/commit/70998edd586553b40a8b95de56d86639902a5420)
69
* [Chart.Stack works now with both 2D and 3D Charts](https://github.com/muehlhaus/FSharp.Plotly/commit/db7ce675a73f37598590f24ac99c246fce78759e)

appveyor.yml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
1-
image: Visual Studio 2017
1+
image:
2+
- Ubuntu
3+
- Visual Studio 2019
24

35
init:
46
- git config --global core.autocrlf input
5-
- dotnet tool install fake-cli -g
6-
build_script:
7-
- cmd: build.cmd All
7+
8+
matrix:
9+
fast_finish: true
10+
11+
for:
12+
-
13+
matrix:
14+
only:
15+
- image: Visual Studio 2019
16+
17+
build_script:
18+
- cmd: build.cmd
19+
-
20+
matrix:
21+
only:
22+
- image: Ubuntu
23+
24+
build_script:
25+
- chmod +x ./build.sh
26+
- sh: ./build.sh -t DotnetCoreBuild
27+
828
test: off
929
version: 0.0.1.{build}
1030

@@ -15,4 +35,4 @@ branches:
1535

1636
artifacts:
1737
- path: bin
18-
name: bin
38+
name: bin

build.cmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
@echo off
22
cls
33

4-
dotnet restore build.proj
54
dotnet tool restore
65
dotnet paket restore
76
dotnet fake build %*

0 commit comments

Comments
 (0)