Enabling NuGetPackageVerifier

This commit is contained in:
Ajay Bhargav Baaskaran 2015-09-22 16:06:18 -07:00
parent 22f22c0407
commit 7b697e8ec9
1 changed files with 25 additions and 0 deletions

25
NuGetPackageVerifier.json Normal file
View File

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