From 52f4ea0a7d85c2c83c7d6c771a3bdc6dd74fdbc0 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 23 Feb 2021 09:23:01 -0800 Subject: Integrate the latest Extensibility changes --- src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs') 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 { public override IEnumerable TableDefinitions => ExampleTableDefinitions.All; - public override bool TryAddSymbolToOutput(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) + public override bool TryProcessSymbol(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) { if (ExampleSymbolDefinitions.TryGetSymbolType(symbol.Definition.Name, out var symbolType)) { @@ -27,7 +27,7 @@ namespace Example.Extension } } - return base.TryAddSymbolToOutput(section, symbol, output, tableDefinitions); + return base.TryProcessSymbol(section, symbol, output, tableDefinitions); } } } -- cgit v1.2.3-55-g6feb