Skip to content

Commit d06b58e

Browse files
committed
Update command-lines.md
1 parent 8a6ae53 commit d06b58e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/command-lines.md

+14
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,16 @@ To set the two environment variables at the command prompt or terminal.
8686
On Windows:
8787
```shell
8888
setx MY_SQL_USR <your_user_name>
89+
```
90+
```shell
8991
setx MY_SQL_PWD <your_password>
9092
```
9193

9294
On macOS and Linux:
9395
```shell
9496
export MY_SQL_USR=<your_user_name>
97+
```
98+
```shell
9599
export MY_SQL_PWD=<your_password>
96100
```
97101

@@ -122,6 +126,8 @@ dotnet test -- Playwright.BrowserName=chromium Playwright.LaunchOptions.Channel=
122126
To add a new **xUnit Test Project [C#]** / `xunit` project named `Northwind.WebUITests` to the `MatureWeb` solution. In the `MatureWeb` folder, enter the following commands:
123127
```shell
124128
dotnet new xunit -o Northwind.WebUITests
129+
```
130+
```shell
125131
dotnet sln add Northwind.WebUITests
126132
```
127133

@@ -172,6 +178,8 @@ docker run --rm -it -p 8000:8080 mcr.microsoft.com/dotnet/samples:aspnetapp
172178
In the `MatureWeb` directory:
173179
```shell
174180
dotnet new webapi --use-controllers -o Northwind.WebApi
181+
```
182+
```shell
175183
dotnet sln add Northwind.WebApi
176184
```
177185

@@ -195,6 +203,8 @@ dotnet user-jwts print f2d14dfa --show-all
195203
In the `MatureWeb` directory:
196204
```shell
197205
dotnet new webapi --use-controllers -o Northwind.OData
206+
```
207+
```shell
198208
dotnet sln add Northwind.OData
199209
```
200210

@@ -203,6 +213,8 @@ dotnet sln add Northwind.OData
203213
In the `MatureWeb` directory:
204214
```shell
205215
dotnet new web -o Northwind.FastEndpoints
216+
```
217+
```shell
206218
dotnet sln add Northwind.FastEndpoints
207219
```
208220

@@ -231,6 +243,8 @@ dotnet ef database update 0
231243
To add a new xUnit project to the `MatureWeb` solution:
232244
```shell
233245
dotnet new xunit -o BusinessLogicUnitTests
246+
```
247+
```shell
234248
dotnet sln add BusinessLogicUnitTests
235249
```
236250
To install the dev tunnel CLI...

0 commit comments

Comments
 (0)