Enabling NuGetPackageVerifier

This commit is contained in:
Ajay Bhargav Baaskaran 2015-09-16 17:11:50 -07:00
parent 33a0f7a0db
commit a952b28d0f
1 changed files with 35 additions and 0 deletions

35
NuGetPackageVerifier.json Normal file
View File

@ -0,0 +1,35 @@
{
"adx": { // Packages written by the ADX team and that ship on NuGet.org
"rules": [
"AssemblyHasDocumentFileRule",
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
],
"packages": {
"Microsoft.AspNet.Razor": { },
"Microsoft.AspNet.Razor.Runtime": { },
"Microsoft.AspNet.Razor.Runtime.Precompilation": { }
}
},
"adx-nonshipping": { // Packages written by the ADX team but that don't ship on NuGet.org (thus, no need to scan anything in them)
"rules": [
// Don't run any rules for packages the ADX team creates but doesn't ship.
],
"packages": {
"Microsoft.AspNet.Razor.Test.Sources": { }
}
},
"Default": { // Rules to run for packages not listed in any other set.
"rules": [
"AssemblyHasDocumentFileRule",
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
]
}
}