aspnetcore/src/Components/Analyzers
N. Taylor Mullen 8c67a6ebc6 Add Components analyzer flag to ensure no analyzer duplicates.
- Chose the name `DisableImplicitComponentAnalyzers` (DICA) to not conflict with `DisableImplicitAspNetCoreAnalyzers` (DIAA). The goal with this flag is that in the SDK we can read its value and do one of the following:

| DICA    | DIAA    | Action                                                                                                     |
|---------|---------|------------------------------------------------------------------------------------------------------------|
| `true`  | `true`  | No component analyzers added from SDK, remove the component analyzers that were added from the package ref |
| `true`  | `false` | No component analyzers added from SDK                                                                      |
| `false` | `true`  | No component analyzers added from SDK                                                                      |
| `false` | `false` | Component analyzers added in SDK                                                                           |

#8825
2019-07-09 16:17:36 -07:00
..
src Add Components analyzer flag to ensure no analyzer duplicates. 2019-07-09 16:17:36 -07:00
test