Skip to content

Commit fa6bb7a

Browse files
authored
Fix authoring error with non-default value for the CppWinRTEnableDefaultPrivateFalse property. (#747)
1 parent c20a75b commit fa6bb7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nuget/Microsoft.Windows.CppWinRT.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ Copyright (C) Microsoft Corporation. All rights reserved.
4848
<!-- By default, for a C++/WinRT project,
4949
don't copy project reference output to the output directory
5050
of the current project for projects that are not an exe. -->
51-
<Private Condition=" and '$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
51+
<Private Condition="'$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
5252
</ProjectReference>
5353
<Reference Condition="'$(XamlLanguage)' != 'C++' and '$(CppWinRTEnableDefaultPrivateFalse)' == 'true'">
5454
<!-- By default, for a C++/WinRT project,
5555
don't copy reference output to the output directory
5656
of the current project for projects that are not an exe. -->
57-
<Private Condition=" and '$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
57+
<Private Condition="'$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
5858
</Reference>
5959
</ItemDefinitionGroup>
6060

0 commit comments

Comments
 (0)