Browse Source

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.
merge-requests/1/head
Craig Oates 7 years ago
parent
commit
c2ddae8b5b
  1. 5
      Console.Waterworks/CW_Console/Program.cs
  2. 4
      Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs
  3. 2
      Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs

5
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
{

4
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")]

2
Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs

@ -42,7 +42,7 @@ namespace Console.Waterworks.Specialists
.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false)
.OfType<AssemblyCompanyAttribute>()
.FirstOrDefault();
return (companyAttribute != null) ? $"by {companyAttribute.Company}" : null;
return (companyAttribute != null) ? companyAttribute.Company : null;
}
string addProductDescription()

Loading…
Cancel
Save