Skip to content

Commit

Permalink
fix opening of BuildJsonConfig model
Browse files Browse the repository at this point in the history
  • Loading branch information
rmannibucau committed Jun 16, 2024
1 parent 3f4df0b commit 634a530
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Docfx.App/Config/FileMetadataPairs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Docfx;
/// <see cref="BuildJsonConfig.FileMetadata"/>
/// <see cref="MergeJsonItemConfig.FileMetadata"/>
[Newtonsoft.Json.JsonConverter(typeof(FileMetadataPairsConverter))]
internal class FileMetadataPairs
public class FileMetadataPairs
{
// Order matters, the latter one overrides the former one
private readonly List<FileMetadataPairsItem> _items;
Expand Down
2 changes: 1 addition & 1 deletion src/Docfx.App/Config/FileMetadataPairsItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Docfx;
/// Glob/Value pair to define define file's metadata.
/// </summary>
/// <see cref="FileMetadataPairs"/>
internal class FileMetadataPairsItem
public class FileMetadataPairsItem
{
/// <summary>
/// The glob pattern to match the files.
Expand Down
2 changes: 1 addition & 1 deletion src/Docfx.App/Config/GroupConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Docfx;
/// <summary>
/// Group configuration.
/// </summary>
internal class GroupConfig
public class GroupConfig
{
/// <summary>
/// Defines the output folder of the generated build files.
Expand Down
2 changes: 1 addition & 1 deletion src/Docfx.App/Config/ListWithStringFallback.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Docfx;
/// ListWithStringFallback.
/// </summary>
[Newtonsoft.Json.JsonConverter(typeof(ListWithStringFallbackConverter))]
internal class ListWithStringFallback : List<string>
public class ListWithStringFallback : List<string>
{
/// <summary>
/// Initializes a new instance of the <see cref="ListWithStringFallback"/> class.
Expand Down

0 comments on commit 634a530

Please sign in to comment.