Skip to content

Commit 4071cae

Browse files
authored
Fix condition for TestTfmsInParallel property (#2831)
Condition needs double equals to be a comparison. As it is, it won't load in Visual Studio right now.
1 parent f115221 commit 4071cae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarkDotNet.TestAdapter/build/BenchmarkDotNet.TestAdapter.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<EntryPointSourceDirectory>$(MSBuildThisFileDirectory)..\entrypoints\</EntryPointSourceDirectory>
44
<!-- Disable parallel tests between TargetFrameworks, if it's not explicitly specified. -->
5-
<TestTfmsInParallel Condition="'$(TestTfmsInParallel)' = ''">false</TestTfmsInParallel>
5+
<TestTfmsInParallel Condition="'$(TestTfmsInParallel)' == ''">false</TestTfmsInParallel>
66
</PropertyGroup>
77
<!--
88
Microsoft.NET.Test.Sdk uses a property called "GenerateProgramFile" to determine whether it generates an entry

0 commit comments

Comments
 (0)