diff --git a/Wiring-Console.Waterworks-into-Your-Project.md b/Wiring-Console.Waterworks-into-Your-Project.md index 8d765dc..2e491db 100644 --- a/Wiring-Console.Waterworks-into-Your-Project.md +++ b/Wiring-Console.Waterworks-into-Your-Project.md @@ -13,7 +13,7 @@ namespace Commands module ConsoleCommands open Console.Waterworks -let test () = "You have set-up Console.Waterworks" +let test () = "The console is working" ``` ### .Net Core Version @@ -25,7 +25,7 @@ namespace Commands module ConsoleCommands open Console.Waterworks -let test () = "You have set-up Console.Waterworks" +let test () = "The console is working" ``` With `ConsoleCommands` set-up, head back to "program.fs". We can now tell C.W. where to look for your `business logic`. To do this, add the following code to `main`; @@ -39,11 +39,11 @@ As an aside, you can name the "ConsoleCommands.fs" file anything you like. This With everything set-up, you can now run the program. When you do, it will await your input. If you type "test" into the prompt and press ENTER, you should see  "You have set-up Console.Waterworks". And with that, you are ready to start building out your "business logic". -SCREENSHOT OF CONSOLE WORKING. +![console-test-screenshot](attachments/console-test-screenshot.png) -If you change `false` to `true` in the `run` method (in `main`), the programs assembly information will appear at run-time. +If you change `true` to `false` in the `run` method (in `main`), the programs assembly information will not appear at run-time. -SCREENSHOT OF ASSEMBLY INFO SHOWING AT RUN-TIME. +![console screenshot with no assembly info](attachments/console-screenshot-no-assembly-info.png) ## Changing the Assembly Information for you Console Program diff --git a/attachments/console-screenshot-no-assembly-info.png b/attachments/console-screenshot-no-assembly-info.png new file mode 100644 index 0000000..d9750a6 Binary files /dev/null and b/attachments/console-screenshot-no-assembly-info.png differ diff --git a/attachments/console-test-screenshot.png b/attachments/console-test-screenshot.png new file mode 100644 index 0000000..d177527 Binary files /dev/null and b/attachments/console-test-screenshot.png differ