diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs b/src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs index ff874271..487dc714 100644 --- a/src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiPatchOldAssemblyFileTuple.cs | |||
| @@ -10,8 +10,8 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.MsiPatchOldAssemblyFile, | 10 | TupleDefinitionType.MsiPatchOldAssemblyFile, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(MsiPatchOldAssemblyFileTupleFields.File_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(MsiPatchOldAssemblyFileTupleFields.FileRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(MsiPatchOldAssemblyFileTupleFields.Assembly_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(MsiPatchOldAssemblyFileTupleFields.AssemblyRef), IntermediateFieldType.String), |
| 15 | }, | 15 | }, |
| 16 | typeof(MsiPatchOldAssemblyFileTuple)); | 16 | typeof(MsiPatchOldAssemblyFileTuple)); |
| 17 | } | 17 | } |
| @@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples | |||
| 21 | { | 21 | { |
| 22 | public enum MsiPatchOldAssemblyFileTupleFields | 22 | public enum MsiPatchOldAssemblyFileTupleFields |
| 23 | { | 23 | { |
| 24 | File_, | 24 | FileRef, |
| 25 | Assembly_, | 25 | AssemblyRef, |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | public class MsiPatchOldAssemblyFileTuple : IntermediateTuple | 28 | public class MsiPatchOldAssemblyFileTuple : IntermediateTuple |
| @@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples | |||
| 37 | 37 | ||
| 38 | public IntermediateField this[MsiPatchOldAssemblyFileTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[MsiPatchOldAssemblyFileTupleFields index] => this.Fields[(int)index]; |
| 39 | 39 | ||
| 40 | public string File_ | 40 | public string FileRef |
| 41 | { | 41 | { |
| 42 | get => (string)this.Fields[(int)MsiPatchOldAssemblyFileTupleFields.File_]; | 42 | get => (string)this.Fields[(int)MsiPatchOldAssemblyFileTupleFields.FileRef]; |
| 43 | set => this.Set((int)MsiPatchOldAssemblyFileTupleFields.File_, value); | 43 | set => this.Set((int)MsiPatchOldAssemblyFileTupleFields.FileRef, value); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | public string Assembly_ | 46 | public string AssemblyRef |
| 47 | { | 47 | { |
| 48 | get => (string)this.Fields[(int)MsiPatchOldAssemblyFileTupleFields.Assembly_]; | 48 | get => (string)this.Fields[(int)MsiPatchOldAssemblyFileTupleFields.AssemblyRef]; |
| 49 | set => this.Set((int)MsiPatchOldAssemblyFileTupleFields.Assembly_, value); | 49 | set => this.Set((int)MsiPatchOldAssemblyFileTupleFields.AssemblyRef, value); |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
| 52 | } \ No newline at end of file | 52 | } \ No newline at end of file |
