File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,14 @@ This is a generator to create a class-diagram of PlantUML from the C# source cod
7
7
C:\> PlantUmlClassDiagramGenerator.exe InputPath [OutputPath] [-dir] [-public | -ignore IgnoreAccessibilities]
8
8
```
9
9
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.
12
13
- -dir: (Optional) Specify when InputPath and OutputPath are directory names.
13
14
- -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.
15
18
16
19
examples
17
20
``` bat
@@ -22,6 +25,9 @@ C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1\ClassA.cs -public
22
25
C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1 C:\PlantUml\App1 -dir -ignore Private,Protected
23
26
```
24
27
28
+ ``` bat
29
+ C:\> PlantUmlClassDiagramGenerator.exe C:\Source\App1 C:\PlantUml\App1 -dir -excludePaths bin,obj,Properties
30
+ ```
25
31
26
32
## Specification for conversion to PlantUML
27
33
You can’t perform that action at this time.
0 commit comments