diff --git a/README.md b/README.md index 6eececa..50721f1 100644 --- a/README.md +++ b/README.md @@ -25,22 +25,22 @@ await // Parse each file into Roslyn `SyntaxTree`. .ThenForAll(new SyntaxTreeParserPipe()) - + // Parse each `SyntaxTree` into `Doc`. .ThenForAll(new DocumentParserPipe()) - + // Merge multiple docs into single doc. - .Flatten(Doc.Merge) - + .Then(new FlattenPipe(Doc.Merge)) + // Remove non-public types and members. .Then(new PublicFilterPipe()) - + // Render the `Doc` into series of Markdown files (one file for each type). .Then(new MarkdownRenderPipe()) - + // Save each Markdown file into separate file. .ThenForAll(new SavePipe(output, x => (x.Name, x.Content))) - + // Execute the pipeline. .Run(); ``` diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj index 36abe01..6d71e64 100644 --- a/src/Core/Core.csproj +++ b/src/Core/Core.csproj @@ -12,14 +12,15 @@ - 0.0.1 - 0.0.1 - 0.0.1 + 0.0.2 + 0.0.2 + 0.0.2 Summary The flexible and effortless API reference generator for .NET. https://github.com/joshua-light/summary + README.md icon.png docs;doc;documentation;documentation generator;api reference;roslyn MIT diff --git a/src/Plugins/Markdown/Markdown.csproj b/src/Plugins/Markdown/Markdown.csproj index ed5e0a8..5667813 100644 --- a/src/Plugins/Markdown/Markdown.csproj +++ b/src/Plugins/Markdown/Markdown.csproj @@ -10,14 +10,15 @@ - 0.0.1 - 0.0.1 - 0.0.1 + 0.0.2 + 0.0.2 + 0.0.2 Summary.Markdown Markdown plugin for Summary documentation generator. https://github.com/joshua-light/summary + README.md icon.png docs;doc;documentation;documentation generator;api reference;roslyn;markdown MIT diff --git a/src/Plugins/Roslyn/Roslyn.csproj b/src/Plugins/Roslyn/Roslyn.csproj index 7777a6f..8eb2a56 100644 --- a/src/Plugins/Roslyn/Roslyn.csproj +++ b/src/Plugins/Roslyn/Roslyn.csproj @@ -10,14 +10,15 @@ - 0.0.1 - 0.0.1 - 0.0.1 + 0.0.2 + 0.0.2 + 0.0.2 Summary.Roslyn Plugin for Summary documentation generator that parses documentation using Roslyn API. https://github.com/joshua-light/summary + README.md icon.png docs;doc;documentation;documentation generator;api reference;roslyn MIT