Skip to content

Commit 4255369

Browse files
committed
Use Windows-style parameters to be consistent with other command examples
1 parent 05e1bdb commit 4255369

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ These steps must be followed before you attempt to open the solution in an IDE (
391391
392392
There is a performance test for the hit counting instrumentation in the test project `coverlet.core.performancetest`. Build the project with the msbuild step above and then run:
393393
394-
dotnet test -p:CollectCoverage=true test/coverlet.core.performancetest/
394+
dotnet test /p:CollectCoverage=true test/coverlet.core.performancetest/
395395
396396
The duration of the test can be tweaked by changing the number of iterations in the `[InlineData]` in the `PerformanceTest` class.
397397

test/coverlet.core.performancetest/PerformanceTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace coverlet.core.performancetest
99
/// Test the performance of coverlet by running a unit test that calls a reasonably big and complex test class.
1010
/// Enable the test, compile, then run the test in the command line:
1111
/// <code>
12-
/// dotnet test -p:CollectCoverage=true test/coverlet.core.performancetest/
12+
/// dotnet test /p:CollectCoverage=true test/coverlet.core.performancetest/
1313
/// </code>
1414
/// </summary>
1515
public class PerformanceTest

0 commit comments

Comments
 (0)