website
website copied to clipboard
API - Missing ability to download reference guide for offline.
@Eldadc commented on Tue Apr 10 2018
API - Missing ability to download reference guide for offline. Thanks
There's no offline API reference available currently, the website is a static web site so you could download the html files from the publish git branch https://github.com/cake-build/website/archive/publish/master.zip
If you're on a Windows machine you could actually generate and host the site locally using WYAM, first clone repo get all addin and sources from GitrHub and NuGet
https://github.com/cake-build/website.git
.\build.ps1 -Target GetArtifacts
Then you can render the docs locally
.\build.ps1 -Target Preview
And preview using local url http://localhost:5080
Thanks for the detailed answer !