This commit is contained in:
Ajay Bhargav Baaskaran 2016-02-19 12:25:51 -08:00
Родитель 497565a52c
Коммит b5ff692dbf
7 изменённых файлов: 21 добавлений и 18 удалений

Просмотреть файл

@ -1,12 +1,7 @@
{
"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.WebListener": { },
@ -16,12 +11,7 @@
},
"Default": { // Ru les to run for packages not listed in any other set.
"rules": [
"AssemblyHasDocumentFileRule",
"AssemblyHasVersionAttributesRule",
"AssemblyHasServicingAttributeRule",
"AssemblyHasNeutralResourcesLanguageAttributeRule",
"SatellitePackageRule",
"StrictSemanticVersionValidationRule"
"DefaultCompositeRule"
]
}
}

Просмотреть файл

@ -9,7 +9,9 @@
"compilationOptions": {
"allowUnsafe": true,
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
"keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
},
"frameworks": {
"net451": {},

Просмотреть файл

@ -88,7 +88,6 @@ namespace Microsoft.Net.Http.Server
/// Generates a right-aligned hex string and returns the start offset.
/// </summary>
/// <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>
internal static ArraySegment<byte> GetChunkHeader(int size)
{

Просмотреть файл

@ -23,12 +23,20 @@
namespace Microsoft.Net.Http.Server
{
#if NET451
/// <devdoc>
/// <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.
/// </para>
/// </devdoc>
#else
/// <devdoc>
/// <para>
/// Specifies the address families.
/// </para>
/// </devdoc>
#endif
internal enum AddressFamily
{
/// <devdoc>

Просмотреть файл

@ -62,7 +62,7 @@ namespace Microsoft.Net.Http.Server
/// </summary>
/// <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="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>
public static UrlPrefix Create(string scheme, string host, int? portValue, string path)
{

Просмотреть файл

@ -8,7 +8,9 @@
"compilationOptions": {
"allowUnsafe": true,
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
"keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
},
"frameworks": {
"net451": {},

Просмотреть файл

@ -7,7 +7,9 @@
"compilationOptions": {
"allowUnsafe": true,
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
"keyFile": "../../tools/Key.snk",
"nowarn": [ "CS1591" ],
"xmlDoc": true
},
"frameworks": {
"net451": {},