diff --git a/SmoulderingBeachBallCLI/AssemblyInfo.fs b/SmoulderingBeachBallCLI/AssemblyInfo.fs index df772e6..1fedc7e 100644 --- a/SmoulderingBeachBallCLI/AssemblyInfo.fs +++ b/SmoulderingBeachBallCLI/AssemblyInfo.fs @@ -7,12 +7,12 @@ open System.Runtime.InteropServices // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[] +[] [] [] [] -[] -[] +[] +[] [] [] @@ -34,8 +34,8 @@ open System.Runtime.InteropServices // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [] -[] -[] +[] +[] do () \ No newline at end of file diff --git a/SmoulderingBeachBallCLI/ConsoleCommands.fs b/SmoulderingBeachBallCLI/ConsoleCommands.fs new file mode 100644 index 0000000..81dbc25 --- /dev/null +++ b/SmoulderingBeachBallCLI/ConsoleCommands.fs @@ -0,0 +1,6 @@ +namespace Commands + + module ConsoleCommands = + + let test() = "This program is working." + diff --git a/SmoulderingBeachBallCLI/Program.fs b/SmoulderingBeachBallCLI/Program.fs index 2bcf7f9..c43a2d1 100644 --- a/SmoulderingBeachBallCLI/Program.fs +++ b/SmoulderingBeachBallCLI/Program.fs @@ -1,7 +1,7 @@ -// Learn more about F# at http://fsharp.org -// See the 'F# Tutorial' project for more help. +open Console.Waterworks [] let main argv = - printfn "%A" argv + let liaison = new CW_Liaison () + liaison.Run ("Commands", true) 0 // return an integer exit code diff --git a/SmoulderingBeachBallCLI/SmoulderingBeachBallCLI.fsproj b/SmoulderingBeachBallCLI/SmoulderingBeachBallCLI.fsproj index cbbb1c4..1d40fe5 100644 --- a/SmoulderingBeachBallCLI/SmoulderingBeachBallCLI.fsproj +++ b/SmoulderingBeachBallCLI/SmoulderingBeachBallCLI.fsproj @@ -46,11 +46,15 @@ + + + ..\packages\Console.Waterworks.0.1.0.0-alpha1\lib\Console.Waterworks.dll + ..\packages\FSharp.Core.4.5.2\lib\net45\FSharp.Core.dll diff --git a/SmoulderingBeachBallCLI/packages.config b/SmoulderingBeachBallCLI/packages.config index d2de1a6..daebccc 100644 --- a/SmoulderingBeachBallCLI/packages.config +++ b/SmoulderingBeachBallCLI/packages.config @@ -1,5 +1,6 @@  + \ No newline at end of file