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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2020-05-04 12:57:51 +0300
committerGitHub <noreply@github.com>2020-05-04 12:57:51 +0300
commit200b197559fc49f91b8db3f20fd6df6b5660d7bf (patch)
treee5f71af2dc6334c6fef0e1dfbe88569003fec710 /eng/references.targets
parenta1af15d229c44f72d639c686a66a621196fd4172 (diff)
Enable dotnet test in libraries (#35285)
* Enable dotnet test * Update docs * Use vstest in F5 scenarios * Make dotnet test without framework switch work * Code cleanup * Only run code coverage conditionally * Fix F5 condition for netcoreapp * Downgrade sdk to check for helix submission failures * Fix wrong conditions * Add blame data collector
Diffstat (limited to 'eng/references.targets')
-rw-r--r--eng/references.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/references.targets b/eng/references.targets
index 0c104db2bb2..405fd07799f 100644
--- a/eng/references.targets
+++ b/eng/references.targets
@@ -36,7 +36,7 @@
</ItemGroup>
</Target>
- <Target Name="AddDefaultTestReferences" BeforeTargets="SetupDefaultReferences" Condition="'$(IsTestProject)' == 'true'">
+ <Target Name="AddDefaultTestReferences" BeforeTargets="SetupDefaultReferences" Condition="'$(IsTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true'">
<ItemGroup>
<DefaultReferenceExclusions Include="@(ReferenceFromRuntime)"/>