Skip to content

Commit

Permalink
removed puml directory and generated uml in uml directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Beier committed Apr 8, 2024
1 parent 65ef061 commit 1118742
Show file tree
Hide file tree
Showing 45 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generate-uml.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Generate UML diagrams using puml-gen for a .NET project

dotnet puml-gen ./src ./puml -dir -public -createAssociation
dotnet puml-gen ./src ./uml -dir -public -createAssociation

# Command breakdown:
# dotnet puml-gen ./src ./puml -dir -public -createAssociation
# dotnet puml-gen ./src ./uml -dir -public -createAssociation

# Invoke the puml-gen tool using the dotnet command (assuming it's a local tool)
# You can omit 'dotnet' if the tool is installed globally.
Expand All @@ -13,7 +13,7 @@ dotnet puml-gen ./src ./puml -dir -public -createAssociation
# -public: Filters to include only public classes in the UML diagram
# -createAssociation: Ensures associated classes (e.g., linked by relationships) are visualized

# Note: Adjust the input path (./src), output path (./puml), and flags based on your project's structure and requirements.
# Note: Adjust the input path (./src), output path (./uml), and flags based on your project's structure and requirements.
# This command can be executed in JetBrains Rider's terminal or integrated into an MSBUILD target.
# Alternatively, create a run configuration in JetBrains Rider using this command for easier execution.
# Ensure the working directory in Rider's run configuration is set to the root of your solution.
File renamed without changes.

0 comments on commit 1118742

Please sign in to comment.