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": {
|
"packOptions": {
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
||||||
|
|
@ -40,10 +40,5 @@
|
||||||
"System.Text.Encoding.Extensions": "4.0.11-*"
|
"System.Text.Encoding.Extensions": "4.0.11-*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"exclude": [
|
|
||||||
"wwwroot",
|
|
||||||
"node_modules",
|
|
||||||
"bower_components"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
@ -53,10 +53,5 @@
|
||||||
"System.Runtime.Loader": "4.0.0-*"
|
"System.Runtime.Loader": "4.0.0-*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"exclude": [
|
|
||||||
"wwwroot",
|
|
||||||
"node_modules",
|
|
||||||
"bower_components"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
@ -46,10 +46,5 @@
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"exclude": [
|
|
||||||
"wwwroot",
|
|
||||||
"node_modules",
|
|
||||||
"bower_components"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"compile": [
|
|
||||||
"../Microsoft.AspNetCore.Mvc.Formatters.Xml.Test/XmlAssert.cs"
|
|
||||||
],
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"define": [
|
"define": [
|
||||||
"__RemoveThisBitTo__GENERATE_BASELINES",
|
"__RemoveThisBitTo__GENERATE_BASELINES",
|
||||||
"FUNCTIONAL_TESTS"
|
"FUNCTIONAL_TESTS"
|
||||||
],
|
],
|
||||||
|
"compile": {
|
||||||
|
"include": "../Microsoft.AspNetCore.Mvc.Formatters.Xml.Test/XmlAssert.cs"
|
||||||
|
},
|
||||||
"warningsAsErrors": true
|
"warningsAsErrors": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,16 @@
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"preserveCompilationContext": true,
|
"preserveCompilationContext": true,
|
||||||
"warningsAsErrors": 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": {
|
"dependencies": {
|
||||||
"dotnet-test-xunit": "1.0.0-*",
|
"dotnet-test-xunit": "1.0.0-*",
|
||||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||||
|
|
@ -53,10 +55,5 @@
|
||||||
"Moq": "4.2.1312.1622"
|
"Moq": "4.2.1312.1622"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"exclude": [
|
|
||||||
"wwwroot",
|
|
||||||
"node_modules",
|
|
||||||
"bower_components"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue