Skip to content

Commit

Permalink
Add DirToExclude parameter description
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarypiatek authored Nov 13, 2016
1 parent 9044cbe commit ba68fea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ To generate CodeTopology report run the following script from powershell console
.\GenerateReport.ps1 -Verbose -VCS SVN -CheckoutDir path_to_your_repository_checkout_dir
```

By default CodeTopology ignores the following directories: *"Bin","Obj","Lib","bin","obj","packages","lib","App_Data","node_modules", "bower_components"*.

If you want to extend this list use **DirToExclude** parameter as follows:

- To ignore single *dist* directory
```powershell
.\GenerateReport.ps1 -VCS Git -DirToExclude dist -CheckoutDir path_to_your_repository_checkout_dir
```
- To ignore *dist1* and *dist2* directories
```powershell
.\GenerateReport.ps1 -VCS Git -DirToExclude dist1, dist2 -CheckoutDir path_to_your_repository_checkout_dir
```


##TeamCity integration
To get know how to integrate CodeTopology with TeamCity please visit project's Wiki.

0 comments on commit ba68fea

Please sign in to comment.