Skip to content

Commit 2ec6e13

Browse files
committedNov 18, 2022
build fix
1 parent e820b51 commit 2ec6e13

File tree

6 files changed

+8
-40
lines changed

6 files changed

+8
-40
lines changed
 

‎.github/workflows/dotnetcore.yml

-32
This file was deleted.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There is also an ODBC provider that will let you connect to any ODBC source with
3737
## Documentation
3838

3939
Core documentation and samples can be found at the
40-
[SQLProvider home page](http://fsprojects.github.io/SQLProvider/). This
40+
[SQLProvider home page](https://fsprojects.github.io/SQLProvider/). This
4141
documentation is generated from
4242
[docs/content/](https://github.com/fsprojects/SQLProvider/tree/master/docs/content),
4343
so please feel free to submit a pull request if you have fixed typos are added

‎build.fsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Target.create "PackNuGet" (fun _ ->
319319
// --------------------------------------------------------------------------------------
320320
// Generate the documentation
321321

322-
Target.create "GenerateReferenceDocs" (fun _ ->
322+
Target.create "GenerateHelp" (fun _ ->
323323
Shell.cleanDir ".fsdocs"
324324
let result = Fake.DotNet.DotNet.exec id "fsdocs" "build --output docs/output --input docs/content --clean"
325325
if not result.OK then failwith "generating reference documentation failed"
@@ -352,7 +352,7 @@ Target.create "ReleaseDocs" (fun _ ->
352352
Fake.IO.Shell.cleanDir tempDocsDir
353353
Repository.cloneSingleBranch "" (gitHome + "/" + gitName + ".git") "gh-pages" tempDocsDir
354354

355-
Fake.IO.Shell.deleteDir tempDocsDir
355+
//Fake.IO.Shell.deleteDir tempDocsDir
356356
Fake.IO.Shell.copyRecursive "docs/output" tempDocsDir true |> Fake.Core.Trace.tracefn "%A"
357357
if not (System.IO.Directory.Exists tempDocsDir) then
358358
printfn "GH Pages not found, couldn't release."
@@ -389,7 +389,6 @@ Target.create "BuildDocs" ignore
389389
==> "PackNuGet"
390390
==> "CleanDocs"
391391
// Travis doesn't support mono+dotnet:
392-
=?> ("GenerateReferenceDocs", Fake.Core.BuildServer.isLocalBuild && not Fake.Core.Environment.isMono)
393392
=?> ("GenerateHelp", Fake.Core.BuildServer.isLocalBuild && not Fake.Core.Environment.isMono)
394393
==> "All"
395394

‎docs/content/_template.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@
3838
</head>
3939

4040
<body>
41-
<a href="http://github.com/fsprojects/SQLProvider"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
42-
4341
<nav class="navbar navbar-expand-md navbar-light bg-secondary {{fsdocs-navbar-position}}" id="fsdocs-nav">
4442
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
4543
<span class="navbar-toggler-icon"></span>
4644
</button>
45+
4746
<div class="collapse navbar-collapse navbar-nav-scroll" id="navbarsExampleDefault">
47+
<a href="http://github.com/fsprojects/SQLProvider"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
48+
<div style="height: 105px"></div>
4849

4950
<ul class="navbar-nav">
5051
<a href="{{fsdocs-package-project-url}}"><li class="nav-header" style="text-transform: uppercase">SQLProvider</li></a>

‎docs/content/core/techdetails.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
## Version control instructions
44
5-
Git information is in a separate [document](http://fsprojects.github.io/SQLProvider/core/contributing.html).
5+
Git information is in a separate [document](https://fsprojects.github.io/SQLProvider/core/contributing.html).
66
77
## The environment
88

‎tests/SqlProvider.Tests/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Query expressions enable you to query a data source and put the data in a desire
66
SQLProvider generally support most of the [F# Query Expressions](https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/query-expressions),
77
but it also can optimize the queries heavily.
88

9-
Here are some sample queries (taken from [QueryTests.fs](https://github.com/fsprojects/SQLProvider/blob/master/tests/SqlProvider.Tests/QueryTests.fs) and corresponding SQL (by SQLLite, but the SQL-operations do vary.) More details and best practices are described in [Querying](http://fsprojects.github.io/SQLProvider/core/querying.html) documentation.
9+
Here are some sample queries (taken from [QueryTests.fs](https://github.com/fsprojects/SQLProvider/blob/master/tests/SqlProvider.Tests/QueryTests.fs) and corresponding SQL (by SQLLite, but the SQL-operations do vary.) More details and best practices are described in [Querying](https://fsprojects.github.io/SQLProvider/core/querying.html) documentation.
1010

1111
### Select query
1212

0 commit comments

Comments
 (0)
Please sign in to comment.