Enabling NuGetPackageVerifier
This commit is contained in:
parent
33a0f7a0db
commit
a952b28d0f
|
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue