aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data.WindowsInstaller/Output.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data.WindowsInstaller/Output.cs')
-rw-r--r--src/WixToolset.Data.WindowsInstaller/Output.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/WixToolset.Data.WindowsInstaller/Output.cs b/src/WixToolset.Data.WindowsInstaller/Output.cs
index 71faeac7..26772872 100644
--- a/src/WixToolset.Data.WindowsInstaller/Output.cs
+++ b/src/WixToolset.Data.WindowsInstaller/Output.cs
@@ -186,7 +186,6 @@ namespace WixToolset.Data
186 186
187 bool empty = reader.IsEmptyElement; 187 bool empty = reader.IsEmptyElement;
188 Output output = new Output(SourceLineNumber.CreateFromUri(reader.BaseURI)); 188 Output output = new Output(SourceLineNumber.CreateFromUri(reader.BaseURI));
189 SectionType sectionType = SectionType.Unknown;
190 Version version = null; 189 Version version = null;
191 190
192 while (reader.MoveToNextAttribute()) 191 while (reader.MoveToNextAttribute())
@@ -201,22 +200,18 @@ namespace WixToolset.Data
201 { 200 {
202 case "Bundle": 201 case "Bundle":
203 output.Type = OutputType.Bundle; 202 output.Type = OutputType.Bundle;
204 sectionType = SectionType.Bundle;
205 break; 203 break;
206 case "Module": 204 case "Module":
207 output.Type = OutputType.Module; 205 output.Type = OutputType.Module;
208 sectionType = SectionType.Module;
209 break; 206 break;
210 case "Patch": 207 case "Patch":
211 output.Type = OutputType.Patch; 208 output.Type = OutputType.Patch;
212 break; 209 break;
213 case "PatchCreation": 210 case "PatchCreation":
214 output.Type = OutputType.PatchCreation; 211 output.Type = OutputType.PatchCreation;
215 sectionType = SectionType.PatchCreation;
216 break; 212 break;
217 case "Product": 213 case "Product":
218 output.Type = OutputType.Product; 214 output.Type = OutputType.Product;
219 sectionType = SectionType.Product;
220 break; 215 break;
221 case "Transform": 216 case "Transform":
222 output.Type = OutputType.Transform; 217 output.Type = OutputType.Transform;