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

Commit 42552c9

Browse files
committed
Quick fix: Remove project.json warning
- `resources` -> `resource` Example warning during `dnu build --quiet`: ``` ...\test\Microsoft.AspNet.Razor.Test\project.json(3,34): warning: Property "resources" is deprecated. It is replaced by "resource". ``` Primarily resulted in VS Error List noise. Above does not normally show up in `build.cmd` runs because `dnx . test` does not show build warnings.
1 parent e5e4a22 commit 42552c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.AspNet.Razor.Test/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-
"resources": "TestFiles/**/*",
3+
"resource": "TestFiles/**/*",
44
"dependencies": {
55
"Moq": "4.2.1312.1622",
66
"Microsoft.AspNet.Razor": "4.0.0-*",

0 commit comments

Comments
 (0)