aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/IParseHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Services/IParseHelper.cs')
-rw-r--r--src/WixToolset.Extensibility/Services/IParseHelper.cs15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/WixToolset.Extensibility/Services/IParseHelper.cs b/src/WixToolset.Extensibility/Services/IParseHelper.cs
index d64efecd..83c66540 100644
--- a/src/WixToolset.Extensibility/Services/IParseHelper.cs
+++ b/src/WixToolset.Extensibility/Services/IParseHelper.cs
@@ -108,17 +108,6 @@ namespace WixToolset.Extensibility.Services
108 Identifier CreateRegistrySymbol(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash); 108 Identifier CreateRegistrySymbol(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash);
109 109
110 /// <summary> 110 /// <summary>
111 /// Creates a short file/directory name using an identifier and long file/directory name as input.
112 /// </summary>
113 /// <param name="longName">The long file/directory name.</param>
114 /// <param name="keepExtension">The option to keep the extension on generated short names.</param>
115 /// <param name="allowWildcards">true if wildcards are allowed in the filename.</param>
116 /// <param name="args">Any additional information to include in the hash for the generated short name.</param>
117 /// <returns>The generated 8.3-compliant short file/directory name.</returns>
118 [Obsolete]
119 string CreateShortName(string longName, bool keepExtension, bool allowWildcards, params string[] args);
120
121 /// <summary>
122 /// Create a WixSimpleReference symbol in the active section. 111 /// Create a WixSimpleReference symbol in the active section.
123 /// </summary> 112 /// </summary>
124 /// <param name="section">Active section.</param> 113 /// <param name="section">Active section.</param>
@@ -394,9 +383,9 @@ namespace WixToolset.Extensibility.Services
394 /// Verifies if a filename is a valid short filename. 383 /// Verifies if a filename is a valid short filename.
395 /// </summary> 384 /// </summary>
396 /// <param name="filename">Filename to verify.</param> 385 /// <param name="filename">Filename to verify.</param>
397 /// <param name="allowWildcards">true if wildcards are allowed in the filename.</param> 386 /// <param name="allowWildcards">Indicates whether wildcards are allowed in the filename.</param>
398 /// <returns>True if the filename is a valid short filename</returns> 387 /// <returns>True if the filename is a valid short filename</returns>
399 bool IsValidShortFilename(string filename, bool allowWildcards = false); 388 bool IsValidShortFilename(string filename, bool allowWildcards);
400 389
401 /// <summary> 390 /// <summary>
402 /// Attempts to use an extension to parse the attribute. 391 /// Attempts to use an extension to parse the attribute.