Install-Package Microsoft.AspNet.WebApi.HelpPage -Version 5.0.0
This will add following to the package config
<package id="Microsoft.AspNet.WebApi.HelpPage" version="5.0.0" targetFramework="net45" />
This install will not add any new assembly to the reference, but this will add Area HelpPage, with controller,model and view which will provide help page.
Documentation:
Update Project Property, build tab to check Xml Documentation file.
Open Areas->HelpPage->AppStart->HelpPageConfig file and uncomment
config.SetDocumentationProvider
Make sure it refers the same xml documentation file
Now open .../Help url
This will add following to the package config
<package id="Microsoft.AspNet.WebApi.HelpPage" version="5.0.0" targetFramework="net45" />
This install will not add any new assembly to the reference, but this will add Area HelpPage, with controller,model and view which will provide help page.
Documentation:
Update Project Property, build tab to check Xml Documentation file.
Open Areas->HelpPage->AppStart->HelpPageConfig file and uncomment
config.SetDocumentationProvider
Make sure it refers the same xml documentation file
Now open .../Help url
No comments:
Post a Comment