make minor corrections to Wiring C.W.C. into Your Proj.

master
Craig Oates 5 years ago
parent
commit
61593d613f
  1. 4
      Wiring-Console.Waterworks.Core-into-Your-Project.md

4
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".

Loading…
Cancel
Save