We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7200ac5 commit 5c435d3Copy full SHA for 5c435d3
1 file changed
build/build.fs
@@ -346,8 +346,9 @@ Target.create "GenerateDocs" (fun _ ->
346
)
347
348
Target.create "ServeDocs" (fun _ ->
349
- fakeiisexpress.HostStaticWebsite id (__SOURCE_DIRECTORY__ @@ @"docs\output\") |> ignore
350
- fakeiisexpress.OpenUrlInBrowser "http://localhost:8080"
+ fakeiisexpress.HostStaticWebsite id (__SOURCE_DIRECTORY__ @@ @"\..\docs\output") |> ignore
+ // Process.Start doesn't work anymore with an URI (https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.process.start?view=net-10.0)
351
+ //fakeiisexpress.OpenUrlInBrowser "http://localhost:8080/index.html"
352
353
354
Target.create "ReleaseDocs" (fun _ ->
0 commit comments