-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
JSON Schema generator for documentation #623
Conversation
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #623 +/- ##
==========================================
+ Coverage 95.30% 98.99% +3.69%
==========================================
Files 57 57
Lines 2814 2699 -115
==========================================
- Hits 2682 2672 -10
+ Misses 99 4 -95
+ Partials 33 23 -10
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
This pull request includes various changes to the
README.md
anddocs/docfx_project/articles/refitter-file-format.md
files to improve documentation and add new settings. The most important changes include updates to command examples, new settings in the.refitter
file, and formatting improvements to links.Documentation updates:
README.md
: Updated command examples to remove the dollar sign prompt and added new settings such asaddContentTypeHeaders
anddateTimeFormat
to the.refitter
file examples. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14]docs/docfx_project/articles/refitter-file-format.md
: Added new settings such asdateFormat
,dateTimeFormat
, andaddContentTypeHeaders
to the.refitter
file format documentation. Improved formatting of links to use angle brackets. [1] [2] [3] [4] [5] [6]Codebase improvement:
src/Refitter.Core/Settings/ApizrSettings.cs
: AddedSystem.ComponentModel
andSystem.Text.Json.Serialization
using directives.