Skip to content

Commit

Permalink
Add obsolete attributes that is mentioned in review comments. and fix…
Browse files Browse the repository at this point in the history
… some comment.
  • Loading branch information
filzrev committed Jul 16, 2023
1 parent a3b6431 commit 1d746e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Docfx.App/Config/BuildJsonConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ internal class BuildJsonConfig
/// <summary>
/// Specifies pairing that is used for folder redirection rules.
/// </summary>
[Obsolete("May be removed in a future release.")]
[JsonProperty("pairing")]
public List<ContentPairingInfo> Pairing { get; set; }

Expand All @@ -61,7 +62,7 @@ internal class BuildJsonConfig
/// <summary>
/// Defines the output folder of the generated build files.
/// </summary>
[Obsolete("Use output instead")]
[Obsolete("Use output instead.")]
[JsonProperty("dest")]
public string Destination { get; set; }

Expand Down Expand Up @@ -95,8 +96,9 @@ internal class BuildJsonConfig
public Dictionary<string, FileMetadataPairs> FileMetadata { get; set; }

/// <summary>
/// Specify tag parameters that are used by SchemaDrivenDocumentProcessor's
/// Specify tag parameters that are used by SchemaDrivenDocumentProcessor
/// </summary>
[Obsolete("May be removed in a future release.")]
[JsonProperty("tagParameters")]
public Dictionary<string, JArray> TagParameters { get; set; }

Expand Down

0 comments on commit 1d746e9

Please sign in to comment.