diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-25 14:43:50 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-25 14:50:31 -0700 |
commit | 38afa9e7bc7eacc021f8805f607368a05751e3c3 (patch) | |
tree | 803b0a8d9a06a7d6f7c4df408437017ae21a883e /src/test/Example.Extension/ExampleExtensionData.cs | |
parent | 8968578d50858721317d410549a9f9b5c62bf1f7 (diff) | |
download | wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.tar.gz wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.tar.bz2 wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.zip |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/test/Example.Extension/ExampleExtensionData.cs')
-rw-r--r-- | src/test/Example.Extension/ExampleExtensionData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/Example.Extension/ExampleExtensionData.cs b/src/test/Example.Extension/ExampleExtensionData.cs index 2ba94397..91d60eb9 100644 --- a/src/test/Example.Extension/ExampleExtensionData.cs +++ b/src/test/Example.Extension/ExampleExtensionData.cs | |||
@@ -9,15 +9,15 @@ namespace Example.Extension | |||
9 | { | 9 | { |
10 | public string DefaultCulture => null; | 10 | public string DefaultCulture => null; |
11 | 11 | ||
12 | public Intermediate GetLibrary(ITupleDefinitionCreator tupleDefinitions) | 12 | public Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions) |
13 | { | 13 | { |
14 | return Intermediate.Load(typeof(ExampleExtensionData).Assembly, "Example.Extension.Example.wixlib", tupleDefinitions); | 14 | return Intermediate.Load(typeof(ExampleExtensionData).Assembly, "Example.Extension.Example.wixlib", symbolDefinitions); |
15 | } | 15 | } |
16 | 16 | ||
17 | public bool TryGetTupleDefinitionByName(string name, out IntermediateTupleDefinition tupleDefinition) | 17 | public bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition) |
18 | { | 18 | { |
19 | tupleDefinition = ExampleTupleDefinitions.ByName(name); | 19 | symbolDefinition = ExampleSymbolDefinitions.ByName(name); |
20 | return tupleDefinition != null; | 20 | return symbolDefinition != null; |
21 | } | 21 | } |
22 | } | 22 | } |
23 | } \ No newline at end of file | 23 | } \ No newline at end of file |