diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs b/src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs index 840cc65d..ca6e6b33 100644 --- a/src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs +++ b/src/WixToolset.Data/Tuples/WixBundleCatalogTuple.cs | |||
@@ -11,7 +11,7 @@ namespace WixToolset.Data | |||
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(WixBundleCatalogTupleFields.WixBundleCatalog), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixBundleCatalogTupleFields.WixBundleCatalog), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(WixBundleCatalogTupleFields.Payload_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixBundleCatalogTupleFields.PayloadRef), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(WixBundleCatalogTuple)); | 16 | typeof(WixBundleCatalogTuple)); |
17 | } | 17 | } |
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples | |||
22 | public enum WixBundleCatalogTupleFields | 22 | public enum WixBundleCatalogTupleFields |
23 | { | 23 | { |
24 | WixBundleCatalog, | 24 | WixBundleCatalog, |
25 | Payload_, | 25 | PayloadRef, |
26 | } | 26 | } |
27 | 27 | ||
28 | public class WixBundleCatalogTuple : IntermediateTuple | 28 | public class WixBundleCatalogTuple : IntermediateTuple |
@@ -43,10 +43,10 @@ namespace WixToolset.Data.Tuples | |||
43 | set => this.Set((int)WixBundleCatalogTupleFields.WixBundleCatalog, value); | 43 | set => this.Set((int)WixBundleCatalogTupleFields.WixBundleCatalog, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string Payload_ | 46 | public string PayloadRef |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)WixBundleCatalogTupleFields.Payload_]; | 48 | get => (string)this.Fields[(int)WixBundleCatalogTupleFields.PayloadRef]; |
49 | set => this.Set((int)WixBundleCatalogTupleFields.Payload_, value); | 49 | set => this.Set((int)WixBundleCatalogTupleFields.PayloadRef, value); |
50 | } | 50 | } |
51 | } | 51 | } |
52 | } \ No newline at end of file | 52 | } \ No newline at end of file |