Enabling NuGetPackageVerifier

This commit is contained in:
Ajay Bhargav Baaskaran 2015-09-23 14:56:00 -07:00
parent 3f8b94b9bb
commit 9b1558dddd
1 changed files with 27 additions and 0 deletions

27
NuGetPackageVerifier.json Normal file
View File

@ -0,0 +1,27 @@
{
"adx": { // Packages written by the ADX team and that ship on NuGet.org
"rules": [
"AssemblyHasDocumentFileRule",
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
],
"packages": {
"Microsoft.AspNet.WebSockets.Client": { },
"Microsoft.AspNet.WebSockets.Protocol": { },
"Microsoft.AspNet.WebSockets.Server": { }
}
},
"Default": { // Ru les to run for packages not listed in any other set.
"rules": [
"AssemblyHasDocumentFileRule",
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
]
}
}