| 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 | |
| 3 | namespace 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 | } |