Enabled xml doc generation
This commit is contained in:
parent
72f8b04a33
commit
80ea4b9035
|
|
@ -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.Cors": { }
|
"Microsoft.AspNetCore.Cors": { }
|
||||||
|
|
@ -14,12 +9,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"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -36,7 +36,7 @@ namespace Microsoft.AspNetCore.Cors.Infrastructure
|
||||||
/// Looks up a policy using the <paramref name="policyName"/> and then evaluates the policy using the passed in
|
/// Looks up a policy using the <paramref name="policyName"/> and then evaluates the policy using the passed in
|
||||||
/// <paramref name="context"/>.
|
/// <paramref name="context"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="requestContext"></param>
|
/// <param name="context"></param>
|
||||||
/// <param name="policyName"></param>
|
/// <param name="policyName"></param>
|
||||||
/// <returns>A <see cref="CorsResult"/> which contains the result of policy evaluation and can be
|
/// <returns>A <see cref="CorsResult"/> which contains the result of policy evaluation and can be
|
||||||
/// used by the caller to set appropriate response headers.</returns>
|
/// used by the caller to set appropriate response headers.</returns>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,9 @@
|
||||||
},
|
},
|
||||||
"compilationOptions": {
|
"compilationOptions": {
|
||||||
"warningsAsErrors": true,
|
"warningsAsErrors": true,
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk",
|
||||||
|
"nowarn": [ "CS1591" ],
|
||||||
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",
|
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue