File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ The following settings can be specified in the configuration file:
2323| ` runInParallel ` | boolean | Run commands in parallel | ` --parallel ` |
2424| ` failOnNoProjects ` | boolean | Fail if no projects are affected | ` --fail-on-no-projects ` |
2525| ` noCache ` | boolean | Ignore existing cache file | ` --no-cache ` |
26+ | ` skip ` | string array | Glob patterns to exclude projects from the final list | ` --skip-glob ` |
27+ | ` target ` | string array | Glob patterns to include only matching projects in the final list | ` --target-glob ` |
2628
2729## Sample Configuration File
2830
@@ -40,7 +42,9 @@ Here's an example configuration file with all available settings:
4042 "continueOnError" : true ,
4143 "runInParallel" : false ,
4244 "failOnNoProjects" : false ,
43- "noCache" : false
45+ "noCache" : false ,
46+ "skip" : [" **/bin/**" , " **/obj/**" ],
47+ "target" : [" src/**/*.csproj" ]
4448}
4549```
4650
You can’t perform that action at this time.
0 commit comments