From c2ddae8b5b648cb442e36f4cfed661f0e01b5111 Mon Sep 17 00:00:00 2001 From: Craig_Oates Date: Sat, 23 Sep 2017 16:31:58 +0100 Subject: [PATCH] Proof-read for pull request. A few minor changes have been made in preparation for a pull request. Not too far away from version 1.0. --- Console.Waterworks/CW_Console/Program.cs | 5 ----- .../Console.Waterworks/Properties/AssemblyInfo.cs | 4 ++-- .../Console.Waterworks/Specialists/ProgramInfoSpecialist.cs | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Console.Waterworks/CW_Console/Program.cs b/Console.Waterworks/CW_Console/Program.cs index 803a7a1..8c1d3cc 100644 --- a/Console.Waterworks/CW_Console/Program.cs +++ b/Console.Waterworks/CW_Console/Program.cs @@ -1,9 +1,4 @@ using Console.Waterworks; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace CW_Console { diff --git a/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs b/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs index c03525b..7d1c0ee 100644 --- a/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs +++ b/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs @@ -32,7 +32,7 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("0.1.0.0")] +[assembly: AssemblyFileVersion("0.1.0.0")] [assembly: NeutralResourcesLanguage("en-GB")] diff --git a/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs index b282a19..c8dfe72 100644 --- a/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs +++ b/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs @@ -42,7 +42,7 @@ namespace Console.Waterworks.Specialists .GetCustomAttributes(typeof(AssemblyCompanyAttribute), false) .OfType() .FirstOrDefault(); - return (companyAttribute != null) ? $"by {companyAttribute.Company}" : null; + return (companyAttribute != null) ? companyAttribute.Company : null; } string addProductDescription()