aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs b/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
index 9a2c2c0d..70926557 100644
--- a/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
@@ -67,10 +67,10 @@ namespace WixToolset.Data.Tuples
67 set => this.Set((int)MsiAssemblyTupleFields.File_Application, value); 67 set => this.Set((int)MsiAssemblyTupleFields.File_Application, value);
68 } 68 }
69 69
70 public int Attributes 70 public FileAssemblyType Type
71 { 71 {
72 get => (int)this.Fields[(int)MsiAssemblyTupleFields.Attributes]; 72 get => (FileAssemblyType)this.Fields[(int)MsiAssemblyTupleFields.Attributes].AsNumber();
73 set => this.Set((int)MsiAssemblyTupleFields.Attributes, value); 73 set => this.Set((int)MsiAssemblyTupleFields.Attributes, (int)value);
74 } 74 }
75 } 75 }
76} \ No newline at end of file 76} \ No newline at end of file