Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles DE VANDIERE committed Nov 18, 2019
1 parent 94a817f commit 2dd58f6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# xmldoc2md
Tool to generate markdown from C# XML documentation
# XMLDoc2Markdown

Tool to generate markdown from C# XML documentation, based on [MarkdownGenerator](https://github.com/neuecc/MarkdownGenerator) project.

## How to use

### Install tool

```shell
> dotnet tool install -g XMLDoc2Markdown
```

### Generate documentation

```shell
> xmldoc2md <DLL_SOURCE_PATH> <OUTPUT_DIRECTORY>
```

#### Example

```shell
> xmldoc2md Sample.dll docs
```

### Display command line help

```shell
> xmldoc2md -h
```
2 changes: 1 addition & 1 deletion src/XMLDoc2Markdown/XMLDoc2Markdown.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<ToolCommandName>markdown-generator</ToolCommandName>
<ToolCommandName>xmldoc2md</ToolCommandName>
<PackAsTool>true</PackAsTool>
<IsPackable>true</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 2dd58f6

Please sign in to comment.