From 9be23bada7304d013dbdaf216027e9097e8a95c4 Mon Sep 17 00:00:00 2001 From: mrj001 <62225294+mrj001@users.noreply.github.com> Date: Fri, 17 Apr 2020 08:45:54 -0600 Subject: [PATCH] updated output folder from 'aforementioned' to the folder where the single library output is found. (#34340) --- docs/workflow/building/libraries/code-coverage.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/workflow/building/libraries/code-coverage.md b/docs/workflow/building/libraries/code-coverage.md index 4d20d0e..a2b2886 100644 --- a/docs/workflow/building/libraries/code-coverage.md +++ b/docs/workflow/building/libraries/code-coverage.md @@ -38,7 +38,11 @@ You can also build and test with code coverage for a particular test project rat dotnet build /t:Test /p:Coverage=true -The results for this one library will then show up in the aforementioned index.htm file. For example, to build, test, and get code coverage results for the System.Diagnostics.Debug library, from the root of the repo one can do: +The results for this one library will then be available in this index.htm file, where $(OutDir) is the directory where the binaries were generated. + + $(OutDir)\report\index.htm + +For example, to build, test, and get code coverage results for the System.Diagnostics.Debug library, from the root of the repo one can do: cd src\System.Diagnostics.Debug\tests\ dotnet build /t:Test /p:Coverage=true -- 2.7.4