Fix more schema warnings in Mvc

This commit is contained in:
Pranav K 2016-05-18 18:25:04 -07:00
parent 74357b3ed8
commit 61883b5101
6 changed files with 16 additions and 39 deletions

View File

@ -27,11 +27,6 @@
]
}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
],
"packOptions": {
"repository": {
"type": "git",

View File

@ -40,10 +40,5 @@
"System.Text.Encoding.Extensions": "4.0.11-*"
}
}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
]
}
}

View File

@ -53,10 +53,5 @@
"System.Runtime.Loader": "4.0.0-*"
}
}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
]
}
}

View File

@ -46,10 +46,5 @@
"portable-net45+win8"
]
}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
]
}
}

View File

@ -1,12 +1,12 @@
{
"compile": [
"../Microsoft.AspNetCore.Mvc.Formatters.Xml.Test/XmlAssert.cs"
],
"buildOptions": {
"define": [
"__RemoveThisBitTo__GENERATE_BASELINES",
"FUNCTIONAL_TESTS"
],
"compile": {
"include": "../Microsoft.AspNetCore.Mvc.Formatters.Xml.Test/XmlAssert.cs"
},
"warningsAsErrors": true
},
"dependencies": {

View File

@ -2,14 +2,16 @@
"buildOptions": {
"preserveCompilationContext": true,
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
"keyFile": "../../tools/Key.snk",
"compile": {
"include": [
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileProvider.cs",
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileInfo.cs",
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileTrigger.cs",
"../Microsoft.AspNetCore.Mvc.ViewFeatures.Test/Internal/TestViewBufferScope.cs"
]
}
},
"compile": [
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileProvider.cs",
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileInfo.cs",
"../Microsoft.AspNetCore.Mvc.Razor.Host.Test/TestFileTrigger.cs",
"../Microsoft.AspNetCore.Mvc.ViewFeatures.Test/Internal/TestViewBufferScope.cs"
],
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
@ -53,10 +55,5 @@
"Moq": "4.2.1312.1622"
}
}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
]
}
}