Skip to content

Commit c8e33a9

Browse files
Fix code formatting issues
Fixed formatting in build/build.fs to comply with Fantomas standards. This resolves the CI CheckFormat failure. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent fe0273d commit c8e33a9

1 file changed

Lines changed: 14 additions & 13 deletions

File tree

build/build.fs

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -159,25 +159,26 @@ let buildscript () =
159159
Shell.cleanDir ".fsdocs"
160160

161161
// List of projects to include in documentation (excluding benchmark project)
162-
let docProjects = [
163-
"src/FSharp.Data/FSharp.Data.fsproj"
164-
"src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj"
165-
"src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj"
166-
"src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj"
167-
"src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj"
168-
"src/FSharp.Data.Http/FSharp.Data.Http.fsproj"
169-
"src/FSharp.Data.Runtime.Utilities/FSharp.Data.Runtime.Utilities.fsproj"
170-
"src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj"
171-
"src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj"
172-
]
173-
162+
let docProjects =
163+
[ "src/FSharp.Data/FSharp.Data.fsproj"
164+
"src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj"
165+
"src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj"
166+
"src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj"
167+
"src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj"
168+
"src/FSharp.Data.Http/FSharp.Data.Http.fsproj"
169+
"src/FSharp.Data.Runtime.Utilities/FSharp.Data.Runtime.Utilities.fsproj"
170+
"src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj"
171+
"src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj" ]
172+
174173
let projectArgs = docProjects |> String.concat " "
175174

176175
let result =
177176
DotNet.exec
178177
id
179178
"fsdocs"
180-
("build --projects " + projectArgs + " --properties Configuration=Release --strict --eval --clean --parameters fsdocs-package-version "
179+
("build --projects "
180+
+ projectArgs
181+
+ " --properties Configuration=Release --strict --eval --clean --parameters fsdocs-package-version "
181182
+ release.NugetVersion)
182183

183184
if not result.OK then

0 commit comments

Comments
 (0)