Skip to content

Commit b612b2c

Browse files
committed
Fix comments.
1 parent db38283 commit b612b2c

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

nuget/CppWinrtRules.Project.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
<BoolProperty Name="CppWinRTGenerateWindowsMetadata"
7575
DisplayName="Generate Windows Metadata"
76-
Description="Enables or disabled the generation of Windows Metadata"
76+
Description="Enables or disables the generation of Windows Metadata"
7777
Category="General" />
7878

7979
</Rule>

nuget/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ C++/WinRT behavior can be customized with these project properties:
6767
| CppWinRTFastAbi | true \| *false | Enables Fast ABI feature for both consuming and producing projections |
6868
| CppWinRTProjectLanguage | C++/CX \| *C++/WinRT | Selects the C++ dialect for the project. C++/WinRT provides full projection support, C++/CX permits consuming projection headers. |
6969
| CppWinRTOptimized | true \| *false | Enables component projection [optimization features](https://kennykerr.ca/2019/06/07/cppwinrt-optimizing-components/) |
70+
| CppWinRTGenerateWindowsMetadata | true \| *false | Enables or disabled the generation of Windows Metadata as the project output |
7071
\*Default value
7172

7273
To customize common C++/WinRT project properties:

vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/ConsoleApplication.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup Label="Globals">
44
<CppWinRTOptimized>true</CppWinRTOptimized>
55
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
6-
<CppWinRTGenerateWindowsMetadata >true</CppWinRTGenerateWindowsMetadata>
6+
<CppWinRTGenerateWindowsMetadata>true</CppWinRTGenerateWindowsMetadata>
77
<MinimalCoreWin>true</MinimalCoreWin>
88
<VCProjectVersion>15.0</VCProjectVersion>
99
<ProjectGuid>{$guid1$}</ProjectGuid>

vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup Label="Globals">
44
<CppWinRTOptimized>true</CppWinRTOptimized>
55
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
6-
<CppWinRTGenerateWindowsMetadata >true</CppWinRTGenerateWindowsMetadata>
6+
<CppWinRTGenerateWindowsMetadata>true</CppWinRTGenerateWindowsMetadata>
77
<MinimalCoreWin>true</MinimalCoreWin>
88
<VCProjectVersion>15.0</VCProjectVersion>
99
<ProjectGuid>{$guid1$}</ProjectGuid>

vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup Label="Globals">
44
<CppWinRTOptimized>true</CppWinRTOptimized>
55
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
6-
<CppWinRTGenerateWindowsMetadata >true</CppWinRTGenerateWindowsMetadata>
6+
<CppWinRTGenerateWindowsMetadata>true</CppWinRTGenerateWindowsMetadata>
77
<MinimalCoreWin>true</MinimalCoreWin>
88
<ProjectGuid>{$guid1$}</ProjectGuid>
99
<ProjectName>$projectname$</ProjectName>

vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup Label="Globals">
44
<CppWinRTOptimized>true</CppWinRTOptimized>
55
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
6-
<CppWinRTGenerateWindowsMetadata >true</CppWinRTGenerateWindowsMetadata>
6+
<CppWinRTGenerateWindowsMetadata>true</CppWinRTGenerateWindowsMetadata>
77
<MinimalCoreWin>true</MinimalCoreWin>
88
<ProjectGuid>{$guid1$}</ProjectGuid>
99
<ProjectName>$projectname$</ProjectName>

vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup Label="Globals">
44
<CppWinRTOptimized>true</CppWinRTOptimized>
55
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
6-
<CppWinRTGenerateWindowsMetadata >true</CppWinRTGenerateWindowsMetadata>
6+
<CppWinRTGenerateWindowsMetadata>true</CppWinRTGenerateWindowsMetadata>
77
<MinimalCoreWin>true</MinimalCoreWin>
88
<ProjectGuid>{$guid1$}</ProjectGuid>
99
<ProjectName>$projectname$</ProjectName>

0 commit comments

Comments
 (0)