diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/AppIdTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/AppIdTuple.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Tuples/AppIdTuple.cs b/src/WixToolset.Data/Tuples/AppIdTuple.cs index 7816e4c3..22cec56e 100644 --- a/src/WixToolset.Data/Tuples/AppIdTuple.cs +++ b/src/WixToolset.Data/Tuples/AppIdTuple.cs | |||
@@ -49,43 +49,43 @@ namespace WixToolset.Data.Tuples | |||
49 | 49 | ||
50 | public string AppId | 50 | public string AppId |
51 | { | 51 | { |
52 | get => (string)this.Fields[(int)AppIdTupleFields.AppId]?.Value; | 52 | get => (string)this.Fields[(int)AppIdTupleFields.AppId]; |
53 | set => this.Set((int)AppIdTupleFields.AppId, value); | 53 | set => this.Set((int)AppIdTupleFields.AppId, value); |
54 | } | 54 | } |
55 | 55 | ||
56 | public string RemoteServerName | 56 | public string RemoteServerName |
57 | { | 57 | { |
58 | get => (string)this.Fields[(int)AppIdTupleFields.RemoteServerName]?.Value; | 58 | get => (string)this.Fields[(int)AppIdTupleFields.RemoteServerName]; |
59 | set => this.Set((int)AppIdTupleFields.RemoteServerName, value); | 59 | set => this.Set((int)AppIdTupleFields.RemoteServerName, value); |
60 | } | 60 | } |
61 | 61 | ||
62 | public string LocalService | 62 | public string LocalService |
63 | { | 63 | { |
64 | get => (string)this.Fields[(int)AppIdTupleFields.LocalService]?.Value; | 64 | get => (string)this.Fields[(int)AppIdTupleFields.LocalService]; |
65 | set => this.Set((int)AppIdTupleFields.LocalService, value); | 65 | set => this.Set((int)AppIdTupleFields.LocalService, value); |
66 | } | 66 | } |
67 | 67 | ||
68 | public string ServiceParameters | 68 | public string ServiceParameters |
69 | { | 69 | { |
70 | get => (string)this.Fields[(int)AppIdTupleFields.ServiceParameters]?.Value; | 70 | get => (string)this.Fields[(int)AppIdTupleFields.ServiceParameters]; |
71 | set => this.Set((int)AppIdTupleFields.ServiceParameters, value); | 71 | set => this.Set((int)AppIdTupleFields.ServiceParameters, value); |
72 | } | 72 | } |
73 | 73 | ||
74 | public string DllSurrogate | 74 | public string DllSurrogate |
75 | { | 75 | { |
76 | get => (string)this.Fields[(int)AppIdTupleFields.DllSurrogate]?.Value; | 76 | get => (string)this.Fields[(int)AppIdTupleFields.DllSurrogate]; |
77 | set => this.Set((int)AppIdTupleFields.DllSurrogate, value); | 77 | set => this.Set((int)AppIdTupleFields.DllSurrogate, value); |
78 | } | 78 | } |
79 | 79 | ||
80 | public int ActivateAtStorage | 80 | public bool? ActivateAtStorage |
81 | { | 81 | { |
82 | get => (int)this.Fields[(int)AppIdTupleFields.ActivateAtStorage]?.Value; | 82 | get => (bool?)this.Fields[(int)AppIdTupleFields.ActivateAtStorage]; |
83 | set => this.Set((int)AppIdTupleFields.ActivateAtStorage, value); | 83 | set => this.Set((int)AppIdTupleFields.ActivateAtStorage, value); |
84 | } | 84 | } |
85 | 85 | ||
86 | public int RunAsInteractiveUser | 86 | public bool? RunAsInteractiveUser |
87 | { | 87 | { |
88 | get => (int)this.Fields[(int)AppIdTupleFields.RunAsInteractiveUser]?.Value; | 88 | get => (bool?)this.Fields[(int)AppIdTupleFields.RunAsInteractiveUser]; |
89 | set => this.Set((int)AppIdTupleFields.RunAsInteractiveUser, value); | 89 | set => this.Set((int)AppIdTupleFields.RunAsInteractiveUser, value); |
90 | } | 90 | } |
91 | } | 91 | } |