diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-02-23 09:23:01 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-27 07:47:08 -0800 |
| commit | 52f4ea0a7d85c2c83c7d6c771a3bdc6dd74fdbc0 (patch) | |
| tree | 20b58ee7e2b7c724c477ef6e95a8ed4ebbfa8a92 /src/test | |
| parent | da9f4cf9627ca628f87f0938414795258190439b (diff) | |
| download | wix-52f4ea0a7d85c2c83c7d6c771a3bdc6dd74fdbc0.tar.gz wix-52f4ea0a7d85c2c83c7d6c771a3bdc6dd74fdbc0.tar.bz2 wix-52f4ea0a7d85c2c83c7d6c771a3bdc6dd74fdbc0.zip | |
Integrate the latest Extensibility changes
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs index 2c108d96..87b7855c 100644 --- a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs +++ b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs | |||
| @@ -11,7 +11,7 @@ namespace Example.Extension | |||
| 11 | { | 11 | { |
| 12 | public override IEnumerable<TableDefinition> TableDefinitions => ExampleTableDefinitions.All; | 12 | public override IEnumerable<TableDefinition> TableDefinitions => ExampleTableDefinitions.All; |
| 13 | 13 | ||
| 14 | public override bool TryAddSymbolToOutput(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) | 14 | public override bool TryProcessSymbol(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) |
| 15 | { | 15 | { |
| 16 | if (ExampleSymbolDefinitions.TryGetSymbolType(symbol.Definition.Name, out var symbolType)) | 16 | if (ExampleSymbolDefinitions.TryGetSymbolType(symbol.Definition.Name, out var symbolType)) |
| 17 | { | 17 | { |
| @@ -27,7 +27,7 @@ namespace Example.Extension | |||
| 27 | } | 27 | } |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | return base.TryAddSymbolToOutput(section, symbol, output, tableDefinitions); | 30 | return base.TryProcessSymbol(section, symbol, output, tableDefinitions); |
| 31 | } | 31 | } |
| 32 | } | 32 | } |
| 33 | } | 33 | } |
