File tree Expand file tree Collapse file tree 6 files changed +30
-10
lines changed Expand file tree Collapse file tree 6 files changed +30
-10
lines changed Original file line number Diff line number Diff line change @@ -183,3 +183,6 @@ docsrc/content/license.md
183
183
docsrc /content /release-notes.md
184
184
.fake
185
185
docsrc /tools /FSharp.Formatting.svclog
186
+
187
+ /docs
188
+ AssemblyInfo.fs
Original file line number Diff line number Diff line change
1
+ ### 1.1.2 - Aug 16 2018
2
+ * Support .net framework 4.7
3
+ * Minor improvments
4
+
1
5
### 1.1.1 - Jun 22 2018
2
6
* Support netStandard 2.0
3
7
* Add new chart (SLOMP)
Original file line number Diff line number Diff line change @@ -161,6 +161,9 @@ Target.create "Build" (fun _ ->
161
161
]
162
162
}
163
163
MSBuild.build setParams solutionFile
164
+ Shell.copyFile
165
+ (__ SOURCE_ DIRECTORY__ + @" \src\FSharp.Plotly\bin\" + configuration + @" \netstandard2.0\Newtonsoft.Json.dll" )
166
+ (__ SOURCE_ DIRECTORY__+ @" \packages\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll" )
164
167
)
165
168
166
169
// --------------------------------------------------------------------------------------
@@ -416,7 +419,12 @@ Target.create "All" ignore
416
419
==> " Release"
417
420
418
421
419
- " BuildPackage"
422
+ " Clean"
423
+ ==> " AssemblyInfo"
424
+ ==> " Build"
425
+ ==> " CopyBinaries"
426
+ ==> " RunTests"
427
+ ==> " NuGet"
420
428
==> " GitReleaseNuget"
421
429
422
430
Target.runOrDefault " All"
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Plotly.WPF" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " A F# interactive charting library using plotly.js" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 1.1.1 " ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 1.1.1 " ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 1.1.2 " ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 1.1.2 " ) >]
10
10
[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
11
11
do ()
12
12
13
13
module internal AssemblyVersionInformation =
14
14
let [<Literal>] AssemblyTitle = " FSharp.Plotly.WPF"
15
15
let [<Literal>] AssemblyProduct = " FSharp.Plotly"
16
16
let [<Literal>] AssemblyDescription = " A F# interactive charting library using plotly.js"
17
- let [<Literal>] AssemblyVersion = " 1.1.1 "
18
- let [<Literal>] AssemblyFileVersion = " 1.1.1 "
17
+ let [<Literal>] AssemblyVersion = " 1.1.2 "
18
+ let [<Literal>] AssemblyFileVersion = " 1.1.2 "
19
19
let [<Literal>] AssemblyConfiguration = " Release"
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Plotly" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " A F# interactive charting library using plotly.js" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 1.1.1 " ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 1.1.1 " ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 1.1.2 " ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 1.1.2 " ) >]
10
10
[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
11
11
do ()
12
12
13
13
module internal AssemblyVersionInformation =
14
14
let [<Literal>] AssemblyTitle = " FSharp.Plotly"
15
15
let [<Literal>] AssemblyProduct = " FSharp.Plotly"
16
16
let [<Literal>] AssemblyDescription = " A F# interactive charting library using plotly.js"
17
- let [<Literal>] AssemblyVersion = " 1.1.1 "
18
- let [<Literal>] AssemblyFileVersion = " 1.1.1 "
17
+ let [<Literal>] AssemblyVersion = " 1.1.2 "
18
+ let [<Literal>] AssemblyFileVersion = " 1.1.2 "
19
19
let [<Literal>] AssemblyConfiguration = " Release"
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<TargetFrameworks >net45;net47;netstandard2.0</TargetFrameworks >
4
4
<RootNamespace >FSharp.Plotly</RootNamespace >
39
39
<None Include =" paket.references" />
40
40
<None Include =" paket.template" />
41
41
</ItemGroup >
42
+
43
+ <ItemGroup >
44
+ <PackageReference Include =" Newtonsoft.Json" Version =" 11.0.1" />
45
+ </ItemGroup >
46
+
42
47
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
43
48
</Project >
You can’t perform that action at this time.
0 commit comments