Skip to content

Commit 8085afb

Browse files
committed
refactor: 更新命名空间
1 parent 8475d1a commit 8085afb

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

tools/BootstrapBlazor.LLMsDocsGenerator/ComponentAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.CodeAnalysis.CSharp.Syntax;
99
using System.Text.RegularExpressions;
1010

11-
namespace LlmsDocsGenerator;
11+
namespace BootstrapBlazorLLMsDocsGenerator;
1212

1313
/// <summary>
1414
/// Analyzes Blazor component source files using Roslyn

tools/BootstrapBlazor.LLMsDocsGenerator/ComponentInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// See the LICENSE file in the project root for more information.
44
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
55

6-
namespace LlmsDocsGenerator;
6+
namespace BootstrapBlazorLLMsDocsGenerator;
77

88
/// <summary>
99
/// Represents information about a Blazor component

tools/BootstrapBlazor.LLMsDocsGenerator/DocsGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// See the LICENSE file in the project root for more information.
44
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
55

6-
namespace LlmsDocsGenerator;
6+
namespace BootstrapBlazorLLMsDocsGenerator;
77

88
/// <summary>
99
/// Main documentation generator class

tools/BootstrapBlazor.LLMsDocsGenerator/MarkdownBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
using System.Text;
77

8-
namespace LlmsDocsGenerator;
8+
namespace BootstrapBlazorLLMsDocsGenerator;
99

1010
/// <summary>
1111
/// Builds Markdown documentation for components

tools/BootstrapBlazor.LLMsDocsGenerator/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
// See the LICENSE file in the project root for more information.
44
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
55

6-
using LlmsDocsGenerator;
7-
using System.CommandLine;
6+
using BootstrapBlazor.LLMsDocsGenerator;
87

98
var componentOption = new Option<string?>("--component") { Description = "Generate documentation for a specific component only" };
109
var indexOnlyOption = new Option<bool>("--index-only") { Description = "Generate only the index file (llms.txt)" };

0 commit comments

Comments
 (0)