From 5bd6416f48ecc8b55917b829dffe54bfced2d5d2 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Mon, 13 Mar 2017 11:59:01 -0700 Subject: [PATCH] Update LUT FAQ for adapter upgrade issue --- docs/test/live-unit-testing-faq.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/test/live-unit-testing-faq.md b/docs/test/live-unit-testing-faq.md index 9c0be7f71b7..2b4c98ad19f 100644 --- a/docs/test/live-unit-testing-faq.md +++ b/docs/test/live-unit-testing-faq.md @@ -55,6 +55,18 @@ The **Output Window** (when the Live Unit Testing drop-down is selected) should ```  +## Why does Live Unit Testing show incorrect coverage after you upgrade the test adapter referenced in your Visual Studio Projects to the supported version? + +**Answer:** + +- If multiple projects in the solution reference the NuGet test adapter package, each of them must be upgraded to the supported version. + +- Make sure the MSBuild .props file imported from the test adapter package is correctly updated as well. Check the NuGet package version/path of the import, which can usually be found near the top of the project file, like the following: + + ```xml + + ``` + ## Can I customize my Live Unit Testing builds? **Answer:**