Fix more schema warnings in Mvc
This commit is contained in:
parent
74357b3ed8
commit
61883b5101
|
|
@ -27,11 +27,6 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"wwwroot",
|
||||
"node_modules",
|
||||
"bower_components"
|
||||
],
|
||||
"packOptions": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
|
|
@ -40,10 +40,5 @@
|
|||
"System.Text.Encoding.Extensions": "4.0.11-*"
|
||||
}
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"wwwroot",
|
||||
"node_modules",
|
||||
"bower_components"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -53,10 +53,5 @@
|
|||
"System.Runtime.Loader": "4.0.0-*"
|
||||
}
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"wwwroot",
|
||||
"node_modules",
|
||||
"bower_components"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -46,10 +46,5 @@
|
|||
"portable-net45+win8"
|
||||
]
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"wwwroot",
|
||||
"node_modules",
|
||||
"bower_components"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue