diff --git a/docs/docs/markdown.md b/docs/docs/markdown.md index 88b1e1f29af..7eb433ef87e 100644 --- a/docs/docs/markdown.md +++ b/docs/docs/markdown.md @@ -74,7 +74,7 @@ For API reference files, the UID is auto generated by mangling the API's signatu > [!Note] > Conceptual Markdown file doesn't have UID generated by default. So it cannot be cross referenced unless you give it a UID. -See the list of [predefined metadata](config.md#predefined-metadata) for applicable options for inclusion in the YAML header. +See the list of [predefined metadata](../reference/docfx-json-reference.md#predefined-metadata) for applicable options for inclusion in the YAML header. ## Alerts diff --git a/docs/reference/docfx-json-reference.md b/docs/reference/docfx-json-reference.md index eb028ad8c50..820682f6cfb 100644 --- a/docs/reference/docfx-json-reference.md +++ b/docs/reference/docfx-json-reference.md @@ -306,7 +306,7 @@ Specifies the value of [priority](https://www.sitemaps.org/protocol.html#priorit #### `fileOptions` -This property can be used when some specific files have different sitemap settings. It is a set of key-value pairs, where key is the [*glob* pattern](#23-glob-pattern) for input files, and value is the sitemap options. Order matters and the latter matching option overwrites the former ones. +This property can be used when some specific files have different sitemap settings. It is a set of key-value pairs, where key is the [glob patterns](#glob-patterns) for input files, and value is the sitemap options. Order matters and the latter matching option overwrites the former ones. ### `disableGitFeatures` diff --git a/docs/tutorial/intro_overwrite_files.md b/docs/tutorial/intro_overwrite_files.md index 1b878624ed5..3f2f798fbdb 100644 --- a/docs/tutorial/intro_overwrite_files.md +++ b/docs/tutorial/intro_overwrite_files.md @@ -62,7 +62,7 @@ When processing *Conceptual File*s and *Metadata File*s, *Overwrite Model*s with Apply *Overwrite File*s ----------------------- -Inside `docfx.json`, [`overwrite`](../reference/docfx-json-reference.md#12-properties-for-build) is used to specify the *Overwrite File*s. +Inside `docfx.json`, [`overwrite`](../reference/docfx-json-reference.md#overwrite) is used to specify the *Overwrite File*s. Overwrite principles ----------------- diff --git a/samples/seed/dotnet/solution/CatLibrary/Class1.cs b/samples/seed/dotnet/solution/CatLibrary/Class1.cs index 95375a0d4d8..4e759d0858e 100644 --- a/samples/seed/dotnet/solution/CatLibrary/Class1.cs +++ b/samples/seed/dotnet/solution/CatLibrary/Class1.cs @@ -4,6 +4,8 @@ using System.Text; using System.Threading.Tasks; +#pragma warning disable CS0659 // 'class' overrides Object.Equals(object o) but does not override Object.GetHashCode() + namespace CatLibrary { using System.Diagnostics;