From 19008bc1d0af16ca781d7f2f51dff2c539ab59f1 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 2 Nov 2017 23:47:49 +0000 Subject: [PATCH 1/4] Updated the "Usage" attribute copy. The prompt used in "Usage" now matched the actual prompt in CW_Core_Console. --- CW_Core_Console/ConsoleCommands.cs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CW_Core_Console/ConsoleCommands.cs b/CW_Core_Console/ConsoleCommands.cs index 89232ae..6e5df21 100644 --- a/CW_Core_Console/ConsoleCommands.cs +++ b/CW_Core_Console/ConsoleCommands.cs @@ -8,12 +8,12 @@ namespace CW_Core_Console { #region Demo-Methods - // These command-methods are to show how a Console.Waterworks program typically looks. + // These command-methods are to show how a Console.Waterworks.Core program typically looks. [ListCommand()] [Description("Displays the Help section at run-time")] [Parameters("None")] - [Usage("CW_Console> Help")] + [Usage("CW_Core_Console> Help")] public static string Help() { CW_Liaison liaison = new CW_Liaison(); @@ -23,31 +23,31 @@ namespace CW_Core_Console [ListCommand()] [Description("Outputs a message indicating this program is running okay.")] [Parameters("None")] - [Usage("CW_Console> Test")] + [Usage("CW_Core_Console> Test")] public static string Test() => "Test complete."; [ListCommand()] [Description("Repeats back to the user the string they entered.")] [Parameters(" input")] - [Usage("CW_Console> Say \"Hello, World.\"")] + [Usage("CW_Core_Console> Say \"Hello, World.\"")] public static string Say(string input) => $"{input}"; [ListCommand()] [Description("Displays the date and time at the moment the command is entered")] [Parameters("None")] - [Usage("CW_Console> GetDate")] + [Usage("CW_Core_Console> GetDate")] public static string GetDate() => $"{DateTime.Now}"; [ListCommand()] [Description("Takes the two ints and adds them together.")] [Parameters(" int, int2")] - [Usage("CW_Console> Add 31 10")] + [Usage("CW_Core_Console> Add 31 10")] public static string Add(int int1, int int2) => $"{int1} + {int2} = {int1 + int2}"; [ListCommand()] [Description("Terminates the program.")] [Parameters("None")] - [Usage("CW_Console> Quit")] + [Usage("CW_Core_Console> Quit")] public static void Quit() => Environment.Exit(-1); #endregion @@ -68,31 +68,31 @@ namespace CW_Core_Console [ListCommand(false)] // change to true or delete "false" for it to show at run-time. [Description("Alias for \"Test\". See \"Test\" for details.")] [Parameters("None")] - [Usage("CW_Console> test")] + [Usage("CW_Core_Console> test")] public static string test() => Test(); [ListCommand(false)] [Description("Alias for \"Say\". See \"Say\" for details.")] [Parameters("None")] - [Usage("CW_Console> say \"Hello, World.\"")] + [Usage("CW_Core_Console> say \"Hello, World.\"")] public static string say(string input) => Say(input); [ListCommand(false)] [Description("Alias for \"GetDate\". See \"GetDate\" for details.")] [Parameters("None")] - [Usage("CW_Console> date")] + [Usage("CW_Core_Console> date")] public static string date() => GetDate(); [ListCommand(false)] [Description("Alias for \"Add\". See \"Add\" for details.")] [Parameters("None")] - [Usage("CW_Console> add 24 67")] + [Usage("CW_Core_Console> add 24 67")] public static string add(int int1, int int2) => Add(int1, int2); [ListCommand(false)] [Description("Alias for Quit. See Quit for details.")] [Parameters("None")] - [Usage("CW_Console> quit")] + [Usage("CW_Core_Console> quit")] public static void quit() => Quit(); #endregion From cc3b44641c9e1c0fe12fa72c2810e7bf42598b11 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 2 Nov 2017 23:50:18 +0000 Subject: [PATCH 2/4] Updated Nuget package info. Minor formatting changes. --- CW_Core_Console/Program.cs | 1 - Console.Waterworks.Core/Console.Waterworks.Core.csproj | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CW_Core_Console/Program.cs b/CW_Core_Console/Program.cs index c5265de..39a1061 100644 --- a/CW_Core_Console/Program.cs +++ b/CW_Core_Console/Program.cs @@ -9,7 +9,6 @@ namespace CW_Core_Console { var liaison = new CW_Liaison(); liaison.Run("CW_Core_Console", true); - } } } diff --git a/Console.Waterworks.Core/Console.Waterworks.Core.csproj b/Console.Waterworks.Core/Console.Waterworks.Core.csproj index af51d28..9ec6a32 100644 --- a/Console.Waterworks.Core/Console.Waterworks.Core.csproj +++ b/Console.Waterworks.Core/Console.Waterworks.Core.csproj @@ -15,8 +15,9 @@ 1.0.0.0 1.0.0.0 1.0.0-alpha - This is the initial alpha release of Console.Waterworks. + Minor bug fixes and refactoring. Console.Waterworks.Core-Logo.ico + Craig Oates From 79af4fbccbf9141e2ac8a0eccf727efab3da8567 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 2 Nov 2017 23:53:30 +0000 Subject: [PATCH 3/4] [Doc Update] Removed not live warning in the readme file. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 26756ad..89122f2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # ![Logo](Documentation/GitHub_Assets/Page-Header.png "Header") -## Console.Waterworks.Core is not live on Nuget just yet. Please check back here for more details - ## About Console.Waterworks.Core Console.Waterworks.Core is the .Net Core version of Console.Waterworks. Both projects are Nuget packages. And, their main purpose is to help you write extendable command-based console programs. If you want to write a console program using the full .Net Framework, use Console.Waterworks. From a278c5c1d0b129c16a395e5d037f2d02e6363fe0 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Tue, 29 Jan 2019 01:49:32 +0000 Subject: [PATCH 4/4] update assembly info. for 1.0 release. --- CW_Core_Console/CW_Core_Console.csproj | 2 +- CW_Core_Tests/CW_Core_Tests.csproj | 2 +- .../Console.Waterworks.Core.csproj | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CW_Core_Console/CW_Core_Console.csproj b/CW_Core_Console/CW_Core_Console.csproj index f1e5937..bf73f63 100644 --- a/CW_Core_Console/CW_Core_Console.csproj +++ b/CW_Core_Console/CW_Core_Console.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.0 + netcoreapp2.1 CW_Core_Console.Program Craig Oates diff --git a/CW_Core_Tests/CW_Core_Tests.csproj b/CW_Core_Tests/CW_Core_Tests.csproj index 738593f..327f335 100644 --- a/CW_Core_Tests/CW_Core_Tests.csproj +++ b/CW_Core_Tests/CW_Core_Tests.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 false diff --git a/Console.Waterworks.Core/Console.Waterworks.Core.csproj b/Console.Waterworks.Core/Console.Waterworks.Core.csproj index 9ec6a32..c7f44b9 100644 --- a/Console.Waterworks.Core/Console.Waterworks.Core.csproj +++ b/Console.Waterworks.Core/Console.Waterworks.Core.csproj @@ -1,21 +1,21 @@ - netcoreapp2.0 + netcoreapp2.1 English (United Kingdom) Copyright © 2017 Craig Oates - https://github.com/CraigOates/Console.Waterworks.Core/blob/master/LICENSE - http://craigsappshed.azurewebsites.net/Waterworks - https://github.com/CraigOates/Console.Waterworks.Core - Console, .Net Core, Craig Oates, Waterworks + + https://gitlab.com/craig.oates/Console.Waterworks.Core/raw/master/Documentation/GitHub_Assets/Sidebar-Logo.png + https://gitlab.com/craig.oates/Console.Waterworks.Core/raw/master/Documentation/GitHub_Assets/Sidebar-Logo.png + Console .Net Core Craig Oates Waterworks Console.Waterworks.Core is the .Net Core version of Console.Waterworks. Both projects are Nuget packages. And, their main purpose is to help you write extendable command-based console programs. If you want to write a console program using the full .Net Framework, use Console.Waterworks. - https://github.com/CraigOates/Console.Waterworks.Core/raw/master/Documentation/GitHub_Assets/Sidebar-Logo.png - true + https://gitlab.com/craig.oates/Console.Waterworks.Core/raw/master/Documentation/GitHub_Assets/Sidebar-Logo.png + false true 1.0.0.0 1.0.0.0 - 1.0.0-alpha - Minor bug fixes and refactoring. + 1.0.0 + The 1.0 release of Console.Waterwork.Core. Console.Waterworks.Core-Logo.ico Craig Oates