Skip to content

Commit 92df9ec

Browse files
committed
Added needed references to NUnit in test project
Added references to the NUnit project and linked the shared library.
1 parent 309d0de commit 92df9ec

File tree

3 files changed

+3673
-277
lines changed

3 files changed

+3673
-277
lines changed

src/FluentAssertions.AspNetCore.Mvc/project.lock.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3702,7 +3702,7 @@
37023702
]
37033703
},
37043704
"runtime.native.System.Net.Http/4.0.1": {
3705-
"sha512": "nl6ine8h0r8sctNhQScY5DYLfeeUqa21P2enQ2wlAPgDlcAoOUlLh5ygmYIEUMYMe6jVCnKwPXoOVhcPFVMAAw==",
3705+
"sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
37063706
"type": "package",
37073707
"path": "runtime.native.System.Net.Http/4.0.1",
37083708
"files": [
@@ -5734,7 +5734,7 @@
57345734
]
57355735
},
57365736
"System.Reflection.Emit.Lightweight/4.0.1": {
5737-
"sha512": "2TNd5n15PvjTHk7yHTiyh2vm6aURaHbMS8eo9VOJd/x5EDdZRDohsLaLtqXtDPkr3DFgioaepBvPiRi/w6RPQA==",
5737+
"sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
57385738
"type": "package",
57395739
"path": "System.Reflection.Emit.Lightweight/4.0.1",
57405740
"files": [
@@ -6559,7 +6559,7 @@
65596559
]
65606560
},
65616561
"System.Security.Cryptography.Cng/4.2.0": {
6562-
"sha512": "DRU3mjP74SMNVDFLHoiIgOiGlw0X7zTPi6xn6+c4YQrGuvtUrRDSskBY4EYbmKJSqwICMLYZQUbRx2bk9yveTg==",
6562+
"sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
65636563
"type": "package",
65646564
"path": "System.Security.Cryptography.Cng/4.2.0",
65656565
"files": [
@@ -6585,7 +6585,7 @@
65856585
]
65866586
},
65876587
"System.Security.Cryptography.Csp/4.0.0": {
6588-
"sha512": "3JvceCa+M83ro2lyRrOTF0IZtehmJb1IuFEznX94sXbyMWioAG158j/cWapxsrikEXiFegb1ksCQX6kn9wtVwQ==",
6588+
"sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
65896589
"type": "package",
65906590
"path": "System.Security.Cryptography.Csp/4.0.0",
65916591
"files": [
@@ -6654,7 +6654,7 @@
66546654
]
66556655
},
66566656
"System.Security.Cryptography.OpenSsl/4.0.0": {
6657-
"sha512": "g+O296PHHTAF90Sh2ZrX8mVmbzQI/LgRDJMt89VEbhLq7fFt3Jd/zchUY1e4WtUi6rg0mnm6QGTidBmCesWjfA==",
6657+
"sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
66586658
"type": "package",
66596659
"path": "System.Security.Cryptography.OpenSsl/4.0.0",
66606660
"files": [
Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-*",
33

4-
"dependencies": {
5-
"NETStandard.Library": "1.6.0"
6-
},
4+
"dependencies": {
5+
"NETStandard.Library": "1.6.0",
6+
"NUnit": "3.4.1",
7+
"dotnet-test-nunit": "3.4.0-beta-1"
8+
},
9+
10+
"buildOptions": {
11+
"compile": {
12+
"include": [
13+
"..\\FluentAssertions.Mvc.Tests.Shared\\**\\*.cs"
14+
]
15+
}
16+
},
717

8-
"frameworks": {
9-
"netstandard1.6": {
10-
"imports": "dnxcore50"
18+
"testRunner": "nunit",
19+
20+
"frameworks": {
21+
"netcoreapp1.0": {
22+
"imports": [
23+
"netcoreapp1.0",
24+
"portable-net45+win8"
25+
],
26+
"dependencies": {
27+
"Microsoft.NETCore.App": {
28+
"version": "1.0.0-*",
29+
"type": "platform"
30+
}
31+
}
32+
}
1133
}
12-
}
1334
}

0 commit comments

Comments
 (0)