Skip to content

Commit b334dc6

Browse files
authored
Update fantomas version to 7.0.3 in dotnet-tools.json files and fix spacing in build.fs (#290)
1 parent 5eec1a5 commit b334dc6

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.config/dotnet-tools.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
"isRoot": true,
44
"tools": {
55
"fantomas": {
6-
"version": "6.0.1",
6+
"version": "7.0.3",
77
"commands": [
88
"fantomas"
9-
]
9+
],
10+
"rollForward": false
1011
},
1112
"fsdocs-tool": {
1213
"version": "18.1.0",
1314
"commands": [
1415
"fsdocs"
15-
]
16+
],
17+
"rollForward": false
1618
}
1719
}
1820
}

Content/Console/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"fantomas": {
18-
"version": "6.0.1",
18+
"version": "7.0.3",
1919
"commands": [
2020
"fantomas"
2121
]

Content/Console/build/build.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ let dotnetTest ctx =
354354

355355
let generateCoverageReport _ =
356356
let coverageReports =
357-
!! "tests/**/coverage*.xml"
357+
!!"tests/**/coverage*.xml"
358358
|> String.concat ";"
359359

360360
let sourceDirs =
@@ -509,7 +509,7 @@ let gitRelease _ =
509509
Git.Staging.stageFile "" "CHANGELOG.md"
510510
|> ignore
511511

512-
!! "src/**/AssemblyInfo.fs"
512+
!!"src/**/AssemblyInfo.fs"
513513
|> Seq.iter (
514514
Git.Staging.stageFile ""
515515
>> ignore

Content/Library/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"fantomas": {
18-
"version": "6.0.1",
18+
"version": "7.0.3",
1919
"commands": [
2020
"fantomas"
2121
]

Content/Library/build/build.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ let dotnetTest ctx =
441441

442442
let generateCoverageReport _ =
443443
let coverageReports =
444-
!! "tests/**/coverage*.xml"
444+
!!"tests/**/coverage*.xml"
445445
|> String.concat ";"
446446

447447
let sourceDirs =

0 commit comments

Comments
 (0)