Enabled xml doc generation

This commit is contained in:
Ajay Bhargav Baaskaran 2016-03-03 12:15:50 -08:00
parent 5f153686e9
commit b62d90d7dc
3 changed files with 26 additions and 32 deletions

View File

@ -1,26 +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.Dnx.Watcher": { }, "dotnet-watch": { },
"Microsoft.Dnx.Watcher.Core": { } "Microsoft.DotNet.Watcher.Core": { }
} }
}, },
"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": "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
}, },
"dependencies": { "dependencies": {
"Microsoft.DotNet.ProjectModel": "1.0.0-*", "Microsoft.DotNet.ProjectModel": "1.0.0-*",

View File

@ -1,20 +1,22 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"emitEntryPoint": true, "emitEntryPoint": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk",
}, "nowarn": [ "CS1591" ],
"dependencies": { "xmlDoc": true
"Microsoft.DotNet.Watcher.Core": "1.0.0-*", },
"Microsoft.Extensions.CommandLineUtils": "1.0.0-*", "dependencies": {
"Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.DotNet.Watcher.Core": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*", "Microsoft.Extensions.CommandLineUtils": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*" "Microsoft.Extensions.Logging": "1.0.0-*",
}, "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"frameworks": { "Microsoft.NETCore.Platforms": "1.0.1-*"
"dnxcore50": { },
"imports": "portable-net451+win8" "frameworks": {
} "dnxcore50": {
"imports": "portable-net451+win8"
} }
}
} }