Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstephentoub <stoub@microsoft.com>2016-04-05 20:33:21 +0300
committerstephentoub <stoub@microsoft.com>2016-04-05 20:33:21 +0300
commitc3703d3b151073c41c8d9d57cc4e19c795864577 (patch)
treea014915023611085063ee585eeedb6e2015ccc61 /build.proj
parentd73995322e12e48f5397e0eec997a2f13fe85277 (diff)
Fix ReportGenerator task
It was running before any of the tests ran, rather than after all of them. As a result it was failing due to lack of inputs.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.proj b/build.proj
index 8573c9760f..c71c3c554b 100644
--- a/build.proj
+++ b/build.proj
@@ -25,6 +25,11 @@
<BuildTests Condition="'$(BuildTests)'==''">true</BuildTests>
</PropertyGroup>
+ <PropertyGroup>
+ <GenerateCodeCoverageReportForAll>true</GenerateCodeCoverageReportForAll>
+ </PropertyGroup>
+ <Import Project="$(ToolsDir)CodeCoverage.targets" Condition="Exists('$(ToolsDir)CodeCoverage.targets')" />
+
<ItemGroup>
<Project Include="src\dirs.proj">
<!-- For the root traversal default filter the OSGroup to the OSEnvironment which is the OS we are running on -->