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: README.md
+31-3Lines changed: 31 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,43 @@
1
-
#Project Description
1
+
#Project Description
2
2
3
3
FluentAssertions MVC is a set of MVC focused assertions and helper extensions to the excellent [FluentAssertions][fa-home] library.
4
4
5
5
## Installation
6
6
7
-
For MVC 4 or 5 projects, add the [MVC 4][nuget-mvc4] NuGet package to your unit test project:
7
+
Follow the instructions for the version of MVC you are using. For [MVC 3](#MVC3) and [4](#MVC4) just add the NuGet package. [MVC 5](#MVC5) also requires a binding redirect.
8
+
9
+
<aname="MVC5"></a>
10
+
### MVC 5
11
+
12
+
Add the [MVC 4][nuget-mvc4] NuGet package to your unit test project:
13
+
14
+
````
15
+
PM> Install-Package FluentAssertions.Mvc4
16
+
````
17
+
18
+
And add the following binding redirect to you test project's ````app.config```` file:
0 commit comments