Enabled xml doc generation

This commit is contained in:
Ajay Bhargav Baaskaran 2016-02-18 16:27:55 -08:00
parent 795bbfce69
commit e14b86ebe0
3 changed files with 10 additions and 15 deletions

View File

@ -1,25 +1,16 @@
{ {
"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.Server.Kestrel": { } "Microsoft.AspNetCore.Server.Kestrel": { },
"Microsoft.AspNetCore.Server.Kestrel.Https": { }
} }
}, },
"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

@ -1,7 +1,9 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "compilationOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
}, },
"description": "Adds HTTPS support to Kestrel", "description": "Adds HTTPS support to Kestrel",
"repository": { "repository": {

View File

@ -51,7 +51,9 @@
}, },
"compilationOptions": { "compilationOptions": {
"allowUnsafe": true, "allowUnsafe": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
}, },
"packInclude": { "packInclude": {
"/": "../../content/thirdpartynotices.txt", "/": "../../content/thirdpartynotices.txt",