diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index 025db473a4..aedb97d440 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -1,18 +1,14 @@ { "adx": { // Packages written by the ADX team and that ship on NuGet.org "rules": [ - "AssemblyHasDocumentFileRule", - "AssemblyHasVersionAttributesRule", - "AssemblyHasServicingAttributeRule", - "AssemblyHasNeutralResourcesLanguageAttributeRule", - "SatellitePackageRule", - "StrictSemanticVersionValidationRule" + "AdxVerificationCompositeRule" ], "packages": { "Microsoft.AspNetCore.Diagnostics": { }, "Microsoft.AspNetCore.Diagnostics.Abstractions": { }, "Microsoft.AspNetCore.Diagnostics.Elm": { }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": { } + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": { }, + "Microsoft.AspNetCore.MiddlewareAnalysis": { } } }, "adx-nonshipping": { @@ -23,12 +19,7 @@ }, "Default": { // Rules to run for packages not listed in any other set. "rules": [ - "AssemblyHasDocumentFileRule", - "AssemblyHasVersionAttributesRule", - "AssemblyHasServicingAttributeRule", - "AssemblyHasNeutralResourcesLanguageAttributeRule", - "SatellitePackageRule", - "StrictSemanticVersionValidationRule" + "DefaultCompositeRule" ] } } \ No newline at end of file diff --git a/src/Microsoft.AspNetCore.Diagnostics.Abstractions/project.json b/src/Microsoft.AspNetCore.Diagnostics.Abstractions/project.json index 22d1c9661f..c883f68b5b 100644 --- a/src/Microsoft.AspNetCore.Diagnostics.Abstractions/project.json +++ b/src/Microsoft.AspNetCore.Diagnostics.Abstractions/project.json @@ -7,7 +7,9 @@ }, "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "frameworks": { "net451": {}, diff --git a/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmOptions.cs b/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmOptions.cs index c395765e1b..3a9038cc4e 100644 --- a/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmOptions.cs +++ b/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmOptions.cs @@ -19,7 +19,7 @@ namespace Microsoft.AspNetCore.Diagnostics.Elm /// /// Determines whether log statements should be logged based on the name of the logger - /// and the of the message. + /// and the of the message. /// public Func Filter { get; set; } = (name, level) => true; } diff --git a/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmStore.cs b/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmStore.cs index 9c5ff2de7e..c71dedec09 100644 --- a/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmStore.cs +++ b/src/Microsoft.AspNetCore.Diagnostics.Elm/ElmStore.cs @@ -33,7 +33,7 @@ namespace Microsoft.AspNetCore.Diagnostics.Elm /// /// Adds a new to the store. /// - /// The context to be added to the store. + /// The to be added to the store. public void AddActivity(ActivityContext activity) { if (activity == null) diff --git a/src/Microsoft.AspNetCore.Diagnostics.Elm/project.json b/src/Microsoft.AspNetCore.Diagnostics.Elm/project.json index 4b83a487b9..c155df3488 100644 --- a/src/Microsoft.AspNetCore.Diagnostics.Elm/project.json +++ b/src/Microsoft.AspNetCore.Diagnostics.Elm/project.json @@ -3,7 +3,9 @@ "description": "ASP.NET 5 Middleware to capture and display the request logs.", "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "repository": { "type": "git", diff --git a/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/project.json b/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/project.json index 2a90943cc1..1fb8e917f3 100644 --- a/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/project.json +++ b/src/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/project.json @@ -7,7 +7,9 @@ }, "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "dependencies": { "Microsoft.AspNetCore.Diagnostics": "1.0.0-*", diff --git a/src/Microsoft.AspNetCore.Diagnostics/DeveloperExceptionPage/DeveloperExceptionPageMiddleware.cs b/src/Microsoft.AspNetCore.Diagnostics/DeveloperExceptionPage/DeveloperExceptionPageMiddleware.cs index 8e42e6ef92..af231a3b24 100644 --- a/src/Microsoft.AspNetCore.Diagnostics/DeveloperExceptionPage/DeveloperExceptionPageMiddleware.cs +++ b/src/Microsoft.AspNetCore.Diagnostics/DeveloperExceptionPage/DeveloperExceptionPageMiddleware.cs @@ -37,6 +37,9 @@ namespace Microsoft.AspNetCore.Diagnostics /// /// /// + /// + /// + /// public DeveloperExceptionPageMiddleware( RequestDelegate next, IOptions options, diff --git a/src/Microsoft.AspNetCore.Diagnostics/RuntimeInfo/RuntimeInfoMiddleware.cs b/src/Microsoft.AspNetCore.Diagnostics/RuntimeInfo/RuntimeInfoMiddleware.cs index 518ca33efe..ed2b887701 100644 --- a/src/Microsoft.AspNetCore.Diagnostics/RuntimeInfo/RuntimeInfoMiddleware.cs +++ b/src/Microsoft.AspNetCore.Diagnostics/RuntimeInfo/RuntimeInfoMiddleware.cs @@ -25,6 +25,7 @@ namespace Microsoft.AspNetCore.Diagnostics /// /// /// + /// public RuntimeInfoMiddleware( RequestDelegate next, IOptions options, diff --git a/src/Microsoft.AspNetCore.Diagnostics/Views/BaseView.cs b/src/Microsoft.AspNetCore.Diagnostics/Views/BaseView.cs index fc811bdb14..781a61ea43 100644 --- a/src/Microsoft.AspNetCore.Diagnostics/Views/BaseView.cs +++ b/src/Microsoft.AspNetCore.Diagnostics/Views/BaseView.cs @@ -285,6 +285,7 @@ namespace Microsoft.AspNetCore.Diagnostics.Views /// /// Writes the specified without HTML encoding to . /// + /// The instance to write to. /// The to write. protected void WriteLiteralTo(TextWriter writer, string value) { diff --git a/src/Microsoft.AspNetCore.Diagnostics/project.json b/src/Microsoft.AspNetCore.Diagnostics/project.json index ebaf53ca7e..95264e2bfa 100644 --- a/src/Microsoft.AspNetCore.Diagnostics/project.json +++ b/src/Microsoft.AspNetCore.Diagnostics/project.json @@ -3,7 +3,9 @@ "description": "ASP.NET 5 Middleware for exception handling, exception display pages, and diagnostics information.", "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "repository": { "type": "git", diff --git a/src/Microsoft.AspNetCore.MiddlewareAnalysis/project.json b/src/Microsoft.AspNetCore.MiddlewareAnalysis/project.json index 25ce87744e..69dd7e5264 100644 --- a/src/Microsoft.AspNetCore.MiddlewareAnalysis/project.json +++ b/src/Microsoft.AspNetCore.MiddlewareAnalysis/project.json @@ -3,7 +3,9 @@ "description": "ASP.NET 5 Middleware for analyzing middleware in the request pipeline.", "compilationOptions": { "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" + "keyFile": "../../tools/Key.snk", + "nowarn": [ "CS1591" ], + "xmlDoc": true }, "repository": { "type": "git",