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

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrennan <brecon@microsoft.com>2021-03-12 08:28:03 +0300
committerGitHub <noreply@github.com>2021-03-12 08:28:03 +0300
commit340d161093d01e8c7c9ffea4e4dbb50838d893e9 (patch)
tree73c472462e07222f3d35b3d2e44f9484d454dee8 /Directory.Build.props
parent44c3c330641b5d9b23dc2dce04cdcfc96686082e (diff)
Add micro-benchmark validation (#29695)
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props1
1 files changed, 1 insertions, 0 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index f2f54bab5d..c837ed4c35 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -20,6 +20,7 @@
<IsBenchmarkProject Condition=" $(MSBuildProjectName.EndsWith('.Performance')) OR
$(RepoRelativeProjectDir.Contains('perf')) OR
$(RepoRelativeProjectDir.Contains('benchmarkapps')) ">true</IsBenchmarkProject>
+ <IsMicrobenchmarksProject Condition=" $(MSBuildProjectName.EndsWith('.Microbenchmarks')) ">true</IsMicrobenchmarksProject>
<IsSpecificationTestProject Condition="$(MSBuildProjectName.EndsWith('.Specification.Tests'))">true</IsSpecificationTestProject>
<IsUnitTestProject Condition=" '$(IsUnitTestProject)' == '' ">false</IsUnitTestProject>
<IsUnitTestProject Condition=" '$(IsSpecificationTestProject)' != 'true' AND