Skip to content

Commit cd782cf

Browse files
authored
Update README.md
1 parent 66092cb commit cd782cf

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ This is a generator to create a class-diagram of PlantUML from the C# source cod
77
C:\> PlantUmlClassDiagramGenerator.exe InputPath [OutputPath] [-dir] [-public | -ignore IgnoreAccessibilities]
88
```
99

10-
- InputPath: (Required) Sets a input source file or directory name.
11-
- OutputPath: (Optional) Sets a output file or directory name.
10+
- InputPath: (Required) Sets a input source file or directory name.
11+
- OutputPath: (Optional) Sets a output file or directory name.
12+
If you omit this option, plantuml files are outputted to same directory as the input files.
1213
- -dir: (Optional) Specify when InputPath and OutputPath are directory names.
1314
- -public: (Optional) If specified, only public accessibility members are output.
14-
- -ignore: (Optional) Specify the accessibility of members to ignore, separated by commas.
15+
- -ignore: (Optional) Specify the accessibility of members to ignore, with a comma separated list.
16+
- -excludePaths: (Optional) Specify the exclude file and directory.
17+
Specifies a relative path from the "InputPath", with a comma separated list.
1518

1619
examples
1720
```bat
@@ -22,6 +25,9 @@ C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1\ClassA.cs -public
2225
C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1 C:\PlantUml\App1 -dir -ignore Private,Protected
2326
```
2427

28+
```bat
29+
C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1 C:\PlantUml\App1 -dir -excludePaths bin,obj,Properties
30+
```
2531

2632
## Specification for conversion to PlantUML
2733

0 commit comments

Comments
 (0)