Enabled xml doc generation
This commit is contained in:
parent
497565a52c
commit
b5ff692dbf
|
|
@ -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.Server.WebListener": { },
|
"Microsoft.AspNetCore.Server.WebListener": { },
|
||||||
|
|
@ -16,12 +11,7 @@
|
||||||
},
|
},
|
||||||
"Default": { // Ru les to run for packages not listed in any other set.
|
"Default": { // Ru les to run for packages not listed in any other set.
|
||||||
"rules": [
|
"rules": [
|
||||||
"AssemblyHasDocumentFileRule",
|
"DefaultCompositeRule"
|
||||||
"AssemblyHasVersionAttributesRule",
|
|
||||||
"AssemblyHasServicingAttributeRule",
|
|
||||||
"AssemblyHasNeutralResourcesLanguageAttributeRule",
|
|
||||||
"SatellitePackageRule",
|
|
||||||
"StrictSemanticVersionValidationRule"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -9,7 +9,9 @@
|
||||||
"compilationOptions": {
|
"compilationOptions": {
|
||||||
"allowUnsafe": true,
|
"allowUnsafe": true,
|
||||||
"warningsAsErrors": true,
|
"warningsAsErrors": true,
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk",
|
||||||
|
"nowarn": [ "CS1591" ],
|
||||||
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": {},
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,6 @@ namespace Microsoft.Net.Http.Server
|
||||||
/// Generates a right-aligned hex string and returns the start offset.
|
/// Generates a right-aligned hex string and returns the start offset.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="size">Chunk size to be encoded</param>
|
/// <param name="size">Chunk size to be encoded</param>
|
||||||
/// <param name="offset">Out parameter where we store offset into buffer.</param>
|
|
||||||
/// <returns>A byte array with the header in int.</returns>
|
/// <returns>A byte array with the header in int.</returns>
|
||||||
internal static ArraySegment<byte> GetChunkHeader(int size)
|
internal static ArraySegment<byte> GetChunkHeader(int size)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -23,12 +23,20 @@
|
||||||
|
|
||||||
namespace Microsoft.Net.Http.Server
|
namespace Microsoft.Net.Http.Server
|
||||||
{
|
{
|
||||||
|
#if NET451
|
||||||
/// <devdoc>
|
/// <devdoc>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// Specifies the address families that an instance of the <see cref='System.Net.Sockets.Socket'/>
|
/// Specifies the address families that an instance of the <see cref="System.Net.Sockets.Socket"/>
|
||||||
/// class can use.
|
/// class can use.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </devdoc>
|
/// </devdoc>
|
||||||
|
#else
|
||||||
|
/// <devdoc>
|
||||||
|
/// <para>
|
||||||
|
/// Specifies the address families.
|
||||||
|
/// </para>
|
||||||
|
/// </devdoc>
|
||||||
|
#endif
|
||||||
internal enum AddressFamily
|
internal enum AddressFamily
|
||||||
{
|
{
|
||||||
/// <devdoc>
|
/// <devdoc>
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ namespace Microsoft.Net.Http.Server
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="scheme">http or https. Will be normalized to lower case.</param>
|
/// <param name="scheme">http or https. Will be normalized to lower case.</param>
|
||||||
/// <param name="host">+, *, IPv4, [IPv6], or a dns name. Http.Sys does not permit punycode (xn--), use Unicode instead.</param>
|
/// <param name="host">+, *, IPv4, [IPv6], or a dns name. Http.Sys does not permit punycode (xn--), use Unicode instead.</param>
|
||||||
/// <param name="port">If empty, the default port for the given scheme will be used (80 or 443).</param>
|
/// <param name="portValue">If empty, the default port for the given scheme will be used (80 or 443).</param>
|
||||||
/// <param name="path">Should start and end with a '/', though a missing trailing slash will be added. This value must be un-escaped.</param>
|
/// <param name="path">Should start and end with a '/', though a missing trailing slash will be added. This value must be un-escaped.</param>
|
||||||
public static UrlPrefix Create(string scheme, string host, int? portValue, string path)
|
public static UrlPrefix Create(string scheme, string host, int? portValue, string path)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@
|
||||||
"compilationOptions": {
|
"compilationOptions": {
|
||||||
"allowUnsafe": true,
|
"allowUnsafe": true,
|
||||||
"warningsAsErrors": true,
|
"warningsAsErrors": true,
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk",
|
||||||
|
"nowarn": [ "CS1591" ],
|
||||||
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": {},
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@
|
||||||
"compilationOptions": {
|
"compilationOptions": {
|
||||||
"allowUnsafe": true,
|
"allowUnsafe": true,
|
||||||
"warningsAsErrors": true,
|
"warningsAsErrors": true,
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk",
|
||||||
|
"nowarn": [ "CS1591" ],
|
||||||
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": {},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue