-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Fake.Net.Http documentation & API update #1759
Add Fake.Net.Http documentation & API update #1759
Conversation
vlukash
commented
Jan 18, 2018
- Add Fake.Net.Http documentation
- Change API to throw exceptions in case of error, so it's consistent with other APIs
Related to #1746 |
86f0354
to
14ff268
Compare
Seems like documentation is not autogenerated (from *.dll) for the netcore projects if *.fs files aren't included in the legacy FakeLib.fsproj. In this case, I don't see Fake.Net.Http namespace in the I can probably modify "GenerateDocs" target in build.fsx, or include *.fs files in the FakeLib.fsproj @matthid, do you know what is the right way to autogenerate docs for netcore projects? |
Actually, I think the easiest way is to just include it into fakelib until we have worked that out... |
14ff268
to
e999fc4
Compare
Got it, thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot. I can change the missing things after merging.
@@ -3,11 +3,13 @@ | |||
open Fake.Net.Async | |||
open Fake.Net.Result | |||
|
|||
/// [omit] | |||
// List extensions for traversing Result and Async types | |||
// Functions from fsharpforfunandprofit.com, please see details here: | |||
// https://fsharpforfunandprofit.com/posts/elevated-world-5/ | |||
module List = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should mark that internal?
@@ -1,7 +1,9 @@ | |||
namespace Fake.Net.Result | |||
|
|||
/// [omit] | |||
module Result = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal?
I think there is a place in build.fsx which needs to be edited if a new namespace (like |