File tree Expand file tree Collapse file tree 19 files changed +506
-409
lines changed
FSharp.Data.DesignTime.Tests
FSharp.Data.Reference.Tests Expand file tree Collapse file tree 19 files changed +506
-409
lines changed Original file line number Diff line number Diff line change 2
2
"version" : 1 ,
3
3
"isRoot" : true ,
4
4
"tools" : {
5
- "fsdocs-tool " : {
6
- "version" : " 20 .0.1 " ,
5
+ "paket " : {
6
+ "version" : " 9 .0.2 " ,
7
7
"commands" : [
8
8
" paket"
9
9
],
10
10
"rollForward" : false
11
11
},
12
- "paket " : {
13
- "version" : " 9 .0.2 " ,
12
+ "fsdocs-tool " : {
13
+ "version" : " 20 .0.1 " ,
14
14
"commands" : [
15
15
" fsdocs"
16
16
],
Original file line number Diff line number Diff line change @@ -36,20 +36,14 @@ jobs:
36
36
runs-on : ubuntu-latest
37
37
steps :
38
38
- uses : actions/checkout@v1
39
- - name : Setup .NET Core 6
40
- uses : actions/setup-dotnet@v1
41
- with :
42
- dotnet-version : 6.0.425
43
- - name : Setup .NET Core 8
39
+ - name : Setup .NET Core 9
44
40
uses : actions/setup-dotnet@v1
45
41
with :
46
42
dotnet-version : 8.0.400
47
43
- name : Restore .NET local tools
48
44
run : dotnet tool restore
49
45
- name : Restore packages
50
46
run : dotnet paket restore
51
- - name : Format code
52
- run : dotnet fake build -t Format
53
47
- name : Build and test
54
48
run : dotnet run --project build/build.fsproj -- -t RunTests
55
49
- name : Build (Debug)
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -215,7 +215,8 @@ let buildscript () =
215
215
if result.ExitCode = 0 then
216
216
Trace.log " No files need formatting"
217
217
elif result.ExitCode = 99 then
218
- failwith " Some files need formatting, run `dotnet fake build -t Format` to format them"
218
+ failwith
219
+ " Some files need formatting, run `dotnet run --project build/build.fsproj -- -t Format` to format them"
219
220
else
220
221
Trace.logf " Errors while formatting: %A " result.Errors
221
222
failwith " Unknown errors while formatting" )
Original file line number Diff line number Diff line change 2
2
<Project Sdk =" Microsoft.NET.Sdk" >
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >net9 .0</TargetFramework >
5
+ <TargetFramework >net8 .0</TargetFramework >
6
6
</PropertyGroup >
7
7
<ItemGroup >
8
8
<Compile Include =" build.fs" />
9
9
</ItemGroup >
10
10
<Import Project =" ..\.paket\Paket.Restore.targets" />
11
- </Project >
11
+ </Project >
Original file line number Diff line number Diff line change 24
24
NETStandard.Library.NETFramework (2.0.0-preview2-25405-01)
25
25
GITHUB
26
26
remote: fsprojects/FSharp.TypeProviders.SDK
27
- src/ProvidedTypes.fs (dc8c662ca2e7d8d11048968ca166df6dc2fd9482 )
28
- src/ProvidedTypes.fsi (dc8c662ca2e7d8d11048968ca166df6dc2fd9482 )
29
- tests/ProvidedTypesTesting.fs (dc8c662ca2e7d8d11048968ca166df6dc2fd9482 )
27
+ src/ProvidedTypes.fs (23b588d06acb8e100402523abc1d4f3f06325b8a )
28
+ src/ProvidedTypes.fsi (23b588d06acb8e100402523abc1d4f3f06325b8a )
29
+ tests/ProvidedTypesTesting.fs (23b588d06acb8e100402523abc1d4f3f06325b8a )
30
30
GROUP Fake
31
31
STORAGE: NONE
32
32
NUGET
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Csv.Core" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Csv.Core"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.DesignTime" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.DesignTime"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Html.Core" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Html.Core"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Http" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Http"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Json.Core" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Json.Core"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Runtime.Utilities" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Runtime.Utilities"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.WorldBank.Core" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.WorldBank.Core"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data.Xml.Core" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data.Xml.Core"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Data" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Data" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " Library of F# type providers and data access tools" ) >]
8
- [<assembly: AssemblyVersionAttribute( " 6.4.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 6.4.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.6.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.6.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Data"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Data"
15
15
let [<Literal>] AssemblyDescription = " Library of F# type providers and data access tools"
16
- let [<Literal>] AssemblyVersion = " 6.4.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 6.4.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.6.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.6.0 .0"
Original file line number Diff line number Diff line change 47
47
<PackageReference Update =" FSharp.Core" Version =" 6.0.1" />
48
48
</ItemGroup >
49
49
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
50
- </Project >
50
+ </Project >
Original file line number Diff line number Diff line change 28
28
<ProjectReference Include =" ..\..\src\FSharp.Data.DesignTime\FSharp.Data.DesignTime.fsproj" />
29
29
</ItemGroup >
30
30
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
31
- </Project >
31
+ </Project >
Original file line number Diff line number Diff line change 23
23
<ProjectReference Include =" ..\FSharp.Data.Tests\FSharp.Data.Tests.fsproj" />
24
24
</ItemGroup >
25
25
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
26
- </Project >
26
+ </Project >
Original file line number Diff line number Diff line change 36
36
<PackageReference Update =" FSharp.Core" Version =" 6.0.1" />
37
37
</ItemGroup >
38
38
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
39
- </Project >
39
+ </Project >
You can’t perform that action at this time.
0 commit comments