by controlledchaos on 1/3/21, 4:42 AM with 7 comments
I built an open-source .NET Core framework to try and make my job easier when it comes to building REST APIs off of existing databases. I'm looking for tips on how to properly document it, as well as ways to improve the class structure. Any help is appreciated.
https://github.com/evanirla/snacks-entity-core
I have also built a set of extension packages that handle things like Caching and Authorization.
Thanks!
by henryliang on 1/3/21, 6:37 AM
by bob1029 on 1/3/21, 5:07 PM
Regardless, if you are looking for a good way to build documentation, look no further than DocFX:
https://dotnet.github.io/docfx/index.html
This is something that can be built-in to your CI/CD toolchain and automagically refresh your static HTML docs each time you make changes. All of your actual documentation can live in XML comments above the relevant code members throughout. This is intended to work in concert with the default VS comment style (3 slashes starts XML comment section).
by controlledchaos on 1/6/21, 2:58 PM