You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
4
4
5
5
## Project Overview
6
6
7
-
Tanka Documentation Generator is a .NET 9.0 console application that generates static HTML documentation sites from Markdown files. It's packaged as a .NET Global Tool (`Tanka.DocsGen`) and provides advanced features like live C# code integration via Roslyn and multi-source content aggregation.
7
+
Tanka Documentation Generator is a .NET 9.0 console application that generates static HTML documentation sites from Markdown files. It's distributed as a .NET Global Tool (`Tanka.DocsGen`) that can be installed via `dotnet tool install --global Tanka.DocsGen`. It provides advanced features like live C# code integration via Roslyn and multi-source content aggregation.
8
8
9
9
## Common Development Commands
10
10
@@ -32,12 +32,13 @@ dotnet run --project ./src/DocsTool/ -- dev -f ./tanka-docs-wip.yml
32
32
dotnet run --project ./src/DocsTool/ -- build -f ./tanka-docs-wip.yml
33
33
```
34
34
35
-
### Tool Development and Testing
35
+
### Tool Installation and Testing
36
36
```bash
37
-
#Build and pack the global tool
38
-
dotnet pack -c Release -o ./artifacts
37
+
#Install from NuGet (primary method)
38
+
dotnet tool install --global Tanka.DocsGen
39
39
40
-
# Install tool locally for testing
40
+
# Or build and pack the global tool locally for development
0 commit comments