-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBootstrapBlazor.LLMsDocsGenerator.csproj
More file actions
31 lines (26 loc) · 955 Bytes
/
BootstrapBlazor.LLMsDocsGenerator.csproj
File metadata and controls
31 lines (26 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.0.1</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SatelliteResourceLanguages>false</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup>
<Title>BootstrapBlazor LLMs docs Generator</Title>
<PackageId>BootstrapBlazor.LLMsDocsGenerator</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>llms-docs</ToolCommandName>
<Authors>ice6 (ice6@live.cn)</Authors>
<Copyright>Copyright 2026</Copyright>
<Company>BootstrapBlazor</Company>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Remove="browser" />
</ItemGroup>
</Project>