diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Core/AppCommon.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/WixToolset.Core/AppCommon.cs b/src/WixToolset.Core/AppCommon.cs index 3ea09f08..7f54b057 100644 --- a/src/WixToolset.Core/AppCommon.cs +++ b/src/WixToolset.Core/AppCommon.cs | |||
| @@ -28,7 +28,8 @@ namespace WixToolset.Core | |||
| 28 | public static void DisplayToolHeader() | 28 | public static void DisplayToolHeader() |
| 29 | { | 29 | { |
| 30 | var assembly = Assembly.GetCallingAssembly(); | 30 | var assembly = Assembly.GetCallingAssembly(); |
| 31 | Console.WriteLine(WixDistribution.ReplacePlaceholders("[AssemblyProduct] [AssemblyDescription] version [FileVersion]\r\n[AssemblyCopyright]", assembly)); | 31 | Console.WriteLine(WixDistribution.ReplacePlaceholders("[AssemblyProduct] [AssemblyDescription] version [FileVersion]", assembly)); |
| 32 | Console.WriteLine(WixDistribution.ReplacePlaceholders("[AssemblyCopyright]", assembly)); | ||
| 32 | } | 33 | } |
| 33 | 34 | ||
| 34 | /// <summary> | 35 | /// <summary> |
| @@ -37,7 +38,8 @@ namespace WixToolset.Core | |||
| 37 | public static void DisplayToolFooter() | 38 | public static void DisplayToolFooter() |
| 38 | { | 39 | { |
| 39 | var assembly = Assembly.GetCallingAssembly(); | 40 | var assembly = Assembly.GetCallingAssembly(); |
| 40 | Console.Write(WixDistribution.ReplacePlaceholders("\r\nFor more information see: [SupportUrl]", assembly)); | 41 | Console.WriteLine(); |
| 42 | Console.WriteLine(WixDistribution.ReplacePlaceholders("For more information see: [SupportUrl]", assembly)); | ||
| 41 | } | 43 | } |
| 42 | } | 44 | } |
| 43 | } | 45 | } |
