Skip to content

Commit ebea654

Browse files
committed
fix docs
1 parent 0de7818 commit ebea654

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
if: matrix.os != 'windows-latest'
3333
run: ./build.sh
3434

35-
- name: Build on Unix
35+
- name: Build docs (unix)
3636
if: matrix.os != 'windows-latest'
3737
run: dotnet fsdocs build --clean --properties Configuration=Release
3838

39-
- name: Deploy documentation from master
39+
- name: Deploy documentation from master (unix)
4040
if: matrix.os != 'windows-latest'
4141
uses: peaceiris/actions-gh-pages@v3
4242
with:
@@ -45,7 +45,7 @@ jobs:
4545
publish_branch: gh-pages
4646
force_orphan: true
4747

48-
- name: Publish NuGets (if versions not published before)
48+
- name: Publish NuGets (unix, if versions not published before)
4949
if: matrix.os != 'windows-latest'
5050
run: dotnet nuget push bin/FSharp.TypeProviders.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_ORG_TOKEN }} --skip-duplicate
5151

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,8 @@ tests/fsyacc/Test1/test1lex.fs
206206
.vs/
207207
.ionide/
208208

209-
paket-files/
209+
paket-files/
210+
211+
output/
212+
213+
.fsdocs/

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>FSharp.TypeProviders.SDK contributors</Authors>
44
<PackageLicenseExpression>MIT</PackageLicenseExpression>
55
<PackageProjectUrl>https://github.com/fsprojects/FSharp.TypeProviders.SDK#the-f-type-provider-sdk</PackageProjectUrl>
6-
<RepositoryUrl>http://github.com/fsprojects/FSharp.TypeProviders.SDK</RepositoryUrl>
6+
<RepositoryUrl>https://github.com/fsprojects/FSharp.TypeProviders.SDK</RepositoryUrl>
77
<RepositoryType>git</RepositoryType>
88
<Copyright>Copyright 2020 FSharp.TypeProviders.SDK contributors</Copyright>
99
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ See [the documentation](https://fsprojects.github.io/FSharp.TypeProviders.SDK).
1414

1515
## Support and community
1616

17-
- If you have a question about `FSharp`, ask at StackOverflow and [mark your question with the `f#` tag](http://stackoverflow.com/questions/tagged/f%23).
17+
- If you have a question about `FSharp`, ask at StackOverflow and [mark your question with the `f#` tag](https://stackoverflow.com/questions/tagged/f%23).
1818
- If you want to submit a bug, a feature request or help with fixing bugs then look at [issues](https://github.com/fsprojects/FSharp.TypeProviders.SDK/issues).
19-
- To discuss more general issues about F# Type Providers SDK, its goals and other open-source F# projects, join the [fsharp-opensource mailing list](http://groups.google.com/group/fsharp-opensource)
20-
19+
2120
## Building
2221

2322
Use

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ For advice on how to get started building a type provider, check out:
5555

5656
- [Tehcnical Notes](technical-notes.html)
5757
- [FAQ](faq.html)
58-
- [Type Providers from the ground up](http://blog.mavnn.co.uk/type-providers-from-the-ground-up/)
59-
- (and the [follow up posts](http://blog.mavnn.co.uk/blog/categories/typeprovider/))
60-
- [The MSDN Tutorial](http://msdn.microsoft.com/en-us/library/hh361034.aspx). The code in this package replaces the code from the sample pack it mentions.
58+
- [Type Providers from the ground up](https://blog.mavnn.co.uk/type-providers-from-the-ground-up/)
59+
- (and the [follow up posts](https://blog.mavnn.co.uk/blog/categories/typeprovider/))
60+
- [The MSDN Tutorial](https://msdn.microsoft.com/en-us/library/hh361034.aspx). The code in this package replaces the code from the sample pack it mentions.
6161

6262

docs/technical-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ These dependencies are packaged and managed differently
4040

4141
F# type providers are hosted by applications using FSharp.Compiler.Service.
4242
These notes describe the lifetime and typical resource usage of type provider instances for applications that incorporate
43-
FSharp.Compiler.Service (the host). Most documentation on the compiler as a service can be found at http://github.com/fsharp/FSharp.Compiler.Service.
43+
FSharp.Compiler.Service (the host).
4444

4545
Each time the host application (e.g. devenv.exe) checks a file using type providers (e.g. containing `JsonProvider<"...">`), one or more new TP instantiations may be created, along with subsequent calls to `ApplyStaticArguments`.
4646

templates/content/basic/src/MyProvider.Runtime/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ authors
55
owners
66
Steffen Forkmann, Gustavo Guerra, JohnDoeKyrgyz, Don Syme
77
projectUrl
8-
http://github.com/fsprojects/MyProvider
8+
https://github.com/fsprojects/MyProvider
99
iconUrl
1010
https://raw.githubusercontent.com/fsprojects/MyProvider/master/docs/files/img/logo.png
1111
licenseUrl
12-
http://github.com/fsprojects/MyProvider/blob/master/LICENSE.txt
12+
https://github.com/fsprojects/MyProvider/blob/master/LICENSE.txt
1313
requireLicenseAcceptance
1414
false
1515
tags

0 commit comments

Comments
 (0)