From 6e52045d6af8d960369aacefa03265a23c88996c Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Tue, 29 Jan 2019 00:33:54 +0000 Subject: [PATCH] update assembly info and edit output messages. --- .../Console.Waterworks/CoOrdinators/CoOrdinator.cs | 8 ++++---- .../Console.Waterworks/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs b/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs index 74f9ffd..d5976f6 100644 --- a/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs +++ b/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs @@ -48,8 +48,8 @@ namespace Console.Waterworks.CoOrdinators _logger.LogInfoMessage("Attempting to execute command.."); var result = _commSpec.ExecuteCommand(commandsNamespace, command, commandClasses, commandLibraries, _consoleSpec); _consoleSpec.WriteOutputToConsole(result); - _logger.LogSuccessMessage("Command has been executed."); - _logger.LogNoteMessage("An error message does not mean the command did not execute properly or sucessfully."); + _logger.LogSuccessMessage("Command has been executed"); + _logger.LogNoteMessage("An error message does not mean the command did not execute properly or sucessfully"); } catch (Exception ex) { @@ -57,7 +57,7 @@ namespace Console.Waterworks.CoOrdinators _consoleSpec.WriteErrorMessage(ex.Message); } _logger.LogInfoMessage("Resetting the console's formatting.."); - _logger.LogNoteMessage("This is to make sure no error messages or one-off formating change corrupts the console environment."); + _logger.LogNoteMessage("This is to make sure no error messages or one-off formating change corrupts the console environment"); _consoleSpec.ResetConsoleColour(); _logger.LogSuccessMessage("Console's formating has been reset"); } @@ -75,7 +75,7 @@ namespace Console.Waterworks.CoOrdinators } _logger.LogSuccessMessage("Found help information"); _logger.LogInfoMessage("Attempting to display the help information.."); - _consoleSpec.WriteOutputToConsole("Displaying Help section..."); + _consoleSpec.WriteOutputToConsole("Displaying Help section.."); _consoleSpec.LineBreak(); var commandMembers = _helpSpec.GetCommandMembers(commandClasses); foreach (var command in commandMembers) diff --git a/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs b/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs index 7d1c0ee..c03525b 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("0.1.0.0")] -[assembly: AssemblyFileVersion("0.1.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: NeutralResourcesLanguage("en-GB")]