Skip to content

Commit b8161cc

Browse files
committed
updated with Git commands
1 parent b59c907 commit b8161cc

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

Instructions/Labs/LAB_AK_03_develop_code_features.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,28 @@ You need to download the existing application, extract the code files, and then
5555

5656
Use the following steps to set up the library application:
5757

58-
1. Open a command terminal and then run the following command:
58+
1. Open a command terminal and then run the following commands:
59+
60+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
5961

6062
```bash
63+
6164
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
65+
66+
```
67+
68+
To ensure that Git is configured to use your name and email address, update the following commands with your information, and then run the commands:
69+
70+
```bash
71+
72+
git config --global user.name "John Doe"
73+
74+
```
75+
76+
```bash
77+
78+
git config --global user.email [email protected]
79+
6280
```
6381

6482
1. Open a browser window in your lab environment.

0 commit comments

Comments
 (0)