Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update VSTestIntegration.md
  • Loading branch information
MarcoRossignoli authored Sep 28, 2022
commit a1657e471e6d51f4b577e3838cf4866faa6e443d
4 changes: 3 additions & 1 deletion Documentation/VSTestIntegration.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ These are a list of options that are supported by coverlet. These can be specifi
| IncludeTestAssembly | Include coverage of the test assembly. |
| SkipAutoProps | Neither track nor record auto-implemented properties. |
| DoesNotReturnAttribute | Methods marked with these attributes are known not to return, statements following them will be excluded from coverage |
| DeterministicReport | Generates deterministic report in context of deterministic build. Take a look at [documentation](DeterministicBuild.md) for further informations. |
| DeterministicReport | Generates deterministic report in context of deterministic build. Take a look at [documentation](DeterministicBuild.md) for further informations. |
| InstrumentModulesWithoutLocalSources | Specifies whether modules should be instrumented even if the sources from the PDBs can't be found locally. |

How to specify these options via runsettings?

Expand All @@ -119,6 +120,7 @@ How to specify these options via runsettings?
<IncludeTestAssembly>true</IncludeTestAssembly>
<SkipAutoProps>true</SkipAutoProps>
<DeterministicReport>false</DeterministicReport>
<InstrumentModulesWithoutLocalSources>false</InstrumentModulesWithoutLocalSources>
</Configuration>
</DataCollector>
</DataCollectors>
Expand Down