diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json
index cd22de67e9..bf2544859f 100644
--- a/NuGetPackageVerifier.json
+++ b/NuGetPackageVerifier.json
@@ -1,12 +1,7 @@
{
"adx": { // Packages written by the ADX team and that ship on NuGet.org
"rules": [
- "AssemblyHasDocumentFileRule",
- "AssemblyHasVersionAttributesRule",
- "AssemblyHasServicingAttributeRule",
- "AssemblyHasNeutralResourcesLanguageAttributeRule",
- "SatellitePackageRule",
- "StrictSemanticVersionValidationRule"
+ "AdxVerificationCompositeRule"
],
"packages": {
"Microsoft.AspNetCore.Cors": { }
@@ -14,12 +9,7 @@
},
"Default": { // Rules to run for packages not listed in any other set.
"rules": [
- "AssemblyHasDocumentFileRule",
- "AssemblyHasVersionAttributesRule",
- "AssemblyHasServicingAttributeRule",
- "AssemblyHasNeutralResourcesLanguageAttributeRule",
- "SatellitePackageRule",
- "StrictSemanticVersionValidationRule"
+ "DefaultCompositeRule"
]
}
}
\ No newline at end of file
diff --git a/src/Microsoft.AspNetCore.Cors/CorsService.cs b/src/Microsoft.AspNetCore.Cors/CorsService.cs
index 7e45c6b7ce..3f792e72af 100644
--- a/src/Microsoft.AspNetCore.Cors/CorsService.cs
+++ b/src/Microsoft.AspNetCore.Cors/CorsService.cs
@@ -36,7 +36,7 @@ namespace Microsoft.AspNetCore.Cors.Infrastructure
/// Looks up a policy using the and then evaluates the policy using the passed in
/// .
///
- ///
+ ///
///
/// A which contains the result of policy evaluation and can be
/// used by the caller to set appropriate response headers.
diff --git a/src/Microsoft.AspNetCore.Cors/project.json b/src/Microsoft.AspNetCore.Cors/project.json
index 3390787ad5..c25d5452dc 100644
--- a/src/Microsoft.AspNetCore.Cors/project.json
+++ b/src/Microsoft.AspNetCore.Cors/project.json
@@ -6,7 +6,9 @@
},
"compilationOptions": {
"warningsAsErrors": true,
- "keyFile": "../../tools/Key.snk"
+ "keyFile": "../../tools/Key.snk",
+ "nowarn": [ "CS1591" ],
+ "xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",