Skip to content

Commit c48cfb8

Browse files
Merge pull request #190 from BenjaminMichaelis/Updatev8.0ReadmeMD
Update Readme md violations
2 parents 8a27a0c + 22c0ee6 commit c48cfb8

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

README.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,35 @@ Ensure one of the following frameworks is installed at the latest version.
1515

1616
#### Local Copy
1717

18-
Open a console and change the working directory to the desired project location.
18+
Open a console and change the working directory to the desired project location.
19+
1920
```
20-
$ git clone https://github.com/IntelliTect/EssentialCSharp.git
21-
$ cd ./EssentialCSharp/
21+
git clone https://github.com/IntelliTect/EssentialCSharp.git
22+
cd ./EssentialCSharp/
2223
```
24+
2325
The source code is the most recently published edition of the book and this is the default branch following the clone command. However, you can switch to a different branch, v6.0 for example, with the command:
26+
2427
```
25-
$ git checkout v6.0
28+
git checkout v6.0
2629
```
2730

2831
### Build
2932

3033
**EssentialCSharp.sln** is the project's main solution, open this with Visual Studio and _Build All_.
31-
34+
3235
For those using the command line, build all the projects from the /EssentialCSharp/ directory with these commands:
36+
3337
```
34-
$ dotnet restore EssentialCSharp.sln
35-
$ dotnet build EssentialCSharp.sln
38+
dotnet restore EssentialCSharp.sln
39+
dotnet build EssentialCSharp.sln
3640
```
41+
3742
### Run
3843

3944
Navigate to an individual project in the /EssentialCSharp/src/(project)/ directory and run the code. The example below is for Chapter01 with the user entering _1.1_ to execute the listing number.
4045

41-
To run a listing you must run the the project that contains it. For example, to run Listing 1.1 you must navigate to Chapter01 in the
46+
To run a listing you must run the the project that contains it. For example, to run Listing 1.1 you must navigate to Chapter01 in the
4247
_Solution Explorer_ and set Chapter01 as the startup project. In Rider this can be done by locating the desired project in the _Explorer_ tab, right clicking on the project and clicking _run_.
4348

4449
```
@@ -56,13 +61,15 @@ Press any key to exit.
5661
$
5762
```
5863

59-
Documentation for .NET CLI tools can be found here:
64+
Documentation for .NET CLI tools can be found here:
6065

61-
https://docs.microsoft.com/en-us/dotnet/core/tools/
66+
<https://docs.microsoft.com/en-us/dotnet/core/tools/>
6267

6368
## Testing
69+
6470
To run all the tests, run `dotnet test` on the command prompt in the EssentialCSharp solution directory on your local computer.
6571

6672
## Build Status
73+
6774
[![Branch v8.0 - Windows - EssentialCSharp](https://github.com/IntelliTect/EssentialCSharp/actions/workflows/Branch%20v8.0%20-%20Windows.yml/badge.svg?branch=v8.0)](https://github.com/IntelliTect/EssentialCSharp/actions/workflows/Branch%20v8.0%20-%20Windows.yml)<br>
6875
[![Branch v8.0 - Linux - EssentialCSharp](https://github.com/IntelliTect/EssentialCSharp/actions/workflows/Branch%20v8.0%20-%20Linux.yml/badge.svg?branch=v8.0)](https://github.com/IntelliTect/EssentialCSharp/actions/workflows/Branch%20v8.0%20-%20Linux.yml)

0 commit comments

Comments
 (0)