Skip to content

Commit dd7ef9a

Browse files
committed
adjust namespaces
1 parent e6a9f3e commit dd7ef9a

File tree

19 files changed

+26
-8
lines changed

19 files changed

+26
-8
lines changed

src/Elastic.Markdown/BuildContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.IO.Abstractions;
55
using Elastic.Markdown.Diagnostics;
66
using Elastic.Markdown.IO;
7+
using Elastic.Markdown.IO.Discovery;
78

89
namespace Elastic.Markdown;
910

src/Elastic.Markdown/DocumentationGenerator.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Reflection;
66
using System.Text.Json;
77
using Elastic.Markdown.IO;
8+
using Elastic.Markdown.IO.State;
89
using Elastic.Markdown.Slices;
910
using Microsoft.Extensions.Logging;
1011

src/Elastic.Markdown/IO/Configuration/ConfigurationFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using YamlDotNet.Core;
99
using YamlDotNet.RepresentationModel;
1010

11-
namespace Elastic.Markdown.IO;
11+
namespace Elastic.Markdown.IO.Configuration;
1212

1313
public record ConfigurationFile : DocumentationFile
1414
{

src/Elastic.Markdown/IO/Configuration/ITocItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information
44

5-
namespace Elastic.Markdown.IO;
5+
namespace Elastic.Markdown.IO.Configuration;
66

77
public interface ITocItem;
88

src/Elastic.Markdown/IO/Discovery/GitCheckoutInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Text.Json.Serialization;
77
using SoftCircuits.IniFileParser;
88

9-
namespace Elastic.Markdown.IO;
9+
namespace Elastic.Markdown.IO.Discovery;
1010

1111
public record GitCheckoutInformation
1212
{

src/Elastic.Markdown/IO/DocumentationSet.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
using System.IO.Abstractions;
66
using Elastic.Markdown.Diagnostics;
7+
using Elastic.Markdown.IO.Configuration;
8+
using Elastic.Markdown.IO.Navigation;
79
using Elastic.Markdown.Myst;
810

911
namespace Elastic.Markdown.IO;

src/Elastic.Markdown/IO/MarkdownFile.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// See the LICENSE file in the project root for more information
44
using System.IO.Abstractions;
55
using Elastic.Markdown.Diagnostics;
6+
using Elastic.Markdown.IO.Navigation;
67
using Elastic.Markdown.Myst;
78
using Elastic.Markdown.Myst.Directives;
89
using Elastic.Markdown.Myst.FrontMatter;

src/Elastic.Markdown/IO/Navigation/DocumentationGroup.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information
44

5-
namespace Elastic.Markdown.IO;
5+
using Elastic.Markdown.IO.Configuration;
6+
7+
namespace Elastic.Markdown.IO.Navigation;
68

79
public interface INavigationItem
810
{

src/Elastic.Markdown/IO/State/GenerationState.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// See the LICENSE file in the project root for more information
44

55
using System.Text.Json.Serialization;
6-
using Elastic.Markdown.IO;
6+
using Elastic.Markdown.IO.Discovery;
77

8-
namespace Elastic.Markdown;
8+
namespace Elastic.Markdown.IO.State;
99

1010
public record GenerationState
1111
{

src/Elastic.Markdown/IO/State/LinkReference.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
// See the LICENSE file in the project root for more information
44

55
using System.Text.Json.Serialization;
6+
using Elastic.Markdown.IO.Discovery;
67

7-
namespace Elastic.Markdown.IO;
8+
namespace Elastic.Markdown.IO.State;
89

910
public record LinkReference
1011
{

0 commit comments

Comments
 (0)