diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index 9cc45712f0..0895735cea 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.Buffering": { }, @@ -15,12 +10,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.Buffering/project.json b/src/Microsoft.AspNetCore.Buffering/project.json index 6ea212875a..f2b16827c5 100644 --- a/src/Microsoft.AspNetCore.Buffering/project.json +++ b/src/Microsoft.AspNetCore.Buffering/project.json @@ -2,7 +2,9 @@ "version": "0.1.0-*", "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "description": "ASP.NET middleware for buffering response bodies.", "repository": { diff --git a/src/Microsoft.AspNetCore.HttpOverrides/HttpMethodOverrideExtensions.cs b/src/Microsoft.AspNetCore.HttpOverrides/HttpMethodOverrideExtensions.cs index 7ad3ecf31a..c33d3cceae 100644 --- a/src/Microsoft.AspNetCore.HttpOverrides/HttpMethodOverrideExtensions.cs +++ b/src/Microsoft.AspNetCore.HttpOverrides/HttpMethodOverrideExtensions.cs @@ -13,7 +13,6 @@ namespace Microsoft.AspNetCore.Builder /// Allows incoming POST request to override method type with type specified in header. /// /// - /// public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder) { if (builder == null) @@ -28,8 +27,7 @@ namespace Microsoft.AspNetCore.Builder /// Allows incoming POST request to override method type with type specified in form. /// /// - /// Denotes the element that contains the name of the resulting method type. - /// + /// The . public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder, HttpMethodOverrideOptions options) { if (builder == null) diff --git a/src/Microsoft.AspNetCore.HttpOverrides/project.json b/src/Microsoft.AspNetCore.HttpOverrides/project.json index a37a16f335..659a4da10f 100644 --- a/src/Microsoft.AspNetCore.HttpOverrides/project.json +++ b/src/Microsoft.AspNetCore.HttpOverrides/project.json @@ -2,7 +2,9 @@ "version": "1.0.0-*", "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "description": "XForward and Method override middlewares for ASP.NET", "repository": {