├── .editorconfig ├── .gitignore ├── .markdownlint.yaml ├── 1.roslyn ├── 11.visual-trees.md ├── 12.parse-trees.md ├── 13.compile-code.md ├── 14.walk-trees.md ├── 15.load-a-project.md ├── README.md ├── images │ ├── 11.configure-new-project.png │ ├── 11.create-project.png │ ├── 11.dgml.png │ ├── 11.menu-directed-syntax-graph.png │ ├── 11.menu-syntax-view-window.png │ ├── 11.spans.png │ ├── 11.syntax-tree-action.png │ ├── 12.breakpoint.png │ ├── 12.configure-new-project.png │ ├── 12.create-project.png │ ├── 12.debugger.members.png │ ├── 12.debugger.usings.png │ ├── 12.nuget-reference.png │ ├── 13.configure-new-project.png │ ├── 13.create-project.png │ ├── 13.nuget-reference.png │ ├── 14.add-class.png │ ├── 14.configure-new-project.png │ ├── 14.create-project.png │ ├── 14.nuget-reference.png │ ├── 15.configure-new-project.png │ ├── 15.create-project.png │ └── 15.nuget-reference.png └── solutions │ ├── 11.ConsoleApp1 │ ├── ConsoleApp1.sln │ └── ConsoleApp1 │ │ ├── ConsoleApp1.csproj │ │ ├── Program.cs │ │ └── Syntax.dgml │ ├── 12.RoslynParseSyntaxTree │ ├── RoslynParseSyntaxTree.sln │ └── RoslynParseSyntaxTree │ │ ├── Program.cs │ │ └── RoslynParseSyntaxTree.csproj │ ├── 13.RoslynCompileSourceCode │ ├── RoslynCompileSourceCode.sln │ └── RoslynCompileSourceCode │ │ ├── Program.cs │ │ └── RoslynCompileSourceCode.csproj │ ├── 14.RoslynWalkTrees │ ├── RoslynWalkTrees.sln │ └── RoslynWalkTrees │ │ ├── Program.cs │ │ ├── RoslynWalkTrees.csproj │ │ └── UsingCollector.cs │ └── 15.RoslynReadProject │ ├── RoslynReadProject.sln │ └── RoslynReadProject │ ├── Program.cs │ └── RoslynReadProject.csproj ├── 2.living-documentation ├── 21.living-documentation.md ├── 22.work-with-types.md ├── 23.generate-documentation.md ├── 24.generate-class-diagram.md ├── 25.generate-sequence.md ├── README.md ├── images │ ├── 23.functional-commands.png │ ├── 23.static-content.png │ ├── 23.table-fields.png │ ├── 23.technical-commands.png │ ├── 24.empty-class.png │ ├── 24.empty-plantuml.png │ ├── 24.filled-class.png │ ├── 24.full-aggregate.png │ ├── 24.id-and-root.png │ ├── 24.relationship.png │ ├── 25.nohandler.png │ ├── 25.sequence.png │ └── 25.styled.png └── solutions │ ├── 21.LivingDocumentation │ └── pitstop.analyzed.json │ ├── 22.PitstopDocumentationRenderer │ ├── PitstopDocumentationRenderer.sln │ └── PitstopDocumentationRenderer │ │ ├── PitstopDocumentationRenderer.csproj │ │ └── Program.cs │ ├── 23.PitstopDocumentationRenderer │ ├── PitstopDocumentationRenderer.sln │ ├── PitstopDocumentationRenderer │ │ ├── PitstopDocumentationRenderer.csproj │ │ └── Program.cs │ └── pitstop.generated.md │ ├── 24.PitstopDocumentationRenderer │ ├── PitstopDocumentationRenderer.sln │ ├── PitstopDocumentationRenderer │ │ ├── PitstopDocumentationRenderer.csproj │ │ └── Program.cs │ └── pitstop.generated.md │ └── 25.PitstopDocumentationRenderer │ ├── PitstopDocumentationRenderer.sln │ ├── PitstopDocumentationRenderer │ ├── InteractionTraverser.cs │ ├── PitstopDocumentationRenderer.csproj │ ├── Program.cs │ ├── TypeDescriptionListExtensions.cs │ └── UmlFragmentRenderer.cs │ └── pitstop.generated.md ├── INSTALLATION.md ├── LICENSE ├── README.md └── reference ├── asciidoc.samples.adoc └── plantuml.samples.puml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /1.roslyn/11.visual-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/11.visual-trees.md -------------------------------------------------------------------------------- /1.roslyn/12.parse-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/12.parse-trees.md -------------------------------------------------------------------------------- /1.roslyn/13.compile-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/13.compile-code.md -------------------------------------------------------------------------------- /1.roslyn/14.walk-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/14.walk-trees.md -------------------------------------------------------------------------------- /1.roslyn/15.load-a-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/15.load-a-project.md -------------------------------------------------------------------------------- /1.roslyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/README.md -------------------------------------------------------------------------------- /1.roslyn/images/11.configure-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.configure-new-project.png -------------------------------------------------------------------------------- /1.roslyn/images/11.create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.create-project.png -------------------------------------------------------------------------------- /1.roslyn/images/11.dgml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.dgml.png -------------------------------------------------------------------------------- /1.roslyn/images/11.menu-directed-syntax-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.menu-directed-syntax-graph.png -------------------------------------------------------------------------------- /1.roslyn/images/11.menu-syntax-view-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.menu-syntax-view-window.png -------------------------------------------------------------------------------- /1.roslyn/images/11.spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.spans.png -------------------------------------------------------------------------------- /1.roslyn/images/11.syntax-tree-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/11.syntax-tree-action.png -------------------------------------------------------------------------------- /1.roslyn/images/12.breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.breakpoint.png -------------------------------------------------------------------------------- /1.roslyn/images/12.configure-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.configure-new-project.png -------------------------------------------------------------------------------- /1.roslyn/images/12.create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.create-project.png -------------------------------------------------------------------------------- /1.roslyn/images/12.debugger.members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.debugger.members.png -------------------------------------------------------------------------------- /1.roslyn/images/12.debugger.usings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.debugger.usings.png -------------------------------------------------------------------------------- /1.roslyn/images/12.nuget-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/12.nuget-reference.png -------------------------------------------------------------------------------- /1.roslyn/images/13.configure-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/13.configure-new-project.png -------------------------------------------------------------------------------- /1.roslyn/images/13.create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/13.create-project.png -------------------------------------------------------------------------------- /1.roslyn/images/13.nuget-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/13.nuget-reference.png -------------------------------------------------------------------------------- /1.roslyn/images/14.add-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/14.add-class.png -------------------------------------------------------------------------------- /1.roslyn/images/14.configure-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/14.configure-new-project.png -------------------------------------------------------------------------------- /1.roslyn/images/14.create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/14.create-project.png -------------------------------------------------------------------------------- /1.roslyn/images/14.nuget-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/14.nuget-reference.png -------------------------------------------------------------------------------- /1.roslyn/images/15.configure-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/15.configure-new-project.png -------------------------------------------------------------------------------- /1.roslyn/images/15.create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/15.create-project.png -------------------------------------------------------------------------------- /1.roslyn/images/15.nuget-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/images/15.nuget-reference.png -------------------------------------------------------------------------------- /1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/Syntax.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/11.ConsoleApp1/ConsoleApp1/Syntax.dgml -------------------------------------------------------------------------------- /1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree.sln -------------------------------------------------------------------------------- /1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree/Program.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree/RoslynParseSyntaxTree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/12.RoslynParseSyntaxTree/RoslynParseSyntaxTree/RoslynParseSyntaxTree.csproj -------------------------------------------------------------------------------- /1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode.sln -------------------------------------------------------------------------------- /1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode/Program.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode/RoslynCompileSourceCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/13.RoslynCompileSourceCode/RoslynCompileSourceCode/RoslynCompileSourceCode.csproj -------------------------------------------------------------------------------- /1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees.sln -------------------------------------------------------------------------------- /1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/Program.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/RoslynWalkTrees.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/RoslynWalkTrees.csproj -------------------------------------------------------------------------------- /1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/UsingCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/14.RoslynWalkTrees/RoslynWalkTrees/UsingCollector.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject.sln -------------------------------------------------------------------------------- /1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject/Program.cs -------------------------------------------------------------------------------- /1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject/RoslynReadProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/1.roslyn/solutions/15.RoslynReadProject/RoslynReadProject/RoslynReadProject.csproj -------------------------------------------------------------------------------- /2.living-documentation/21.living-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/21.living-documentation.md -------------------------------------------------------------------------------- /2.living-documentation/22.work-with-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/22.work-with-types.md -------------------------------------------------------------------------------- /2.living-documentation/23.generate-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/23.generate-documentation.md -------------------------------------------------------------------------------- /2.living-documentation/24.generate-class-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/24.generate-class-diagram.md -------------------------------------------------------------------------------- /2.living-documentation/25.generate-sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/25.generate-sequence.md -------------------------------------------------------------------------------- /2.living-documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/README.md -------------------------------------------------------------------------------- /2.living-documentation/images/23.functional-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/23.functional-commands.png -------------------------------------------------------------------------------- /2.living-documentation/images/23.static-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/23.static-content.png -------------------------------------------------------------------------------- /2.living-documentation/images/23.table-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/23.table-fields.png -------------------------------------------------------------------------------- /2.living-documentation/images/23.technical-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/23.technical-commands.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.empty-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.empty-class.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.empty-plantuml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.empty-plantuml.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.filled-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.filled-class.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.full-aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.full-aggregate.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.id-and-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.id-and-root.png -------------------------------------------------------------------------------- /2.living-documentation/images/24.relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/24.relationship.png -------------------------------------------------------------------------------- /2.living-documentation/images/25.nohandler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/25.nohandler.png -------------------------------------------------------------------------------- /2.living-documentation/images/25.sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/25.sequence.png -------------------------------------------------------------------------------- /2.living-documentation/images/25.styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/images/25.styled.png -------------------------------------------------------------------------------- /2.living-documentation/solutions/21.LivingDocumentation/pitstop.analyzed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/21.LivingDocumentation/pitstop.analyzed.json -------------------------------------------------------------------------------- /2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln -------------------------------------------------------------------------------- /2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj -------------------------------------------------------------------------------- /2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/22.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln -------------------------------------------------------------------------------- /2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj -------------------------------------------------------------------------------- /2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/23.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/23.PitstopDocumentationRenderer/pitstop.generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/23.PitstopDocumentationRenderer/pitstop.generated.md -------------------------------------------------------------------------------- /2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln -------------------------------------------------------------------------------- /2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj -------------------------------------------------------------------------------- /2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/24.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/24.PitstopDocumentationRenderer/pitstop.generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/24.PitstopDocumentationRenderer/pitstop.generated.md -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer.sln -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/InteractionTraverser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/InteractionTraverser.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/PitstopDocumentationRenderer.csproj -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/Program.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/TypeDescriptionListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/TypeDescriptionListExtensions.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/UmlFragmentRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/PitstopDocumentationRenderer/UmlFragmentRenderer.cs -------------------------------------------------------------------------------- /2.living-documentation/solutions/25.PitstopDocumentationRenderer/pitstop.generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/2.living-documentation/solutions/25.PitstopDocumentationRenderer/pitstop.generated.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/README.md -------------------------------------------------------------------------------- /reference/asciidoc.samples.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/reference/asciidoc.samples.adoc -------------------------------------------------------------------------------- /reference/plantuml.samples.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eNeRGy164/LivingDocumentation.Workshop/HEAD/reference/plantuml.samples.puml --------------------------------------------------------------------------------