Skip to content

Commit

Permalink
Include README to packages; raise version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-light committed Jan 8, 2023
1 parent 53e1365 commit bd92def
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>(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<Markdown>(output, x => (x.Name, x.Content)))

// Execute the pipeline.
.Run();
```
7 changes: 4 additions & 3 deletions src/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<PackageVersion>0.0.1</PackageVersion>
<AssemblyVersion>0.0.2</AssemblyVersion>
<FileVersion>0.0.2</FileVersion>
<PackageVersion>0.0.2</PackageVersion>

<Title>Summary</Title>
<Description>The flexible and effortless API reference generator for .NET.</Description>
<RepositoryUrl>https://github.com/joshua-light/summary</RepositoryUrl>

<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>docs;doc;documentation;documentation generator;api reference;roslyn</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
7 changes: 4 additions & 3 deletions src/Plugins/Markdown/Markdown.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<PackageVersion>0.0.1</PackageVersion>
<AssemblyVersion>0.0.2</AssemblyVersion>
<FileVersion>0.0.2</FileVersion>
<PackageVersion>0.0.2</PackageVersion>

<Title>Summary.Markdown</Title>
<Description>Markdown plugin for Summary documentation generator.</Description>
<RepositoryUrl>https://github.com/joshua-light/summary</RepositoryUrl>

<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>docs;doc;documentation;documentation generator;api reference;roslyn;markdown</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
7 changes: 4 additions & 3 deletions src/Plugins/Roslyn/Roslyn.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<PackageVersion>0.0.1</PackageVersion>
<AssemblyVersion>0.0.2</AssemblyVersion>
<FileVersion>0.0.2</FileVersion>
<PackageVersion>0.0.2</PackageVersion>

<Title>Summary.Roslyn</Title>
<Description>Plugin for Summary documentation generator that parses documentation using Roslyn API.</Description>
<RepositoryUrl>https://github.com/joshua-light/summary</RepositoryUrl>

<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>docs;doc;documentation;documentation generator;api reference;roslyn</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit bd92def

Please sign in to comment.