pierre3 / PlantUmlClassDiagramGenerator

This is a generator to create a class-diagram of PlantUML from the C# source code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Option to hide/omit Property Accessors from diagram

puremcc opened this issue · comments

This would be nice to have, since the <><> is overly verbose for large domain model where all of the have these on all of their attributes.

In the meantime, a functional workaround is to just run the following sed command right after.

Excerpt from my current build script:

# Generate puml files from our C# Entities.
puml-gen ../Model/Entities generatedPuml -dir -execludePaths bin,obj,Properties -createAssociation -AllInOne

# Remove property accessors from the puml files for brevity. 
sed -i '' -e 's/ <<get>> <<set>>//g' generatedPuml/*.puml