Skip to content
This repository was archived by the owner on Nov 9, 2018. It is now read-only.

Commit 70d03ff

Browse files
committed
Fix build warnings
1 parent 42bc96f commit 70d03ff

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/Microsoft.AspNetCore.Testing/project.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
22
"description": "Various helpers for writing tests that use DNX or ASP.NET.",
33
"version": "1.0.0-*",
4-
"compilationOptions": {
4+
"buildOptions": {
55
"warningsAsErrors": true,
66
"keyFile": "../../tools/Key.snk",
77
"nowarn": [
88
"CS1591"
99
],
1010
"xmlDoc": true
1111
},
12-
"repository": {
13-
"type": "git",
14-
"url": "git://github.com/aspnet/testing"
12+
"packOptions": {
13+
"repository": {
14+
"type": "git",
15+
"url": "git://github.com/aspnet/testing"
16+
}
1517
},
1618
"dependencies": {
1719
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",

test/Microsoft.AspNetCore.Testing.Tests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"version": "1.0.0-*",
3-
"compilationOptions": {
3+
"buildOptions": {
44
"warningsAsErrors": true,
55
"keyFile": "../../tools/Key.snk"
66
},
77
"dependencies": {
8+
"dotnet-test-xunit": "1.0.0-*",
89
"Microsoft.NETCore.Platforms": "1.0.1-*",
910
"Microsoft.AspNetCore.Testing": "1.0.0-*",
1011
"xunit": "2.1.0"
@@ -16,7 +17,6 @@
1617
"version": "1.0.0-*",
1718
"type": "platform"
1819
},
19-
"dotnet-test-xunit": "1.0.0-*",
2020
"System.Diagnostics.Process": "4.1.0-*"
2121
},
2222
"imports": [

test/Sample.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "1.0.0-*",
3-
"compilationOptions": {
3+
"buildOptions": {
44
"warningsAsErrors": true
55
},
66
"dependencies": {

0 commit comments

Comments
 (0)