Skip to content

Commit 8475d1a

Browse files
authored
feat(LLMs): add LLMs docs generator project (#887)
1 parent 1226b9e commit 8475d1a

File tree

9 files changed

+1766
-0
lines changed

9 files changed

+1766
-0
lines changed

BootstrapBlazor.Extensions.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,6 @@
124124
</Folder>
125125
<Folder Name="/tools/">
126126
<Project Path="tools/BootstrapBlazor.CssBundler/BootstrapBlazor.CssBundler.csproj" />
127+
<Project Path="tools/BootstrapBlazor.LLMsDocsGenerator/BootstrapBlazor.LLMsDocsGenerator.csproj" />
127128
</Folder>
128129
</Solution>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Version>10.0.0</Version>
5+
<OutputType>Exe</OutputType>
6+
<TargetFramework>net10.0</TargetFramework>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
11+
<PropertyGroup>
12+
<Title>BootstrapBlazor LLMs docs Generator</Title>
13+
<PackageId>BootstrapBlazor.LLMsDocsGenerator</PackageId>
14+
<PackAsTool>true</PackAsTool>
15+
<ToolCommandName>llms-docs</ToolCommandName>
16+
<Authors>ice6 (ice6@live.cn)</Authors>
17+
<Copyright>Copyright 2026</Copyright>
18+
<Company>BootstrapBlazor</Company>
19+
</PropertyGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
23+
<PackageReference Include="System.CommandLine" Version="2.0.1" />
24+
</ItemGroup>
25+
26+
<ItemGroup>
27+
<SupportedPlatform Remove="browser" />
28+
</ItemGroup>
29+
30+
</Project>

0 commit comments

Comments
 (0)