mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-10 18:11:04 +09:00

* Add Libraries Testing framework package as inline The existing package Microsoft.DotNet.CoreFxTesting lived in Arcade because of no infrastructure being available to compile local tasks in the repository. As the runtime repository now offers that we can inline the testing framework. * Hardcode configuration for installer.tasks * Update ReportGenerator global tool version * Add vstest support * Update binary serialization blobs
14 lines
950 B
XML
14 lines
950 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<CoverageOutputPath Condition="'$(CoverageOutputPath)' == ''">coverage.xml</CoverageOutputPath>
|
|
<CoverageThreshold Condition="$(CoverageThreshold) == ''">0</CoverageThreshold>
|
|
<CoverageThresholdType Condition="$(CoverageThresholdType) == ''">line,branch,method</CoverageThresholdType>
|
|
<CoverageFormat Condition="'$(CoverageFormat)' == ''">opencover</CoverageFormat>
|
|
<CoverageSourceLink Condition="'$(CoverageSourceLink)' == ''">true</CoverageSourceLink>
|
|
<CoverageVerbosity Condition="'$(CoverageVerbosity)' == ''">normal</CoverageVerbosity>
|
|
|
|
<CoverageReportInputPath Condition="'$(CoverageReportInputPath)' == ''">$(CoverageOutputPath)</CoverageReportInputPath>
|
|
<CoverageReportTypes Condition="'$(CoverageReportTypes)' == ''">Html</CoverageReportTypes>
|
|
<CoverageReportVerbosity Condition="'$(CoverageReportVerbosity)' == ''">Info</CoverageReportVerbosity>
|
|
</PropertyGroup>
|
|
</Project>
|