From 6da5d258210065723a8652dedda19851eb102d78 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 00:20:37 -0700 Subject: Obsolete references to "Row" which are all now "Tuples" --- src/WixToolset.Extensibility/Services/IParseHelper.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src') diff --git a/src/WixToolset.Extensibility/Services/IParseHelper.cs b/src/WixToolset.Extensibility/Services/IParseHelper.cs index 6f1d21a6..2a51e240 100644 --- a/src/WixToolset.Extensibility/Services/IParseHelper.cs +++ b/src/WixToolset.Extensibility/Services/IParseHelper.cs @@ -45,6 +45,9 @@ namespace WixToolset.Extensibility.Services /// Name of table to create row in. /// Optional identifier for the row. /// New row. + IntermediateTuple CreateTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, string tableName, Identifier identifier = null); + + [Obsolete] IntermediateTuple CreateRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, string tableName, Identifier identifier = null); /// @@ -55,6 +58,9 @@ namespace WixToolset.Extensibility.Services /// Type of tuple to create. /// Optional identifier for the row. /// New row. + IntermediateTuple CreateTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, TupleDefinitionType tupleType, Identifier identifier = null); + + [Obsolete] IntermediateTuple CreateRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, TupleDefinitionType tupleType, Identifier identifier = null); /// @@ -70,6 +76,9 @@ namespace WixToolset.Extensibility.Services /// Optional source name for the directory. /// Optional short source name for the directory. /// Identifier for the newly created row. + Identifier CreateDirectoryTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, Identifier id, string parentId, string name, ISet sectionInlinedDirectoryIds, string shortName = null, string sourceName = null, string shortSourceName = null); + + [Obsolete] Identifier CreateDirectoryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, Identifier id, string parentId, string name, ISet sectionInlinedDirectoryIds, string shortName = null, string sourceName = null, string shortSourceName = null); /// @@ -93,6 +102,9 @@ namespace WixToolset.Extensibility.Services /// The registry entry value. /// The component which will control installation/uninstallation of the registry entry. /// If true, "escape" leading '#' characters so the value is written as a REG_SZ. + Identifier CreateRegistryTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash); + + [Obsolete] Identifier CreateRegistryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash); /// @@ -133,6 +145,9 @@ namespace WixToolset.Extensibility.Services /// Id of the parenet node. /// Complex reference type of child /// Id of the Child Node. + void CreateWixGroupTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, ComplexReferenceParentType parentType, string parentId, ComplexReferenceChildType childType, string childId); + + [Obsolete] void CreateWixGroupRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, ComplexReferenceParentType parentType, string parentId, ComplexReferenceChildType childType, string childId); /// -- cgit v1.2.3-55-g6feb