diff --git a/DeathSocketCLI/Commands.fs b/DeathSocketCLI/Commands.fs new file mode 100644 index 0000000..884b0ff --- /dev/null +++ b/DeathSocketCLI/Commands.fs @@ -0,0 +1,5 @@ +namespace Commands + + module ConsoleCommands = + + let test () = "Death Socket is working." \ No newline at end of file diff --git a/DeathSocketCLI/DeathSocketCLI.fsproj b/DeathSocketCLI/DeathSocketCLI.fsproj index fc5caea..deb8fe3 100644 --- a/DeathSocketCLI/DeathSocketCLI.fsproj +++ b/DeathSocketCLI/DeathSocketCLI.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/DeathSocketCLI/Program.fs b/DeathSocketCLI/Program.fs index 2bcf7f9..a52984a 100644 --- a/DeathSocketCLI/Program.fs +++ b/DeathSocketCLI/Program.fs @@ -1,7 +1,10 @@ // 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 = CW_Liaison () + liaison.Run ("Commands", true) 0 // return an integer exit code diff --git a/DeathSocketCLI/packages.config b/DeathSocketCLI/packages.config index d2de1a6..daebccc 100644 --- a/DeathSocketCLI/packages.config +++ b/DeathSocketCLI/packages.config @@ -1,5 +1,6 @@  + \ No newline at end of file