Browse files

Enabled xml doc generation

  • Loading branch information...
1 parent 795bbfc commit e14b86ebe0fc215629e3ae489fbdeeb94354d543 @ajaybhargavb ajaybhargavb committed Feb 19, 2016
View
17 NuGetPackageVerifier.json
@@ -1,25 +1,16 @@
{
"adx": { // Packages written by the ADX team and that ship on NuGet.org
"rules": [
- "AssemblyHasDocumentFileRule",
- "AssemblyHasVersionAttributesRule",
- "AssemblyHasServicingAttributeRule",
- "AssemblyHasNeutralResourcesLanguageAttributeRule",
- "SatellitePackageRule",
- "StrictSemanticVersionValidationRule"
+ "AdxVerificationCompositeRule"
],
"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.
"rules": [
- "AssemblyHasDocumentFileRule",
- "AssemblyHasVersionAttributesRule",
- "AssemblyHasServicingAttributeRule",
- "AssemblyHasNeutralResourcesLanguageAttributeRule",
- "SatellitePackageRule",
- "StrictSemanticVersionValidationRule"
+ "DefaultCompositeRule"
]
}
}
View
4 src/Microsoft.AspNetCore.Server.Kestrel.Https/project.json
@@ -1,7 +1,9 @@
{
"version": "1.0.0-*",
"compilationOptions": {
- "keyFile": "../../tools/Key.snk"
+ "keyFile": "../../tools/Key.snk",
+ "nowarn": [ "CS1591" ],
+ "xmlDoc": true
},
"description": "Adds HTTPS support to Kestrel",
"repository": {
View
4 src/Microsoft.AspNetCore.Server.Kestrel/project.json
@@ -51,7 +51,9 @@
},
"compilationOptions": {
"allowUnsafe": true,
- "keyFile": "../../tools/Key.snk"
+ "keyFile": "../../tools/Key.snk",
+ "nowarn": [ "CS1591" ],
+ "xmlDoc": true
},
"packInclude": {
"/": "../../content/thirdpartynotices.txt",

0 comments on commit e14b86e

Please sign in to comment.