From 61593d613fb462e3a0bfad53390a886eaf928384 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 24 Jul 2019 17:48:21 +0100 Subject: [PATCH] make minor corrections to Wiring C.W.C. into Your Proj. --- Wiring-Console.Waterworks.Core-into-Your-Project.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiring-Console.Waterworks.Core-into-Your-Project.md b/Wiring-Console.Waterworks.Core-into-Your-Project.md index 3e3e085..8228705 100644 --- a/Wiring-Console.Waterworks.Core-into-Your-Project.md +++ b/Wiring-Console.Waterworks.Core-into-Your-Project.md @@ -71,7 +71,7 @@ If all has gone well, your program should run (press F5) and when you enter "Tes ![successful c.w.c. set-up screenshot](attachments/successful-console-set-up.png) -Within the `Main` function is a method called `Run`, which takes two arguments. The first the name-space of the `ConsoleCommands` class and the second one is a `bool`. In the example above, I have used `true` but I could have used `false` if I wanted. The reason I used `true` is because I prefer my console programs to display its assembly information when I run it. If you prefer just the prompt, change the `true` variable to `false`. If all has gone well, you should see something similar to the screenshot below. +Within the `Main` function is a method called `Run`, which takes two arguments. The first is the name-space of the `ConsoleCommands` class and the second one is a `bool`. In the example above, I have used `true` but I could have used `false` if I wanted. The reason I used `true` is because I prefer my console programs to display its assembly information when I run it. If you prefer just the prompt, change the `true` variable to `false`. If all has gone well, you should see something similar to the screenshot below. ![assembly info screenshot](attachments/assembly-info-screenshot.png) @@ -83,5 +83,5 @@ I will not go into too much detail about changing a project's assembly informati The easiest way to get to the Assembly Information dialog box is as follows: 1. In "Solution Explorer", open the *right-click* menu on the project (I.E. your console project) you want to change, and then choose "Properties". -2. In the left column of the Properties window, *left-click* the "Application" tab. +2. In the left column of the "Properties" window, *left-click* the "Application" tab. 3. *Left-click* the button labelled "Assembly Information".