diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-14 23:21:52 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-14 23:21:52 -0800 |
| commit | aa6f15ec4998a77622fafe9c510b3b547c595679 (patch) | |
| tree | 50249c24429424ee14531a2047954c9df1ee345a /src/WixToolset.Data.WindowsInstaller | |
| parent | b6bf1604c32259757f75b4c35444cfe4ecc21a86 (diff) | |
| download | wix-aa6f15ec4998a77622fafe9c510b3b547c595679.tar.gz wix-aa6f15ec4998a77622fafe9c510b3b547c595679.tar.bz2 wix-aa6f15ec4998a77622fafe9c510b3b547c595679.zip | |
Refactor CompilerCore to ParserHelper and other clean up
Diffstat (limited to 'src/WixToolset.Data.WindowsInstaller')
| -rw-r--r-- | src/WixToolset.Data.WindowsInstaller/Output.cs | 5 |
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; |
