You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/core/testing/unit-testing-visual-basic-with-xunit.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ The following instructions provide the steps to create the test solution. See [C
38
38
* Run the following command:
39
39
40
40
```dotnetcli
41
-
dotnet new classlib -o PrimeService --lang VB
41
+
dotnet new classlib -o PrimeService -lang VB
42
42
```
43
43
44
44
The [`dotnet new classlib`](../tools/dotnet-new.md) command creates a new class library project in the *PrimeService* folder. The new class library will contain the code to be tested.
@@ -72,7 +72,7 @@ The following instructions provide the steps to create the test solution. See [C
72
72
* Create the *PrimeService.Tests* project by running the following command:
73
73
74
74
```dotnetcli
75
-
dotnet new xunit -o PrimeService.Tests
75
+
dotnet new xunit -o PrimeService.Tests -lang VB
76
76
```
77
77
78
78
* The preceding command:
@@ -108,7 +108,7 @@ cd unit-testing-using-dotnet-test
0 commit comments