Cs2Mermaid 1.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global Cs2Mermaid --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Cs2Mermaid --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Cs2Mermaid&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package Cs2Mermaid --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
converter from C# syntax tree to mermaid diagram
This tool converts from C# syntax tree to mermaid.js diagram.
nuget package(dotnet tool): https://www.nuget.org/packages/Cs2Mermaid/
Usage
Installation
dotnet global tool
- install dotnet sdk 6.0 or later
- run
dotnet tool install -g Cs2Mermaid
- add
$HOME/.dotnet/tools
to your PATH environment variable - run
cs2mmd --help
then you will get help message
single executable binary
- download zip or tgz binary from release page
- extract binary
- (if linux or mac) add executable flag to file
Examples Usage
Read from file and output to stdout
cs2mmd -i path/to/cs
Read from stdin and output to file
cat path/to/cs | cs2mmd -o output.mmd
Top-Down orientation
cs2mmd -i path/to/cs --orientation TD
parse with Preprocessor
--pp-symbol
option can be specified multiple.
cs2mmd -i path/to/cs --pp-symbol ABC --pp-symbol DEF
output as markdown with original source(github format)
cs2mmd -i path/to/cs -o output.md --md-with-source --chart-orientation TD
Example output is here(please view with raw README)
using System;
// this is comment
Console.WriteLine("Hello World");
flowchart TD
CompilationUnit_0["CompilationUnit"]
UsingDirective_0["UsingDirective"]
CompilationUnit_0 --> UsingDirective_0
UsingDirective_0 --> UsingKeyword_0["UsingKeyword using"]
IdentifierName_0["IdentifierName"]
UsingDirective_0 --> IdentifierName_0
IdentifierName_0 --> IdentifierToken_0["IdentifierToken System"]
IdentifierName_0["IdentifierName"]
UsingDirective_0 --> SemicolonToken_0["SemicolonToken ;"]
UsingDirective_0["UsingDirective"]
GlobalStatement_0["GlobalStatement"]
CompilationUnit_0 --> GlobalStatement_0
ExpressionStatement_0["ExpressionStatement"]
GlobalStatement_0 --> ExpressionStatement_0
InvocationExpression_0["InvocationExpression"]
ExpressionStatement_0 --> InvocationExpression_0
SimpleMemberAccessExpression_0["SimpleMemberAccessExpression"]
InvocationExpression_0 --> SimpleMemberAccessExpression_0
IdentifierName_1["IdentifierName"]
SimpleMemberAccessExpression_0 --> IdentifierName_1
IdentifierName_1 --> IdentifierToken_1["IdentifierToken Console"]
IdentifierName_1["IdentifierName"]
SimpleMemberAccessExpression_0 --> DotToken_0["DotToken ."]
IdentifierName_2["IdentifierName"]
SimpleMemberAccessExpression_0 --> IdentifierName_2
IdentifierName_2 --> IdentifierToken_2["IdentifierToken WriteLine"]
IdentifierName_2["IdentifierName"]
SimpleMemberAccessExpression_0["SimpleMemberAccessExpression"]
ArgumentList_0["ArgumentList"]
InvocationExpression_0 --> ArgumentList_0
ArgumentList_0 --> OpenParenToken_0["OpenParenToken ("]
Argument_0["Argument"]
ArgumentList_0 --> Argument_0
StringLiteralExpression_0["StringLiteralExpression"]
Argument_0 --> StringLiteralExpression_0
StringLiteralExpression_0 --> StringLiteralToken_0["StringLiteralToken \u0022Hello\u0020World\u0022"]
StringLiteralExpression_0["StringLiteralExpression"]
Argument_0["Argument"]
ArgumentList_0 --> CloseParenToken_0["CloseParenToken )"]
ArgumentList_0["ArgumentList"]
InvocationExpression_0["InvocationExpression"]
ExpressionStatement_0 --> SemicolonToken_1["SemicolonToken ;"]
ExpressionStatement_0["ExpressionStatement"]
GlobalStatement_0["GlobalStatement"]
CompilationUnit_0 --> EndOfFileToken_0["EndOfFileToken "]
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.