Enabled xml doc generation
This commit is contained in:
parent
d1a5ce82c0
commit
8eb737a459
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
/// Allows incoming POST request to override method type with type specified in header.
|
||||
/// </summary>
|
||||
/// <param name="builder"></param>
|
||||
/// <returns></returns>
|
||||
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.
|
||||
/// </summary>
|
||||
/// <param name="builder"></param>
|
||||
/// <param name="formFieldInput">Denotes the element that contains the name of the resulting method type.</param>
|
||||
/// <returns></returns>
|
||||
/// <param name="options">The <see cref="HttpMethodOverrideOptions"/>.</param>
|
||||
public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder, HttpMethodOverrideOptions options)
|
||||
{
|
||||
if (builder == null)
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue