diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/DuplicateFileTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs b/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs index b489025c..07a3b66d 100644 --- a/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs +++ b/src/WixToolset.Data/Tuples/DuplicateFileTuple.cs | |||
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples | |||
45 | 45 | ||
46 | public string FileKey | 46 | public string FileKey |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)DuplicateFileTupleFields.FileKey]?.Value; | 48 | get => (string)this.Fields[(int)DuplicateFileTupleFields.FileKey]; |
49 | set => this.Set((int)DuplicateFileTupleFields.FileKey, value); | 49 | set => this.Set((int)DuplicateFileTupleFields.FileKey, value); |
50 | } | 50 | } |
51 | 51 | ||
52 | public string Component_ | 52 | public string Component_ |
53 | { | 53 | { |
54 | get => (string)this.Fields[(int)DuplicateFileTupleFields.Component_]?.Value; | 54 | get => (string)this.Fields[(int)DuplicateFileTupleFields.Component_]; |
55 | set => this.Set((int)DuplicateFileTupleFields.Component_, value); | 55 | set => this.Set((int)DuplicateFileTupleFields.Component_, value); |
56 | } | 56 | } |
57 | 57 | ||
58 | public string File_ | 58 | public string File_ |
59 | { | 59 | { |
60 | get => (string)this.Fields[(int)DuplicateFileTupleFields.File_]?.Value; | 60 | get => (string)this.Fields[(int)DuplicateFileTupleFields.File_]; |
61 | set => this.Set((int)DuplicateFileTupleFields.File_, value); | 61 | set => this.Set((int)DuplicateFileTupleFields.File_, value); |
62 | } | 62 | } |
63 | 63 | ||
64 | public string DestName | 64 | public string DestName |
65 | { | 65 | { |
66 | get => (string)this.Fields[(int)DuplicateFileTupleFields.DestName]?.Value; | 66 | get => (string)this.Fields[(int)DuplicateFileTupleFields.DestName]; |
67 | set => this.Set((int)DuplicateFileTupleFields.DestName, value); | 67 | set => this.Set((int)DuplicateFileTupleFields.DestName, value); |
68 | } | 68 | } |
69 | 69 | ||
70 | public string DestFolder | 70 | public string DestFolder |
71 | { | 71 | { |
72 | get => (string)this.Fields[(int)DuplicateFileTupleFields.DestFolder]?.Value; | 72 | get => (string)this.Fields[(int)DuplicateFileTupleFields.DestFolder]; |
73 | set => this.Set((int)DuplicateFileTupleFields.DestFolder, value); | 73 | set => this.Set((int)DuplicateFileTupleFields.DestFolder, value); |
74 | } | 74 | } |
75 | } | 75 | } |