Skip to content

Commit

Permalink
Merge pull request #75 from jackfoxy/magicmode
Browse files Browse the repository at this point in the history
Magicmode
  • Loading branch information
jackfoxy authored Jul 30, 2018
2 parents 0b84907 + 31f80c7 commit c42e00a
Show file tree
Hide file tree
Showing 28 changed files with 1,899 additions and 1,219 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ _UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
.vs

# SQL Server files
*.mdf
Expand Down Expand Up @@ -259,10 +260,9 @@ release.sh
localpackages/
paket-files
*.orig
.paket/paket.exe
docsrc/content/license.md
docsrc/content/release-notes.md
docsrc/content/credentials.fsx
docs/content/license.md
docs/content/release-notes.md
docs/content/credentials.fsx
Src/XPlot/XPlot.Plotly/Credentials.fsx
Src/XPlot/XPlot.GoogleCharts/Script1.fsx
src/XPlot.Plotly/Tests/JS.txt
Expand Down
Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
Binary file added .paket/paket.exe
Binary file not shown.
27 changes: 25 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
language: csharp

sudo: false # use the new container-based Travis infrastructure
mono: 5.12.0

dotnet: 2.1.300

install:

# workaround for missing .net 4.5

- export FrameworkPathOverride=$(dirname $(which mono))/../lib/mono/4.5/

before_install:
- chmod +x build.sh

matrix:
include:
- os: linux # Ubuntu 14.04
dist: trusty
sudo: required
dotnet : 2.1.300
- os: osx # OSX 10.12
osx_image: xcode9.1
dotnet : 2.1.300
dist: trusty
sudo: required

script:
- ./build.sh All
- ./build.sh build target all

28 changes: 22 additions & 6 deletions XPlot.sln
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B98-5CED-492C-A5B7-A5B4F73CF142}"
ProjectSection(SolutionItems) = preProject
paket.dependencies = paket.dependencies
paket.lock = paket.lock
paket.references = paket.references
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
ProjectSection(SolutionItems) = preProject
.travis.yml = .travis.yml
appveyor.yml = appveyor.yml
build.cmd = build.cmd
build.fsx = build.fsx
build.proj = build.proj
build.sh = build.sh
misc\logo.svg = misc\logo.svg
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
Expand All @@ -35,11 +41,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ED8079DD-2B06-4030-9F0F-DC548F98E1C4}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "XPlot.GoogleCharts", "src\XPlot.GoogleCharts\XPlot.GoogleCharts.fsproj", "{5804E6A2-EDF3-4939-89C9-5BC7F2CC336A}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "XPlot.GoogleCharts", "src\XPlot.GoogleCharts\XPlot.GoogleCharts.fsproj", "{5804E6A2-EDF3-4939-89C9-5BC7F2CC336A}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "XPlot.GoogleCharts.Deedle", "src\XPlot.GoogleCharts.Deedle\XPlot.GoogleCharts.Deedle.fsproj", "{F6FBA7C2-8411-47E1-997C-3EE7AA709FEF}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "XPlot.GoogleCharts.Deedle", "src\XPlot.GoogleCharts.Deedle\XPlot.GoogleCharts.Deedle.fsproj", "{F6FBA7C2-8411-47E1-997C-3EE7AA709FEF}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "XPlot.Plotly", "src\XPlot.Plotly\XPlot.Plotly.fsproj", "{182232F3-9E9D-4342-A096-037F2CF2037F}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "XPlot.Plotly", "src\XPlot.Plotly\XPlot.Plotly.fsproj", "{182232F3-9E9D-4342-A096-037F2CF2037F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "chart", "chart", "{1F19571C-5074-44FC-973B-3E93E9FF531B}"
ProjectSection(SolutionItems) = preProject
Expand Down Expand Up @@ -82,7 +88,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "chart", "chart", "{1F19571C
docs\content\chart\plotly-time-series.fsx = docs\content\chart\plotly-time-series.fsx
EndProjectSection
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "XPlot.D3", "src\XPlot.D3\XPlot.D3.fsproj", "{DF291356-C9DD-4C7F-80FE-E9B17BDEBFA0}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "XPlot.D3", "src\XPlot.D3\XPlot.D3.fsproj", "{DF291356-C9DD-4C7F-80FE-E9B17BDEBFA0}"
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "XPlot.GoogleCharts.Tests", "tests\XPlot.GoogleCharts.Tests\XPlot.GoogleCharts.Tests.fsproj", "{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -106,6 +114,10 @@ Global
{DF291356-C9DD-4C7F-80FE-E9B17BDEBFA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DF291356-C9DD-4C7F-80FE-E9B17BDEBFA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DF291356-C9DD-4C7F-80FE-E9B17BDEBFA0}.Release|Any CPU.Build.0 = Release|Any CPU
{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -114,5 +126,9 @@ Global
{83F16175-43B1-4C90-A1EE-8E351C33435D} = {A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}
{8E6D5255-776D-4B61-85F9-73C37AA1FB9A} = {A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}
{1F19571C-5074-44FC-973B-3E93E9FF531B} = {8E6D5255-776D-4B61-85F9-73C37AA1FB9A}
{D8C995BD-B6C8-4E31-ACEE-EAB2949FE499} = {ED8079DD-2B06-4030-9F0F-DC548F98E1C4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {63675CE2-3907-4F15-9CB8-7D2494ECAA7B}
EndGlobalSection
EndGlobal
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
image: Visual Studio 2017

init:
- git config --global core.autocrlf input
build_script:
Expand Down
17 changes: 2 additions & 15 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
rem @echo off
cls

.paket\paket.bootstrapper.exe
if errorlevel 1 (
exit /b %errorlevel%
)

.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)

IF NOT EXIST build.fsx (
.paket\paket.exe update
packages\FAKE\tools\FAKE.exe init.fsx
)
packages\FAKE\tools\FAKE.exe build.fsx %*
dotnet restore build.proj
dotnet fake build %*
Loading

0 comments on commit c42e00a

Please sign in to comment.