Make CodeCoverage configuration build portable PDBs (#9346)

This commit is contained in:
Aditya Patwardhan 2019-04-13 19:00:30 -07:00 committed by Travis Plunk
parent be505772e2
commit 0418246682

View file

@ -132,6 +132,7 @@
<!-- Define windows, release configuration properties -->
<PropertyGroup Condition=" '$(Configuration)' == 'Release' And '$(IsWindows)' == 'true' ">
<Optimize>true</Optimize>
<!-- This is required to be full for compliance tools !-->
<DebugType>full</DebugType>
</PropertyGroup>
@ -146,6 +147,7 @@
<!-- Define all OS, CodeCoverage configuration properties -->
<PropertyGroup Condition=" '$(Configuration)' == 'CodeCoverage' ">
<DebugType>full</DebugType>
<!-- This is required to be portable to Coverlet tool !-->
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>