aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler_2.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Compiler_2.cs')
-rw-r--r--src/WixToolset.Core/Compiler_2.cs58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/WixToolset.Core/Compiler_2.cs b/src/WixToolset.Core/Compiler_2.cs
index c1c189ca..beebd4f8 100644
--- a/src/WixToolset.Core/Compiler_2.cs
+++ b/src/WixToolset.Core/Compiler_2.cs
@@ -561,7 +561,7 @@ namespace WixToolset.Core
561 { 561 {
562 this.Core.AddTuple(new ODBCDataSourceTuple(sourceLineNumbers, id) 562 this.Core.AddTuple(new ODBCDataSourceTuple(sourceLineNumbers, id)
563 { 563 {
564 Component_ = componentId, 564 ComponentRef = componentId,
565 Description = name, 565 Description = name,
566 DriverDescription = driverName, 566 DriverDescription = driverName,
567 Registration = registration 567 Registration = registration
@@ -1364,14 +1364,14 @@ namespace WixToolset.Core
1364 var tuple = new ProgIdTuple(sourceLineNumbers, new Identifier(AccessModifier.Public, progId)) 1364 var tuple = new ProgIdTuple(sourceLineNumbers, new Identifier(AccessModifier.Public, progId))
1365 { 1365 {
1366 ProgId = progId, 1366 ProgId = progId,
1367 ProgId_Parent = parent, 1367 ParentProgIdRef = parent,
1368 Class_ = classId, 1368 ClassRef = classId,
1369 Description = description, 1369 Description = description,
1370 }; 1370 };
1371 1371
1372 if (null != icon) 1372 if (null != icon)
1373 { 1373 {
1374 tuple.Icon_ = icon; 1374 tuple.IconRef = icon;
1375 this.Core.CreateSimpleReference(sourceLineNumbers, "Icon", icon); 1375 this.Core.CreateSimpleReference(sourceLineNumbers, "Icon", icon);
1376 } 1376 }
1377 1377
@@ -1777,7 +1777,7 @@ namespace WixToolset.Core
1777 Root = root.Value, 1777 Root = root.Value,
1778 Key = key, 1778 Key = key,
1779 Name = name, 1779 Name = name,
1780 Component_ = componentId, 1780 ComponentRef = componentId,
1781 }; 1781 };
1782 1782
1783 this.Core.AddTuple(tuple); 1783 this.Core.AddTuple(tuple);
@@ -2026,7 +2026,7 @@ namespace WixToolset.Core
2026 Value = value, 2026 Value = value,
2027 ValueType = valueType, 2027 ValueType = valueType,
2028 ValueAction = actionType, 2028 ValueAction = actionType,
2029 Component_ = componentId, 2029 ComponentRef = componentId,
2030 }; 2030 };
2031 2031
2032 this.Core.AddTuple(tuple); 2032 this.Core.AddTuple(tuple);
@@ -2147,7 +2147,7 @@ namespace WixToolset.Core
2147 Key = key, 2147 Key = key,
2148 Name = name, 2148 Name = name,
2149 Action = actionType.Value, 2149 Action = actionType.Value,
2150 Component_ = componentId 2150 ComponentRef = componentId
2151 }; 2151 };
2152 2152
2153 this.Core.AddTuple(tuple); 2153 this.Core.AddTuple(tuple);
@@ -2224,7 +2224,7 @@ namespace WixToolset.Core
2224 Root = root.Value, 2224 Root = root.Value,
2225 Key = key, 2225 Key = key,
2226 Name = name, 2226 Name = name,
2227 Component_ = componentId 2227 ComponentRef = componentId
2228 }; 2228 };
2229 2229
2230 this.Core.AddTuple(tuple); 2230 this.Core.AddTuple(tuple);
@@ -2342,7 +2342,7 @@ namespace WixToolset.Core
2342 { 2342 {
2343 var tuple = new RemoveFileTuple(sourceLineNumbers, id) 2343 var tuple = new RemoveFileTuple(sourceLineNumbers, id)
2344 { 2344 {
2345 Component_ = componentId, 2345 ComponentRef = componentId,
2346 FileName = this.GetMsiFilenameValue(shortName, name), 2346 FileName = this.GetMsiFilenameValue(shortName, name),
2347 DirProperty = directory ?? property ?? parentDirectory, 2347 DirProperty = directory ?? property ?? parentDirectory,
2348 OnInstall = onInstall, 2348 OnInstall = onInstall,
@@ -2432,7 +2432,7 @@ namespace WixToolset.Core
2432 { 2432 {
2433 var tuple = new RemoveFileTuple(sourceLineNumbers, id) 2433 var tuple = new RemoveFileTuple(sourceLineNumbers, id)
2434 { 2434 {
2435 Component_ = componentId, 2435 ComponentRef = componentId,
2436 DirProperty = directory ?? property ?? parentDirectory, 2436 DirProperty = directory ?? property ?? parentDirectory,
2437 OnInstall = onInstall, 2437 OnInstall = onInstall,
2438 OnUninstall = onUninstall 2438 OnUninstall = onUninstall
@@ -2505,7 +2505,7 @@ namespace WixToolset.Core
2505 { 2505 {
2506 this.Core.AddTuple(new ReserveCostTuple(sourceLineNumbers, id) 2506 this.Core.AddTuple(new ReserveCostTuple(sourceLineNumbers, id)
2507 { 2507 {
2508 Component_ = componentId, 2508 ComponentRef = componentId,
2509 ReserveFolder = directoryId, 2509 ReserveFolder = directoryId,
2510 ReserveLocal = runLocal, 2510 ReserveLocal = runLocal,
2511 ReserveSource = runFromSource 2511 ReserveSource = runFromSource
@@ -3023,7 +3023,7 @@ namespace WixToolset.Core
3023 OnUninstall = uninstall, 3023 OnUninstall = uninstall,
3024 ConfigType = MsiServiceConfigType.DelayedAutoStart, 3024 ConfigType = MsiServiceConfigType.DelayedAutoStart,
3025 Argument = delayedAutoStart, 3025 Argument = delayedAutoStart,
3026 Component_ = componentId, 3026 ComponentRef = componentId,
3027 }; 3027 };
3028 3028
3029 this.Core.AddTuple(tuple); 3029 this.Core.AddTuple(tuple);
@@ -3045,7 +3045,7 @@ namespace WixToolset.Core
3045 OnUninstall = uninstall, 3045 OnUninstall = uninstall,
3046 ConfigType = MsiServiceConfigType.FailureActionsFlag, 3046 ConfigType = MsiServiceConfigType.FailureActionsFlag,
3047 Argument = failureActionsWhen, 3047 Argument = failureActionsWhen,
3048 Component_ = componentId, 3048 ComponentRef = componentId,
3049 }; 3049 };
3050 3050
3051 this.Core.AddTuple(tuple); 3051 this.Core.AddTuple(tuple);
@@ -3067,7 +3067,7 @@ namespace WixToolset.Core
3067 OnUninstall = uninstall, 3067 OnUninstall = uninstall,
3068 ConfigType = MsiServiceConfigType.ServiceSidInfo, 3068 ConfigType = MsiServiceConfigType.ServiceSidInfo,
3069 Argument = sid, 3069 Argument = sid,
3070 Component_ = componentId, 3070 ComponentRef = componentId,
3071 }; 3071 };
3072 3072
3073 this.Core.AddTuple(tuple); 3073 this.Core.AddTuple(tuple);
@@ -3089,7 +3089,7 @@ namespace WixToolset.Core
3089 OnUninstall = uninstall, 3089 OnUninstall = uninstall,
3090 ConfigType = MsiServiceConfigType.RequiredPrivilegesInfo, 3090 ConfigType = MsiServiceConfigType.RequiredPrivilegesInfo,
3091 Argument = requiredPrivileges, 3091 Argument = requiredPrivileges,
3092 Component_ = componentId, 3092 ComponentRef = componentId,
3093 }; 3093 };
3094 3094
3095 this.Core.AddTuple(tuple); 3095 this.Core.AddTuple(tuple);
@@ -3111,7 +3111,7 @@ namespace WixToolset.Core
3111 OnUninstall = uninstall, 3111 OnUninstall = uninstall,
3112 ConfigType = MsiServiceConfigType.PreshutdownInfo, 3112 ConfigType = MsiServiceConfigType.PreshutdownInfo,
3113 Argument = preShutdownDelay, 3113 Argument = preShutdownDelay,
3114 Component_ = componentId, 3114 ComponentRef = componentId,
3115 }; 3115 };
3116 3116
3117 this.Core.AddTuple(tuple); 3117 this.Core.AddTuple(tuple);
@@ -3302,7 +3302,7 @@ namespace WixToolset.Core
3302 Command = command, 3302 Command = command,
3303 Actions = actions, 3303 Actions = actions,
3304 DelayActions = actionsDelays, 3304 DelayActions = actionsDelays,
3305 Component_ = componentId, 3305 ComponentRef = componentId,
3306 }; 3306 };
3307 3307
3308 this.Core.AddTuple(tuple); 3308 this.Core.AddTuple(tuple);
@@ -3456,7 +3456,7 @@ namespace WixToolset.Core
3456 UninstallStop = uninstallStop, 3456 UninstallStop = uninstallStop,
3457 Arguments = arguments, 3457 Arguments = arguments,
3458 Wait = wait, 3458 Wait = wait,
3459 Component_ = componentId 3459 ComponentRef = componentId
3460 }; 3460 };
3461 3461
3462 this.Core.AddTuple(tuple); 3462 this.Core.AddTuple(tuple);
@@ -3716,7 +3716,7 @@ namespace WixToolset.Core
3716 StartName = account, 3716 StartName = account,
3717 Password = password, 3717 Password = password,
3718 Arguments = arguments, 3718 Arguments = arguments,
3719 Component_ = componentId, 3719 ComponentRef = componentId,
3720 Description = description, 3720 Description = description,
3721 Interactive = interactive, 3721 Interactive = interactive,
3722 Vital = vital 3722 Vital = vital
@@ -4032,8 +4032,8 @@ namespace WixToolset.Core
4032 { 4032 {
4033 this.Core.AddTuple(new FileSFPCatalogTuple(sourceLineNumbers) 4033 this.Core.AddTuple(new FileSFPCatalogTuple(sourceLineNumbers)
4034 { 4034 {
4035 File_ = id, 4035 FileRef = id,
4036 SFPCatalog_ = parentSFPCatalog 4036 SFPCatalogRef = parentSFPCatalog
4037 }); 4037 });
4038 } 4038 }
4039 } 4039 }
@@ -4400,14 +4400,14 @@ namespace WixToolset.Core
4400 4400
4401 var tuple = new ShortcutTuple(sourceLineNumbers, id) 4401 var tuple = new ShortcutTuple(sourceLineNumbers, id)
4402 { 4402 {
4403 Directory_ = directory, 4403 DirectoryRef = directory,
4404 Name = this.GetMsiFilenameValue(shortName, name), 4404 Name = this.GetMsiFilenameValue(shortName, name),
4405 Component_ = componentId, 4405 ComponentRef = componentId,
4406 Target = target, 4406 Target = target,
4407 Arguments = arguments, 4407 Arguments = arguments,
4408 Description = description, 4408 Description = description,
4409 Hotkey = hotkey, 4409 Hotkey = hotkey,
4410 Icon_ = icon, 4410 IconRef = icon,
4411 IconIndex = iconIndex, 4411 IconIndex = iconIndex,
4412 Show = show, 4412 Show = show,
4413 WorkingDirectory = workingDirectory, 4413 WorkingDirectory = workingDirectory,
@@ -4543,7 +4543,7 @@ namespace WixToolset.Core
4543 { 4543 {
4544 this.Core.AddTuple(new MsiShortcutPropertyTuple(sourceLineNumbers, id) 4544 this.Core.AddTuple(new MsiShortcutPropertyTuple(sourceLineNumbers, id)
4545 { 4545 {
4546 Shortcut_ = shortcutId, 4546 ShortcutRef = shortcutId,
4547 PropertyKey = key, 4547 PropertyKey = key,
4548 PropVariantValue = value 4548 PropVariantValue = value
4549 }); 4549 });
@@ -4742,10 +4742,10 @@ namespace WixToolset.Core
4742 { 4742 {
4743 LibId = id, 4743 LibId = id,
4744 Language = language, 4744 Language = language,
4745 Component_ = componentId, 4745 ComponentRef = componentId,
4746 Description = description, 4746 Description = description,
4747 Directory_ = helpDirectory, 4747 DirectoryRef = helpDirectory,
4748 Feature_ = Guid.Empty.ToString("B") 4748 FeatureRef = Guid.Empty.ToString("B")
4749 }; 4749 };
4750 4750
4751 if (CompilerConstants.IntegerNotSet != majorVersion || CompilerConstants.IntegerNotSet != minorVersion) 4751 if (CompilerConstants.IntegerNotSet != majorVersion || CompilerConstants.IntegerNotSet != minorVersion)
@@ -5085,7 +5085,7 @@ namespace WixToolset.Core
5085 { 5085 {
5086 var tuple = new VerbTuple(sourceLineNumbers) 5086 var tuple = new VerbTuple(sourceLineNumbers)
5087 { 5087 {
5088 Extension_ = extension, 5088 ExtensionRef = extension,
5089 Verb = id, 5089 Verb = id,
5090 Command = command, 5090 Command = command,
5091 Argument = argument, 5091 Argument = argument,