Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit ddba52e

Browse files
committed
Fix build warnings
1 parent 769ebb6 commit ddba52e

2 files changed

Lines changed: 16 additions & 8 deletions

File tree

src/Microsoft.AspNetCore.Razor.Tools/project.json

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
{
22
"version": "1.0.0-*",
33
"description": "TagHelper tooling for .NET Core CLI.",
4-
"repository": {
5-
"type": "git",
6-
"url": "git://github.com/AspNet/RazorTooling"
4+
"packOptions": {
5+
"repository": {
6+
"type": "git",
7+
"url": "git://github.com/AspNet/RazorTooling"
8+
}
79
},
8-
"compilationOptions": {
10+
"buildOptions": {
911
"outputName": "dotnet-razor-tooling",
1012
"keyFile": "../../tools/Key.snk",
1113
"warningsAsErrors": true,
1214
"emitEntryPoint": true,
13-
"nowarn": [ "CS1591" ],
15+
"nowarn": [
16+
"CS1591"
17+
],
1418
"xmlDoc": true
1519
},
1620
"dependencies": {
@@ -33,7 +37,10 @@
3337
"System.Diagnostics.Process": "4.1.0-*",
3438
"System.Runtime.Serialization.Primitives": "4.1.1-*"
3539
},
36-
"imports": [ "portable-net451+win8", "dnxcore50" ]
40+
"imports": [
41+
"portable-net451+win8",
42+
"dnxcore50"
43+
]
3744
},
3845
"net451": {}
3946
}

test/Microsoft.AspNetCore.Razor.Tools.Test/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"type": "platform"
99
},
1010
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-*",
11-
"dotnet-test-xunit": "1.0.0-*",
1211
"Microsoft.AspNetCore.Razor.Test.Sources": {
1312
"version": "1.0.0-*",
1413
"type": "build"
@@ -26,5 +25,7 @@
2625
]
2726
}
2827
},
29-
"dependencies": {}
28+
"dependencies": {
29+
"dotnet-test-xunit": "1.0.0-*"
30+
}
3031
}

0 commit comments

Comments
 (0)