diff --git a/Console.Waterworks/Console.Waterworks/Assistants/CoOrdinatorAssistant.cs b/Console.Waterworks/Console.Waterworks/Assistants/CoOrdinatorAssistant.cs new file mode 100644 index 0000000..17a553f --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Assistants/CoOrdinatorAssistant.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Assistants +{ + class CoOrdinatorAssistant + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Assistants/CommandsAssistant.cs b/Console.Waterworks/Console.Waterworks/Assistants/CommandsAssistant.cs new file mode 100644 index 0000000..a8b3c41 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Assistants/CommandsAssistant.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Assistants +{ + class CommandsAssistant + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Attributes/DescriptionAttribute.cs b/Console.Waterworks/Console.Waterworks/Attributes/DescriptionAttribute.cs new file mode 100644 index 0000000..7751d06 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Attributes/DescriptionAttribute.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Attributes +{ + class DescriptionAttribute + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Attributes/ListCommandAttribute.cs b/Console.Waterworks/Console.Waterworks/Attributes/ListCommandAttribute.cs new file mode 100644 index 0000000..12a5844 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Attributes/ListCommandAttribute.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Attributes +{ + class ListCommandAttribute + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Attributes/ParametersAttribute.cs b/Console.Waterworks/Console.Waterworks/Attributes/ParametersAttribute.cs new file mode 100644 index 0000000..87e39d4 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Attributes/ParametersAttribute.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Attributes +{ + class ParametersAttribute + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Attributes/UsageAttribute.cs b/Console.Waterworks/Console.Waterworks/Attributes/UsageAttribute.cs new file mode 100644 index 0000000..0586f29 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Attributes/UsageAttribute.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Attributes +{ + class UsageAttribute + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/CWLiaision.cs b/Console.Waterworks/Console.Waterworks/CWLiaision.cs index 19ef89f..7b7fe7b 100644 --- a/Console.Waterworks/Console.Waterworks/CWLiaision.cs +++ b/Console.Waterworks/Console.Waterworks/CWLiaision.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Console.Waterworks { - public class Class1 + public class CWLiaision { } } diff --git a/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs b/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs new file mode 100644 index 0000000..b31ecce --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/CoOrdinators/CoOrdinator.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.CoOrdinators +{ + class CoOrdinator + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Console.Waterworks.csproj b/Console.Waterworks/Console.Waterworks/Console.Waterworks.csproj index 0e95d16..1a9a8ab 100644 --- a/Console.Waterworks/Console.Waterworks/Console.Waterworks.csproj +++ b/Console.Waterworks/Console.Waterworks/Console.Waterworks.csproj @@ -1,16 +1,17 @@ - + Debug AnyCPU - d1354760-61f7-4aee-8d6f-e78a463ee3c9 + {D1354760-61F7-4AEE-8D6F-E78A463EE3C9} Library Properties Console.Waterworks Console.Waterworks - v4.6.1 + v4.7 512 + true @@ -29,25 +30,33 @@ prompt 4 + + WaterWorksIcon.ico + - - - - - - - - - - - - - - + + + + + + + + - + + + + + + + + + + + + - + \ No newline at end of file diff --git a/Console.Waterworks/Console.Waterworks/Constants/CW_Constants.cs b/Console.Waterworks/Console.Waterworks/Constants/CW_Constants.cs new file mode 100644 index 0000000..663e5c3 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Constants/CW_Constants.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Constants +{ + class CWConstants + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Loggers/CW_Logger.cs b/Console.Waterworks/Console.Waterworks/Loggers/CW_Logger.cs new file mode 100644 index 0000000..627db64 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Loggers/CW_Logger.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Loggers +{ + class CW_Logger + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Models/Command.cs b/Console.Waterworks/Console.Waterworks/Models/Command.cs new file mode 100644 index 0000000..db298b2 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Models/Command.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Models +{ + class Command + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs b/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs index e21051a..7be9596 100644 --- a/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs +++ b/Console.Waterworks/Console.Waterworks/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ -using System.Reflection; +using System.Resources; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -6,11 +7,11 @@ using System.Runtime.InteropServices; // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Console.Waterworks")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("Console.Waterworks is a Nuget package which helps you write command-based console programs in .Net.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Console.Waterworks")] -[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyCopyright("Copyright © 2017 Craig Oates")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -34,3 +35,5 @@ using System.Runtime.InteropServices; // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: NeutralResourcesLanguage("en-GB")] + diff --git a/Console.Waterworks/Console.Waterworks/Specialists/CoercionSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/CoercionSpecialist.cs new file mode 100644 index 0000000..2a119d9 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Specialists/CoercionSpecialist.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Specialists +{ + class CoercionSpecialist + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Specialists/CommandsSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/CommandsSpecialist.cs new file mode 100644 index 0000000..2d0bf79 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Specialists/CommandsSpecialist.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Specialists +{ + class CommandsSpecialist + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Specialists/ConsoleIOSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/ConsoleIOSpecialist.cs new file mode 100644 index 0000000..506bdb3 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Specialists/ConsoleIOSpecialist.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Specialists +{ + class ConsoleIOSpecialist + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Specialists/HelpSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/HelpSpecialist.cs new file mode 100644 index 0000000..aba3bab --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Specialists/HelpSpecialist.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Specialists +{ + class HelpSpecialist + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs b/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs new file mode 100644 index 0000000..d605ce2 --- /dev/null +++ b/Console.Waterworks/Console.Waterworks/Specialists/ProgramInfoSpecialist.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Console.Waterworks.Specialists +{ + class ProgramInfoSpecialist + { + } +} diff --git a/Console.Waterworks/Console.Waterworks/WaterWorksIcon.ico b/Console.Waterworks/Console.Waterworks/WaterWorksIcon.ico new file mode 100644 index 0000000..ca3bed5 Binary files /dev/null and b/Console.Waterworks/Console.Waterworks/WaterWorksIcon.ico differ