Skip to content

Commit 7ad7153

Browse files
authored
Update README.md
Updated How to install
1 parent 9e0de84 commit 7ad7153

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,27 @@ SignalR.UnitTestingSupport.MSTest
1515
```
1616
#### 2. Using Packet Manager Console
1717
```
18-
Install-Package SignalR.UnitTestingSupport.NUnit -Version 1.0.1
19-
Install-Package SignalR.UnitTestingSupport.xUnit -Version 1.0.0
20-
Install-Package SignalR.UnitTestingSupport.MSTest -Version 1.0.0
18+
Install-Package SignalR.UnitTestingSupport.NUnit -Version 1.1.0
19+
Install-Package SignalR.UnitTestingSupport.xUnit -Version 1.1.1
20+
Install-Package SignalR.UnitTestingSupport.MSTest -Version 1.1.0
2121
```
2222
#### 3. Using .Net CLI
2323
```
24-
dotnet add package SignalR.UnitTestingSupport.NUnit --version 1.0.1
25-
dotnet add package SignalR.UnitTestingSupport.xUnit --version 1.0.0
26-
dotnet add package SignalR.UnitTestingSupport.MSTest --version 1.0.0
24+
dotnet add package SignalR.UnitTestingSupport.NUnit --version 1.1.0
25+
dotnet add package SignalR.UnitTestingSupport.xUnit --version 1.1.1
26+
dotnet add package SignalR.UnitTestingSupport.MSTest --version 1.1.0
2727
```
28-
## Important!
29-
Install ```NUnit3TestAdapter``` nuget for visual studio testing with NUnit in visual studio. https://www.nuget.org/packages/NUnit3TestAdapter/
28+
## Troubleshooting!
29+
Install ```NUnit3TestAdapter``` nuget for visual studio testing with NUnit in visual studio. https://www.nuget.org/packages/NUnit3TestAdapter/
3030

31-
Install ```xunit.runner.visualstudio``` nuget for visual studio testing with xUnit. https://www.nuget.org/packages/xunit.runner.visualstudio/
31+
Install ```xunit.runner.visualstudio``` nuget for visual studio testing with xUnit. https://www.nuget.org/packages/xunit.runner.visualstudio/
3232

33-
Install ```MSTest.TestAdapter``` nuget for visual studio testing with MSTest.
33+
Install ```MSTest.TestAdapter``` nuget for visual studio testing with MSTest.
3434
https://www.nuget.org/packages/MSTest.TestAdapter/
3535

36+
If your tests are not even detected, install ```Microsoft.Net.Test.Sdk``` nuget :)
37+
https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/
38+
3639
# How to use
3740
After you add nuget to your test project, SignalR_UnitTestingSupport is ready to use.
3841
Create test class for hub for example:

0 commit comments

Comments
 (0)