From 42552c982d374014fb8be145d363e19a24ac54b5 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Tue, 5 May 2015 16:07:24 -0700 Subject: [PATCH] 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. --- test/Microsoft.AspNet.Razor.Test/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Razor.Test/project.json b/test/Microsoft.AspNet.Razor.Test/project.json index 5787ea0040..7462dd81ba 100644 --- a/test/Microsoft.AspNet.Razor.Test/project.json +++ b/test/Microsoft.AspNet.Razor.Test/project.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "resources": "TestFiles/**/*", + "resource": "TestFiles/**/*", "dependencies": { "Moq": "4.2.1312.1622", "Microsoft.AspNet.Razor": "4.0.0-*",