From 1d746e93062a5951314e9fd6e383b848742774e2 Mon Sep 17 00:00:00 2001
From: filzrev <103790468+filzrev@users.noreply.github.com>
Date: Sun, 16 Jul 2023 21:50:42 +0900
Subject: [PATCH] Add obsolete attributes that is mentioned in review comments.
and fix some comment.
---
src/Docfx.App/Config/BuildJsonConfig.cs | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/Docfx.App/Config/BuildJsonConfig.cs b/src/Docfx.App/Config/BuildJsonConfig.cs
index 2254d25e32b..edf09ed174d 100644
--- a/src/Docfx.App/Config/BuildJsonConfig.cs
+++ b/src/Docfx.App/Config/BuildJsonConfig.cs
@@ -43,6 +43,7 @@ internal class BuildJsonConfig
///
/// Specifies pairing that is used for folder redirection rules.
///
+ [Obsolete("May be removed in a future release.")]
[JsonProperty("pairing")]
public List Pairing { get; set; }
@@ -61,7 +62,7 @@ internal class BuildJsonConfig
///
/// Defines the output folder of the generated build files.
///
- [Obsolete("Use output instead")]
+ [Obsolete("Use output instead.")]
[JsonProperty("dest")]
public string Destination { get; set; }
@@ -95,8 +96,9 @@ internal class BuildJsonConfig
public Dictionary FileMetadata { get; set; }
///
- /// Specify tag parameters that are used by SchemaDrivenDocumentProcessor's
+ /// Specify tag parameters that are used by SchemaDrivenDocumentProcessor
///
+ [Obsolete("May be removed in a future release.")]
[JsonProperty("tagParameters")]
public Dictionary TagParameters { get; set; }