Skip to content

Bump docfx from 2.74.0 to 2.76.0 #1524

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

Merged
merged 5 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
]
},
"docfx": {
"version": "2.74.0",
"version": "2.76.0",
"commands": [
"docfx"
]
Expand Down
3 changes: 3 additions & 0 deletions docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"internals/**.md",
"toc.yml",
"*.md"
],
"exclude": [
"**/README.md"
]
}
],
Expand Down
4 changes: 4 additions & 0 deletions docs/request-examples/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
_disableToc: true
---

# Example requests

These requests have been generated against the "GettingStarted" application and are updated on every deployment.
Expand Down
Empty file added docs/request-examples/toc.md
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
/// </summary>
/// <remarks>
/// Patterns are similar to regular expressions, but a lot simpler. They consist of a sequence of terms. A term can be a single character or a character
/// choice, optionally followed by a quantifier.
/// choice. A term is optionally followed by a quantifier.
/// <p>
/// The following characters can be used:
/// <list type="table">
Expand All @@ -58,18 +58,26 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
/// <description>
/// Matches a to-many relationship.
/// </description>
/// </item>
/// <item>
/// <term>O</term>
/// <description>
/// Matches a to-one relationship.
/// </description>
/// </item>
/// <item>
/// <term>R</term>
/// <description>
/// Matches a relationship.
/// </description>
/// </item>
/// <item>
/// <term>A</term>
/// <description>
/// Matches an attribute.
/// </description>
/// </item>
/// <item>
/// <term>F</term>
/// <description>
/// Matches a field.
Expand All @@ -86,15 +94,19 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
/// <item>
/// <term>?</term>
/// <description>
/// Matches its term zero or one times.
/// Matches its preceding term zero or one times.
/// </description>
/// </item>
/// <item>
/// <term>*</term>
/// <description>
/// Matches its term zero or more times.
/// Matches its preceding term zero or more times.
/// </description>
/// </item>
/// <item>
/// <term>+</term>
/// <description>
/// Matches its term one or more times.
/// Matches its preceding term one or more times.
/// </description>
/// </item>
/// </list>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ public interface IDocumentAdapter
/// <list type="bullet">
/// <item>
/// <description>
/// <code><![CDATA[IList<OperationContainer>]]></code> (operations)
/// <c><![CDATA[IList<OperationContainer>]]></c> (operations)
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[ISet<IIdentifiable>]]></code> (to-many relationship, unknown relationship)
/// <c><![CDATA[ISet<IIdentifiable>]]></c> (to-many relationship, unknown relationship)
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[IIdentifiable]]></code> (resource, to-one relationship)
/// <c><![CDATA[IIdentifiable]]></c> (resource, to-one relationship)
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[null]]></code> (to-one relationship)
/// <c><![CDATA[null]]></c> (to-one relationship)
/// </description>
/// </item>
/// </list>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,32 @@ public interface IResponseModelAdapter
/// <list type="bullet">
/// <item>
/// <description>
/// <code><![CDATA[IEnumerable<IIdentifiable>]]></code>
/// <c><![CDATA[IEnumerable<IIdentifiable>]]></c>
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[IIdentifiable]]></code>
/// <c><![CDATA[IIdentifiable]]></c>
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[null]]></code>
/// <c><![CDATA[null]]></c>
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[IEnumerable<OperationContainer?>]]></code>
/// <c><![CDATA[IEnumerable<OperationContainer?>]]></c>
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[IEnumerable<ErrorObject>]]></code>
/// <c><![CDATA[IEnumerable<ErrorObject>]]></c>
/// </description>
/// </item>
/// <item>
/// <description>
/// <code><![CDATA[ErrorObject]]></code>
/// <c><![CDATA[ErrorObject]]></c>
/// </description>
/// </item>
/// </list>
Expand Down