Skip to content

Commit a7becd6

Browse files
committed
FIx copy newtonsoft.json
1 parent 665405e commit a7becd6

File tree

4 files changed

+831
-8
lines changed

4 files changed

+831
-8
lines changed

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ let summary = "A F# interactive charting library using plotly.js"
3333
let description = "A F# interactive charting library using plotly.js"
3434

3535
// List of author names (for NuGet package)
36-
let authors = [ "Timo M?hlhaus" ]
36+
let authors = [ "Timo Mühlhaus" ]
3737

3838
// Tags for your project (for NuGet package)
3939
let tags = ""
@@ -46,7 +46,7 @@ let configuration = environVarOrDefault "Configuration" "Release"
4646

4747
// Git configuration (used for publishing documentation in gh-pages branch)
4848
// The profile where the project is posted
49-
let gitOwner = "Timo M?hlhaus"
49+
let gitOwner = "Timo Mühlhaus"
5050
let gitHome = sprintf "%s/%s" "https://github.com" gitOwner
5151

5252
// The name of the project on GitHub
@@ -148,8 +148,8 @@ Target "Build" (fun _ ->
148148
|> MSBuild "" "Build" ["Configuration", configuration;]
149149
|> Log "AppBuild-Output: "
150150
Fake.FileHelper.CopyFile
151-
(__SOURCE_DIRECTORY__+ @"\packages\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll")
152151
(__SOURCE_DIRECTORY__ + @"\src\FSharp.Plotly\bin\" + configuration + @"\netstandard2.0\Newtonsoft.Json.dll")
152+
(__SOURCE_DIRECTORY__+ @"\packages\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll")
153153

154154
)
155155

paket.dependencies

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ framework: netstandard2.0, net461
22
source https://nuget.org/api/v2
33

44
nuget FSharp.Core redirects: force
5+
nuget Newtonsoft.Json
56
nuget HtmlAgilityPack
67
nuget Microsoft.Xaml
78

0 commit comments

Comments
 (0)