diff --git a/Directory.Build.props b/Directory.Build.props index 66a4b14b..a91db79c 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -10,9 +10,9 @@ logo.png Apache-2.0 README.md - https://github.com/SchlenkR/FsHttp + https://github.com/fsprojects/FsHttp - https://github.com/SchlenkR/FsHttp/blob/master/LICENSE + https://github.com/fsprojects/FsHttp/blob/master/LICENSE https://www.nuget.org/packages/FsHttp#release-body-tab diff --git a/README.md b/README.md index 7abbf36e..e1ddba93 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- logo + logo

FsHttp is a .Net HTTP client library for C# and F#. It aims for describing and executing HTTP requests in convenient ways that can be used in production and interactive environments. @@ -10,7 +10,7 @@ The design principle behind FsHttp is: **FsHttp** is developed and maintained by [@SchlenkR](https://github.com/schlenkr) and [@dawedawe](https://github.com/dawedawe). Feel free to leave us a message. -[![NuGet Badge](http://img.shields.io/nuget/v/FsHttp.svg?style=flat)](https://www.nuget.org/packages/FsHttp) ![build status](https://github.com/SchlenkR/FsHttp/actions/workflows/push-master_pull-request.yml/badge.svg?event=push) +[![NuGet Badge](http://img.shields.io/nuget/v/FsHttp.svg?style=flat)](https://www.nuget.org/packages/FsHttp) ![build status](https://github.com/fsprojects/FsHttp/actions/workflows/push-master_pull-request.yml/badge.svg?event=push) A Simple Example @@ -60,8 +60,8 @@ await "https://reqres.in/api/users" Documentation ------------- -* ๐Ÿ“– Please see [FsHttp Documentation](https://schlenkr.github.io/FsHttp) site for a detailed documentation. -* ๐Ÿงช In addition, have a look at the [Integration Tests](https://github.com/SchlenkR/FsHttp/tree/master/src/Tests) that show various library details. +* ๐Ÿ“– Please see [FsHttp Documentation](https://fsprojects.github.io/FsHttp) site for a detailed documentation. +* ๐Ÿงช In addition, have a look at the [Integration Tests](https://github.com/fsprojects/FsHttp/tree/master/src/Tests) that show various library details. Release Notes / Migrating to new versions @@ -74,7 +74,7 @@ Release Notes / Migrating to new versions GitHub ------------- -Please see [FsHttp on GitHub](https://github.com/SchlenkR/FsHttp). +Please see [FsHttp on GitHub](https://github.com/fsprojects/FsHttp). Building diff --git a/docs/Builders_and_Evaluation.fsx.bak b/docs/Builders_and_Evaluation.fsx.bak index e95bb61c..01389f2e 100644 --- a/docs/Builders_and_Evaluation.fsx.bak +++ b/docs/Builders_and_Evaluation.fsx.bak @@ -78,7 +78,7 @@ let pageAsync = } -// TODO Document naming conventions according to: https://github.com/SchlenkR/FsHttp/issues/48 +// TODO Document naming conventions according to: https://github.com/fsprojects/FsHttp/issues/48 (** ## Naming Conventions diff --git a/docs/Release_Notes.fsx b/docs/Release_Notes.fsx index 6cbb4c28..6c86d03c 100644 --- a/docs/Release_Notes.fsx +++ b/docs/Release_Notes.fsx @@ -18,7 +18,7 @@ index: 10 * `httpAsync` -> `http { ... } |> Request.sendAsync` * `httpLazyAsync` -> `http { ... } |> Request.toAsync` * `httpMessage` -> `http { ... } |> Request.toMessage` -* see also: [https://github.com/SchlenkR/FsHttp/blob/master/src/Tests/BuildersAndSignatures.fs](Tests in BuildersAndSignatures.fs) +* see also: [https://github.com/fsprojects/FsHttp/blob/master/src/Tests/BuildersAndSignatures.fs](Tests in BuildersAndSignatures.fs) * Renamed type `LazyHttpBuilder` -> `HttpBuilder` * Renamed `Request.buildAsync` -> `Request.toAsync` * Removed `send` and `sendAsync` builder methods diff --git a/docs/Requesting_Multipart_Files.fsx b/docs/Requesting_Multipart_Files.fsx index f1e9836c..1d57492c 100644 --- a/docs/Requesting_Multipart_Files.fsx +++ b/docs/Requesting_Multipart_Files.fsx @@ -33,5 +33,5 @@ http { (** ## Further Readings -> Have a look at the [https://github.com/SchlenkR/FsHttp/blob/master/src/Tests/Multipart.fs](multipart tests) for more examples using multipart. +> Have a look at the [https://github.com/fsprojects/FsHttp/blob/master/src/Tests/Multipart.fs](multipart tests) for more examples using multipart. *) \ No newline at end of file diff --git a/docs/Sending_Requests.fsx b/docs/Sending_Requests.fsx index 6b0ea4a7..62a2c731 100644 --- a/docs/Sending_Requests.fsx +++ b/docs/Sending_Requests.fsx @@ -111,7 +111,7 @@ http { (** -See also: https://github.com/SchlenkR/FsHttp/issues/105 +See also: https://github.com/fsprojects/FsHttp/issues/105 Instead of binding a cancellation token directly to a request definition (like in the example above), it is also possible to pass it on execution-timer, like so: diff --git a/docu.ps1 b/docu.ps1 index 9670d844..b01b26e1 100644 --- a/docu.ps1 +++ b/docu.ps1 @@ -33,7 +33,7 @@ dotnet fsdocs ` --clean ` --sourcefolder ./src ` --properties Configuration=Release TargetFramework=net8.0 ` - --sourcerepo https://github.com/SchlenkR/FsHttp/blob/master/src ` + --sourcerepo https://github.com/fsprojects/FsHttp/blob/master/src ` --parameters root /FsHttp/ ` --strict ` --output ./.docsOutput