aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-17 10:41:50 -0600
committerGitHub <noreply@github.com>2020-12-17 10:41:50 -0600
commit4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db (patch)
treeca4e1ee91d31000a7bed0613a0eeffcc30249fe0
parent7ce9de201708eb3b69b7dd8dee7c0b9ded15e905 (diff)
parent011e428880d14afd4811a02f07e56af5876f9583 (diff)
downloadwix-4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db.tar.gz
wix-4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db.tar.bz2
wix-4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db.zip
Merge pull request #165 from sgtatham/linux-build-fixes
Linux build fixes
-rw-r--r--src/WixToolset.Core/AppCommon.cs6
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}