You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ProjectReferenceCondition="'$(XamlLanguage)' != 'C++' and '$(CppWinRTEnableDefaultPrivateFalse)' == 'true'">
47
48
<!-- By default, for a C++/WinRT project,
48
49
don't copy project reference output to the output directory
49
-
of the current project unless this is an exe. -->
50
-
<Private>false</Private>
51
-
<PrivateCondition="'$(ConfigurationType)' == 'Application' or '$(OutputType)'=='winexe' or '$(OutputType)'=='exe' or '$(OutputType)'=='appcontainerexe'">true</Private>
50
+
of the current project for projects that are not an exe. -->
51
+
<PrivateCondition=" and '$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
52
52
</ProjectReference>
53
-
<ReferenceCondition="'$(XamlLanguage)' != 'C++'">
53
+
<ReferenceCondition="'$(XamlLanguage)' != 'C++' and '$(CppWinRTEnableDefaultPrivateFalse)' == 'true'">
54
54
<!-- By default, for a C++/WinRT project,
55
55
don't copy reference output to the output directory
56
-
of the current project unless this is an exe. -->
57
-
<Private>false</Private>
58
-
<PrivateCondition="'$(ConfigurationType)' == 'Application' or '$(OutputType)'=='winexe' or '$(OutputType)'=='exe' or '$(OutputType)'=='appcontainerexe'">true</Private>
56
+
of the current project for projects that are not an exe. -->
57
+
<PrivateCondition=" and '$(ConfigurationType)' != 'Application' and '$(OutputType)'!='winexe' and '$(OutputType)'!='exe' and '$(OutputType)'!='appcontainerexe'">false</Private>
Copy file name to clipboardExpand all lines: nuget/readme.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ C++/WinRT behavior can be customized with these project properties:
68
68
| CppWinRTProjectLanguage | C++/CX \|*C++/WinRT | Selects the C++ dialect for the project. C++/WinRT provides full projection support, C++/CX permits consuming projection headers. |
0 commit comments