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.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/Services/IParseHelper.cs b/src/WixToolset.Extensibility/Services/IParseHelper.cs
index f756cb10..b3577d2b 100644
--- a/src/WixToolset.Extensibility/Services/IParseHelper.cs
+++ b/src/WixToolset.Extensibility/Services/IParseHelper.cs
@@ -34,11 +34,21 @@ namespace WixToolset.Extensibility.Services
34 /// <summary> 34 /// <summary>
35 /// Create an identifier based on passed file name 35 /// Create an identifier based on passed file name
36 /// </summary> 36 /// </summary>
37 /// <param name="name">File name to generate identifer from</param> 37 /// <param name="filename">File name to generate identifier from</param>
38 /// <returns></returns> 38 /// <returns>The new identifier.</returns>
39 Identifier CreateIdentifierFromFilename(string filename); 39 Identifier CreateIdentifierFromFilename(string filename);
40 40
41 /// <summary> 41 /// <summary>
42 /// Append a suffix to the given name based on the current platform.
43 /// If the current platform is not in the supported platforms, then it returns null.
44 /// </summary>
45 /// <param name="name">The base name for the identifier.</param>
46 /// <param name="currentPlatform">The platform being compiled.</param>
47 /// <param name="supportedPlatforms">The platforms for which there are specialized implementations.</param>
48 /// <returns>The generated identifier value, or null if the current platform isn't supported.</returns>
49 string CreateIdentifierValueFromPlatform(string name, Platform currentPlatform, BurnPlatforms supportedPlatforms);
50
51 /// <summary>
42 /// Creates a symbol in the section. 52 /// Creates a symbol in the section.
43 /// </summary> 53 /// </summary>
44 /// <param name="section">Section to add the new symbol to.</param> 54 /// <param name="section">Section to add the new symbol to.</param>