Skip to content

Commit a0e65b1

Browse files
committed
WiX: use TitleCase consistently for components
The majority of the components are in TitleCase rather than snake_case. Adjust the last few ones.
1 parent 88c2e45 commit a0e65b1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

platforms/Windows/dbg/dbg.wxs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</Directory>
2828
</DirectoryRef>
2929

30-
<ComponentGroup Id="lldb">
30+
<ComponentGroup Id="LLDB">
3131
<Component Directory="_usr_bin">
3232
<File Source="$(TOOLCHAIN_ROOT)\usr\bin\lldb.exe" />
3333
</Component>
@@ -93,19 +93,19 @@
9393
</Component>
9494
</ComponentGroup>
9595

96-
<ComponentGroup Id="lldb_server">
96+
<ComponentGroup Id="LLDBServer">
9797
<Component Directory="_usr_bin">
9898
<File Source="$(TOOLCHAIN_ROOT)\usr\bin\lldb-server.exe" />
9999
</Component>
100100
</ComponentGroup>
101101

102-
<ComponentGroup Id="swift_repl">
102+
<ComponentGroup Id="SwiftREPL">
103103
<Component Directory="_usr_bin">
104104
<File Source="$(TOOLCHAIN_ROOT)\usr\bin\repl_swift.exe" />
105105
</Component>
106106
</ComponentGroup>
107107

108-
<ComponentGroup Id="swift_inspect">
108+
<ComponentGroup Id="SwiftInspect">
109109
<Component Directory="_usr_bin">
110110
<File Source="$(TOOLCHAIN_ROOT)\usr\bin\swift-inspect.exe" />
111111
</Component>
@@ -132,11 +132,11 @@
132132
</ComponentGroup>
133133

134134
<Feature Id="DebuggingTools" AllowAbsent="no" Title="!(loc.Dbg_ProductName)">
135-
<ComponentGroupRef Id="lldb" />
136-
<ComponentGroupRef Id="lldb_server" />
135+
<ComponentGroupRef Id="LLDB" />
136+
<ComponentGroupRef Id="LLDBServer" />
137137

138-
<ComponentGroupRef Id="swift_repl" />
139-
<ComponentGroupRef Id="swift_inspect" />
138+
<ComponentGroupRef Id="SwiftREPL" />
139+
<ComponentGroupRef Id="SwiftInspect" />
140140

141141
<ComponentGroupRef Id="_InternalSwiftStaticMirror" />
142142

0 commit comments

Comments
 (0)