diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/WixDependencyRefTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wixext/Tuples/WixDependencyRefTuple.cs b/src/wixext/Tuples/WixDependencyRefTuple.cs index 3e996f5f..9b5a5eed 100644 --- a/src/wixext/Tuples/WixDependencyRefTuple.cs +++ b/src/wixext/Tuples/WixDependencyRefTuple.cs | |||
@@ -11,8 +11,8 @@ namespace WixToolset.Dependency | |||
11 | DependencyTupleDefinitionType.WixDependencyRef.ToString(), | 11 | DependencyTupleDefinitionType.WixDependencyRef.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixDependencyRefTupleFields.WixDependencyProvider_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixDependencyRefTupleFields.WixDependencyProviderRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixDependencyRefTupleFields.WixDependency_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixDependencyRefTupleFields.WixDependencyRef), IntermediateFieldType.String), |
16 | }, | 16 | }, |
17 | typeof(WixDependencyRefTuple)); | 17 | typeof(WixDependencyRefTuple)); |
18 | } | 18 | } |
@@ -24,8 +24,8 @@ namespace WixToolset.Dependency.Tuples | |||
24 | 24 | ||
25 | public enum WixDependencyRefTupleFields | 25 | public enum WixDependencyRefTupleFields |
26 | { | 26 | { |
27 | WixDependencyProvider_, | 27 | WixDependencyProviderRef, |
28 | WixDependency_, | 28 | WixDependencyRef, |
29 | } | 29 | } |
30 | 30 | ||
31 | public class WixDependencyRefTuple : IntermediateTuple | 31 | public class WixDependencyRefTuple : IntermediateTuple |
@@ -40,16 +40,16 @@ namespace WixToolset.Dependency.Tuples | |||
40 | 40 | ||
41 | public IntermediateField this[WixDependencyRefTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[WixDependencyRefTupleFields index] => this.Fields[(int)index]; |
42 | 42 | ||
43 | public string WixDependencyProvider_ | 43 | public string WixDependencyProviderRef |
44 | { | 44 | { |
45 | get => this.Fields[(int)WixDependencyRefTupleFields.WixDependencyProvider_].AsString(); | 45 | get => this.Fields[(int)WixDependencyRefTupleFields.WixDependencyProviderRef].AsString(); |
46 | set => this.Set((int)WixDependencyRefTupleFields.WixDependencyProvider_, value); | 46 | set => this.Set((int)WixDependencyRefTupleFields.WixDependencyProviderRef, value); |
47 | } | 47 | } |
48 | 48 | ||
49 | public string WixDependency_ | 49 | public string WixDependencyRef |
50 | { | 50 | { |
51 | get => this.Fields[(int)WixDependencyRefTupleFields.WixDependency_].AsString(); | 51 | get => this.Fields[(int)WixDependencyRefTupleFields.WixDependencyRef].AsString(); |
52 | set => this.Set((int)WixDependencyRefTupleFields.WixDependency_, value); | 52 | set => this.Set((int)WixDependencyRefTupleFields.WixDependencyRef, value); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } \ No newline at end of file | 55 | } \ No newline at end of file |