We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0c47c commit c7227c0Copy full SHA for c7227c0
eng/testing/xunit/xunit.console.targets
@@ -13,8 +13,8 @@
13
14
<ItemGroup>
15
<!-- Configures xunit to not print out passing tests with output when diagnostic messages are enabled. -->
16
- <SetScriptCommands Condition="'$(OS)' != 'Windows_NT'" Include="set XUNIT_HIDE_PASSING_OUTPUT_DIAGNOSTICS=1" />
17
- <SetScriptCommands Condition="'$(OS)' == 'Windows_NT'" Include="export XUNIT_HIDE_PASSING_OUTPUT_DIAGNOSTICS=1" />
+ <SetScriptCommands Condition="'$(TargetOS)' == 'windows'" Include="set XUNIT_HIDE_PASSING_OUTPUT_DIAGNOSTICS=1" />
+ <SetScriptCommands Condition="'$(TargetOS)' != 'windows'" Include="export XUNIT_HIDE_PASSING_OUTPUT_DIAGNOSTICS=1" />
18
</ItemGroup>
19
20
<PropertyGroup Condition="'$(BundleXunitRunner)' == 'true'">
0 commit comments