aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/IWixBranding.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Services/IWixBranding.cs')
-rw-r--r--src/WixToolset.Extensibility/Services/IWixBranding.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Services/IWixBranding.cs b/src/WixToolset.Extensibility/Services/IWixBranding.cs
new file mode 100644
index 00000000..4bac9ccd
--- /dev/null
+++ b/src/WixToolset.Extensibility/Services/IWixBranding.cs
@@ -0,0 +1,26 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Extensibility.Services
4{
5 using System.Reflection;
6
7 /// <summary>
8 /// WiX branding interface.
9 /// </summary>
10 public interface IWixBranding
11 {
12 /// <summary>
13 /// Gets the value for CreatingApplication field (MSI Summary Information Stream).
14 /// </summary>
15 /// <returns>String for creating application.</returns>
16 string GetCreatingApplication();
17
18 /// <summary>
19 /// Replaces branding placeholders in original string.
20 /// </summary>
21 /// <param name="original">Original string containing placeholders to replace.</param>
22 /// <param name="assembly">Optional assembly with branding information, if not specified core branding is used.</param>
23 /// <returns></returns>
24 string ReplacePlaceholders(string original, Assembly assembly = null);
25 }
26}