Enabled xml doc generation

This commit is contained in:
Ajay Bhargav Baaskaran 2016-02-17 12:27:23 -08:00
parent d1a5ce82c0
commit 8eb737a459
4 changed files with 9 additions and 17 deletions

View File

@ -1,12 +1,7 @@
{ {
"adx": { // Packages written by the ADX team and that ship on NuGet.org "adx": { // Packages written by the ADX team and that ship on NuGet.org
"rules": [ "rules": [
"AssemblyHasDocumentFileRule", "AdxVerificationCompositeRule"
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
], ],
"packages": { "packages": {
"Microsoft.AspNetCore.Buffering": { }, "Microsoft.AspNetCore.Buffering": { },
@ -15,12 +10,7 @@
}, },
"Default": { // Rules to run for packages not listed in any other set. "Default": { // Rules to run for packages not listed in any other set.
"rules": [ "rules": [
"AssemblyHasDocumentFileRule", "DefaultCompositeRule"
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
] ]
} }
} }

View File

@ -2,7 +2,9 @@
"version": "0.1.0-*", "version": "0.1.0-*",
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
}, },
"description": "ASP.NET middleware for buffering response bodies.", "description": "ASP.NET middleware for buffering response bodies.",
"repository": { "repository": {

View File

@ -13,7 +13,6 @@ namespace Microsoft.AspNetCore.Builder
/// Allows incoming POST request to override method type with type specified in header. /// Allows incoming POST request to override method type with type specified in header.
/// </summary> /// </summary>
/// <param name="builder"></param> /// <param name="builder"></param>
/// <returns></returns>
public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder) public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder)
{ {
if (builder == null) if (builder == null)
@ -28,8 +27,7 @@ namespace Microsoft.AspNetCore.Builder
/// Allows incoming POST request to override method type with type specified in form. /// Allows incoming POST request to override method type with type specified in form.
/// </summary> /// </summary>
/// <param name="builder"></param> /// <param name="builder"></param>
/// <param name="formFieldInput">Denotes the element that contains the name of the resulting method type.</param> /// <param name="options">The <see cref="HttpMethodOverrideOptions"/>.</param>
/// <returns></returns>
public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder, HttpMethodOverrideOptions options) public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder, HttpMethodOverrideOptions options)
{ {
if (builder == null) if (builder == null)

View File

@ -2,7 +2,9 @@
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
}, },
"description": "XForward and Method override middlewares for ASP.NET", "description": "XForward and Method override middlewares for ASP.NET",
"repository": { "repository": {