summaryrefslogtreecommitdiff
path: root/src/ext/Iis/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-09-19 22:29:32 -0400
committerBob Arnson <bob@firegiant.com>2021-09-19 22:58:34 -0400
commit3a4dffe9feb62ea383e767ba903ff1edc8234f0e (patch)
treec5a0d63cff6ee880db0ef93b622791c572a835aa /src/ext/Iis/wixext
parentbefda7bad8a90f43d7f9ca419e91f79613e0effb (diff)
downloadwix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.tar.gz
wix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.tar.bz2
wix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.zip
Table ids per https://github.com/wixtoolset/issues/issues/5933.
Diffstat (limited to 'src/ext/Iis/wixext')
-rw-r--r--src/ext/Iis/wixext/IisTableDefinitions.cs36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/ext/Iis/wixext/IisTableDefinitions.cs b/src/ext/Iis/wixext/IisTableDefinitions.cs
index f513152e..02621a4d 100644
--- a/src/ext/Iis/wixext/IisTableDefinitions.cs
+++ b/src/ext/Iis/wixext/IisTableDefinitions.cs
@@ -7,7 +7,7 @@ namespace WixToolset.Iis
7 public static class IisTableDefinitions 7 public static class IisTableDefinitions
8 { 8 {
9 public static readonly TableDefinition Certificate = new TableDefinition( 9 public static readonly TableDefinition Certificate = new TableDefinition(
10 "Certificate", 10 "Wix4Certificate",
11 IisSymbolDefinitions.Certificate, 11 IisSymbolDefinitions.Certificate,
12 new[] 12 new[]
13 { 13 {
@@ -25,7 +25,7 @@ namespace WixToolset.Iis
25 ); 25 );
26 26
27 public static readonly TableDefinition CertificateHash = new TableDefinition( 27 public static readonly TableDefinition CertificateHash = new TableDefinition(
28 "CertificateHash", 28 "Wix4CertificateHash",
29 IisSymbolDefinitions.CertificateHash, 29 IisSymbolDefinitions.CertificateHash,
30 new[] 30 new[]
31 { 31 {
@@ -36,7 +36,7 @@ namespace WixToolset.Iis
36 ); 36 );
37 37
38 public static readonly TableDefinition IIsWebSiteCertificates = new TableDefinition( 38 public static readonly TableDefinition IIsWebSiteCertificates = new TableDefinition(
39 "IIsWebSiteCertificates", 39 "Wix4IIsWebSiteCertificates",
40 IisSymbolDefinitions.IIsWebSiteCertificates, 40 IisSymbolDefinitions.IIsWebSiteCertificates,
41 new[] 41 new[]
42 { 42 {
@@ -47,7 +47,7 @@ namespace WixToolset.Iis
47 ); 47 );
48 48
49 public static readonly TableDefinition IIsAppPool = new TableDefinition( 49 public static readonly TableDefinition IIsAppPool = new TableDefinition(
50 "IIsAppPool", 50 "Wix4IIsAppPool",
51 IisSymbolDefinitions.IIsAppPool, 51 IisSymbolDefinitions.IIsAppPool,
52 new[] 52 new[]
53 { 53 {
@@ -72,7 +72,7 @@ namespace WixToolset.Iis
72 ); 72 );
73 73
74 public static readonly TableDefinition IIsMimeMap = new TableDefinition( 74 public static readonly TableDefinition IIsMimeMap = new TableDefinition(
75 "IIsMimeMap", 75 "Wix4IIsMimeMap",
76 IisSymbolDefinitions.IIsMimeMap, 76 IisSymbolDefinitions.IIsMimeMap,
77 new[] 77 new[]
78 { 78 {
@@ -86,7 +86,7 @@ namespace WixToolset.Iis
86 ); 86 );
87 87
88 public static readonly TableDefinition IIsProperty = new TableDefinition( 88 public static readonly TableDefinition IIsProperty = new TableDefinition(
89 "IIsProperty", 89 "Wix4IIsProperty",
90 IisSymbolDefinitions.IIsProperty, 90 IisSymbolDefinitions.IIsProperty,
91 new[] 91 new[]
92 { 92 {
@@ -99,7 +99,7 @@ namespace WixToolset.Iis
99 ); 99 );
100 100
101 public static readonly TableDefinition IIsWebDirProperties = new TableDefinition( 101 public static readonly TableDefinition IIsWebDirProperties = new TableDefinition(
102 "IIsWebDirProperties", 102 "Wix4IIsWebDirProperties",
103 IisSymbolDefinitions.IIsWebDirProperties, 103 IisSymbolDefinitions.IIsWebDirProperties,
104 new[] 104 new[]
105 { 105 {
@@ -123,7 +123,7 @@ namespace WixToolset.Iis
123 ); 123 );
124 124
125 public static readonly TableDefinition IIsWebAddress = new TableDefinition( 125 public static readonly TableDefinition IIsWebAddress = new TableDefinition(
126 "IIsWebAddress", 126 "Wix4IIsWebAddress",
127 IisSymbolDefinitions.IIsWebAddress, 127 IisSymbolDefinitions.IIsWebAddress,
128 new[] 128 new[]
129 { 129 {
@@ -138,7 +138,7 @@ namespace WixToolset.Iis
138 ); 138 );
139 139
140 public static readonly TableDefinition IIsWebSite = new TableDefinition( 140 public static readonly TableDefinition IIsWebSite = new TableDefinition(
141 "IIsWebSite", 141 "Wix4IIsWebSite",
142 IisSymbolDefinitions.IIsWebSite, 142 IisSymbolDefinitions.IIsWebSite,
143 new[] 143 new[]
144 { 144 {
@@ -160,7 +160,7 @@ namespace WixToolset.Iis
160 ); 160 );
161 161
162 public static readonly TableDefinition IIsWebApplication = new TableDefinition( 162 public static readonly TableDefinition IIsWebApplication = new TableDefinition(
163 "IIsWebApplication", 163 "Wix4IIsWebApplication",
164 IisSymbolDefinitions.IIsWebApplication, 164 IisSymbolDefinitions.IIsWebApplication,
165 new[] 165 new[]
166 { 166 {
@@ -181,7 +181,7 @@ namespace WixToolset.Iis
181 ); 181 );
182 182
183 public static readonly TableDefinition IIsWebApplicationExtension = new TableDefinition( 183 public static readonly TableDefinition IIsWebApplicationExtension = new TableDefinition(
184 "IIsWebApplicationExtension", 184 "Wix4IIsWebApplicationExtension",
185 IisSymbolDefinitions.IIsWebApplicationExtension, 185 IisSymbolDefinitions.IIsWebApplicationExtension,
186 new[] 186 new[]
187 { 187 {
@@ -195,7 +195,7 @@ namespace WixToolset.Iis
195 ); 195 );
196 196
197 public static readonly TableDefinition IIsFilter = new TableDefinition( 197 public static readonly TableDefinition IIsFilter = new TableDefinition(
198 "IIsFilter", 198 "Wix4IIsFilter",
199 IisSymbolDefinitions.IIsFilter, 199 IisSymbolDefinitions.IIsFilter,
200 new[] 200 new[]
201 { 201 {
@@ -212,7 +212,7 @@ namespace WixToolset.Iis
212 ); 212 );
213 213
214 public static readonly TableDefinition IIsWebDir = new TableDefinition( 214 public static readonly TableDefinition IIsWebDir = new TableDefinition(
215 "IIsWebDir", 215 "Wix4IIsWebDir",
216 IisSymbolDefinitions.IIsWebDir, 216 IisSymbolDefinitions.IIsWebDir,
217 new[] 217 new[]
218 { 218 {
@@ -227,7 +227,7 @@ namespace WixToolset.Iis
227 ); 227 );
228 228
229 public static readonly TableDefinition IIsWebError = new TableDefinition( 229 public static readonly TableDefinition IIsWebError = new TableDefinition(
230 "IIsWebError", 230 "Wix4IIsWebError",
231 IisSymbolDefinitions.IIsWebError, 231 IisSymbolDefinitions.IIsWebError,
232 new[] 232 new[]
233 { 233 {
@@ -242,7 +242,7 @@ namespace WixToolset.Iis
242 ); 242 );
243 243
244 public static readonly TableDefinition IIsHttpHeader = new TableDefinition( 244 public static readonly TableDefinition IIsHttpHeader = new TableDefinition(
245 "IIsHttpHeader", 245 "Wix4IIsHttpHeader",
246 IisSymbolDefinitions.IIsHttpHeader, 246 IisSymbolDefinitions.IIsHttpHeader,
247 new[] 247 new[]
248 { 248 {
@@ -258,7 +258,7 @@ namespace WixToolset.Iis
258 ); 258 );
259 259
260 public static readonly TableDefinition IIsWebServiceExtension = new TableDefinition( 260 public static readonly TableDefinition IIsWebServiceExtension = new TableDefinition(
261 "IIsWebServiceExtension", 261 "Wix4IIsWebServiceExtension",
262 IisSymbolDefinitions.IIsWebServiceExtension, 262 IisSymbolDefinitions.IIsWebServiceExtension,
263 new[] 263 new[]
264 { 264 {
@@ -273,7 +273,7 @@ namespace WixToolset.Iis
273 ); 273 );
274 274
275 public static readonly TableDefinition IIsWebVirtualDir = new TableDefinition( 275 public static readonly TableDefinition IIsWebVirtualDir = new TableDefinition(
276 "IIsWebVirtualDir", 276 "Wix4IIsWebVirtualDir",
277 IisSymbolDefinitions.IIsWebVirtualDir, 277 IisSymbolDefinitions.IIsWebVirtualDir,
278 new[] 278 new[]
279 { 279 {
@@ -289,7 +289,7 @@ namespace WixToolset.Iis
289 ); 289 );
290 290
291 public static readonly TableDefinition IIsWebLog = new TableDefinition( 291 public static readonly TableDefinition IIsWebLog = new TableDefinition(
292 "IIsWebLog", 292 "Wix4IIsWebLog",
293 IisSymbolDefinitions.IIsWebLog, 293 IisSymbolDefinitions.IIsWebLog,
294 new[] 294 new[]
295 { 295 {