From 36b6d6bfffe8e4994820109636af96cb9e6f39cb Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Tue, 9 Jun 2015 09:00:37 -0700 Subject: [PATCH] Fixes issues with the System.Net.Http tests * Tests were not running because the directories were not named properly. * Rename test project to match the correct name. * Fix typo in resource strings. --- src/System.Net.Http/System.Net.Http.sln | 2 +- .../Fakes/HttpClientHandler.cs | 0 .../Headers/AuthenticationHeaderValueTest.cs | 2 +- .../Headers/ByteArrayHeaderParserTest.cs | 2 +- .../Headers/CacheControlHeaderParserTest.cs | 2 +- .../Headers/CacheControlHeaderValueTest.cs | 2 +- .../ContentDispositionHeaderValueTest.cs | 3 +- .../Headers/ContentRangeHeaderValueTest.cs | 2 +- .../Headers/DateHeaderParserTest.cs | 2 +- .../Headers/EntityTagHeaderValueTest.cs | 2 +- .../AuthenticationParserTest.cs | 2 +- .../ContentRangeParserTest.cs | 2 +- .../EntityTagParserTest.cs | 2 +- .../GenericHeaderParserTest/HostParserTest.cs | 3 +- .../MailAddressParserTest.cs | 2 +- .../NameValueParserTest.cs | 2 +- .../NameValueWithParametersParserTest.cs | 2 +- .../ProductParserTest.cs | 2 +- .../RangeConditionParserTest.cs | 2 +- .../RangeParserTest.cs | 2 +- .../RetryConditionParserTest.cs | 2 +- .../StringWithQualityParserTest.cs | 2 +- .../TokenListParserTest.cs | 2 +- .../GenericHeaderParserTest/ViaParserTest.cs | 2 +- .../WarningParserTest.cs | 4 +- .../Headers/HeaderUtilitiesTest.cs | 2 +- .../Headers/HttpContentHeadersTest.cs | 2 +- .../Headers/HttpHeaderValueCollectionTest.cs | 2 +- .../Headers/HttpHeadersTest.cs | 2 +- .../Headers/HttpRequestHeadersTest.cs | 2 +- .../Headers/HttpResponseHeadersTest.cs | 3 +- .../Headers/Int32NumberHeaderParserTest.cs | 2 +- .../Headers/Int64NumberHeaderParserTest.cs | 2 +- .../Headers/MediaTypeHeaderParserTest.cs | 2 +- .../Headers/MediaTypeHeaderValueTest.cs | 2 +- .../MediaTypeWithQualityHeaderValueTest.cs | 2 +- .../Headers/NameValueHeaderValueTest.cs | 2 +- .../NameValueWithParametersHeaderValueTest.cs | 2 +- .../Headers/ObjectCollectionTest.cs | 2 +- .../Headers/ProductHeaderValueTest.cs | 2 +- .../Headers/ProductInfoHeaderParserTest.cs | 2 +- .../Headers/ProductInfoHeaderValueTest.cs | 2 +- .../Headers/RangeConditionHeaderValueTest.cs | 2 +- .../Headers/RangeHeaderValueTest.cs | 2 +- .../Headers/RangeItemHeaderValueTest.cs | 2 +- .../Headers/RetryConditionHeaderValueTest.cs | 2 +- .../StringWithQualityHeaderValueTest.cs | 2 +- .../Headers/TimeSpanHeaderParserTest.cs | 2 +- .../Headers/TransferCodingHeaderParserTest.cs | 2 +- .../Headers/TransferCodingHeaderValueTest.cs | 2 +- ...ransferCodingWithQualityHeaderValueTest.cs | 2 +- .../Headers/UriHeaderParserTest.cs | 3 +- .../Headers/ViaHeaderValueTest.cs | 2 +- .../Headers/WarningHeaderValueTest.cs | 6 +- .../tests/{UnitTests => }/HttpContentTest.cs | 2 +- .../{UnitTests => }/HttpRuleParserTest.cs | 2 +- .../tests/{UnitTests => }/MockContent.cs | 2 +- ...ts.csproj => System.Net.Http.Tests.csproj} | 175 ++- .../tests/{UnitTests => }/project.json | 3 +- src/System.Net.Http/tests/project.lock.json | 1399 +++++++++++++++++ 60 files changed, 1556 insertions(+), 143 deletions(-) rename src/System.Net.Http/tests/{UnitTests => }/Fakes/HttpClientHandler.cs (100%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/AuthenticationHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ByteArrayHeaderParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/CacheControlHeaderParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/CacheControlHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ContentDispositionHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ContentRangeHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/DateHeaderParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/EntityTagHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/EntityTagParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/HostParserTest.cs (97%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/MailAddressParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/NameValueParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/ProductParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/RangeParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/TokenListParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/ViaParserTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/GenericHeaderParserTest/WarningParserTest.cs (96%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HeaderUtilitiesTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HttpContentHeadersTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HttpHeaderValueCollectionTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HttpHeadersTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HttpRequestHeadersTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/HttpResponseHeadersTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/Int32NumberHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/Int64NumberHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/MediaTypeHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/MediaTypeHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/MediaTypeWithQualityHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/NameValueHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/NameValueWithParametersHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ObjectCollectionTest.cs (97%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ProductHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ProductInfoHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ProductInfoHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/RangeConditionHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/RangeHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/RangeItemHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/RetryConditionHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/StringWithQualityHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/TimeSpanHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/TransferCodingHeaderParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/TransferCodingHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/TransferCodingWithQualityHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/UriHeaderParserTest.cs (97%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/ViaHeaderValueTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/Headers/WarningHeaderValueTest.cs (98%) rename src/System.Net.Http/tests/{UnitTests => }/HttpContentTest.cs (97%) rename src/System.Net.Http/tests/{UnitTests => }/HttpRuleParserTest.cs (99%) rename src/System.Net.Http/tests/{UnitTests => }/MockContent.cs (99%) rename src/System.Net.Http/tests/{UnitTests/System.Net.Http.Unit.Tests.csproj => System.Net.Http.Tests.csproj} (63%) rename src/System.Net.Http/tests/{UnitTests => }/project.json (82%) create mode 100644 src/System.Net.Http/tests/project.lock.json diff --git a/src/System.Net.Http/System.Net.Http.sln b/src/System.Net.Http/System.Net.Http.sln index 12422e59bb40..8453dc04e7ce 100644 --- a/src/System.Net.Http/System.Net.Http.sln +++ b/src/System.Net.Http/System.Net.Http.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.22816.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Net.Http.UnitTests", "tests\UnitTests\System.Net.Http.Unit.Tests.csproj", "{5F9C3C9F-652E-461E-B2D6-85D264F5A733}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Net.Http.Tests", "tests\System.Net.Http.Tests.csproj", "{5F9C3C9F-652E-461E-B2D6-85D264F5A733}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/System.Net.Http/tests/UnitTests/Fakes/HttpClientHandler.cs b/src/System.Net.Http/tests/Fakes/HttpClientHandler.cs similarity index 100% rename from src/System.Net.Http/tests/UnitTests/Fakes/HttpClientHandler.cs rename to src/System.Net.Http/tests/Fakes/HttpClientHandler.cs diff --git a/src/System.Net.Http/tests/UnitTests/Headers/AuthenticationHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/AuthenticationHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/AuthenticationHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/AuthenticationHeaderValueTest.cs index eb4d08fb849f..89395a53e571 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/AuthenticationHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/AuthenticationHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class AuthenticationHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ByteArrayHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/ByteArrayHeaderParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/ByteArrayHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/ByteArrayHeaderParserTest.cs index 8b32038007d3..d8c6828d8172 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ByteArrayHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/ByteArrayHeaderParserTest.cs @@ -8,7 +8,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ByteArrayHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/CacheControlHeaderParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/CacheControlHeaderParserTest.cs index 45ee5cdd4ff9..76317268bb13 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/CacheControlHeaderParserTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class CacheControlHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/CacheControlHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/CacheControlHeaderValueTest.cs index 22894de7f8aa..00340b9511ca 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/CacheControlHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class CacheControlHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ContentDispositionHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/ContentDispositionHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ContentDispositionHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/ContentDispositionHeaderValueTest.cs index 55a3b5374e88..8bd094f874b9 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ContentDispositionHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/ContentDispositionHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ContentDispositionHeaderValueTest { @@ -203,6 +203,7 @@ public void FileNameStar_NeedsEncoding_EncodedAndDecodedCorrectly() Assert.Null(contentDisposition.FileNameStar); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void FileNameStar_UnknownOrBadEncoding_PropertyFails() { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ContentRangeHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/ContentRangeHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ContentRangeHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/ContentRangeHeaderValueTest.cs index 38df662dbb6a..ff0a342798cc 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ContentRangeHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/ContentRangeHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ContentRangeHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/DateHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/DateHeaderParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/DateHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/DateHeaderParserTest.cs index 1d2a1dae949d..ec6f24e80f37 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/DateHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/DateHeaderParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class DateHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/EntityTagHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/EntityTagHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/EntityTagHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/EntityTagHeaderValueTest.cs index 70074a466020..d51fee955fc0 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/EntityTagHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/EntityTagHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class EntityTagHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs index ccfb423e4860..fd2fef8b5d64 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/AuthenticationParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class AuthenticationParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs index 019d387752d7..7b8f4aec4d78 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ContentRangeParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ContentRangeParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs index fc5015d62bc9..a8c45b7c22ee 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/EntityTagParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class EntityTagParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/HostParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/HostParserTest.cs similarity index 97% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/HostParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/HostParserTest.cs index 58f42a8ef5cc..2cef23924f3e 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/HostParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/HostParserTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HostParserTest { @@ -17,6 +17,7 @@ public void Properties_ReadValues_MatchExpectation() Assert.Equal(StringComparer.OrdinalIgnoreCase, parser.Comparer); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfValidValueStrings_ParsedCorrectly() { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs index 49bf2814e855..80771556b4bd 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/MailAddressParserTest.cs @@ -10,7 +10,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class MailAddressParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueParserTest.cs index 3e1b13b11fde..2065ca904bd7 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class NameValueParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs index 779a5aa06e0e..05f8a2307590 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/NameValueWithParametersParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class NameValueWithParametersParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ProductParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ProductParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ProductParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ProductParserTest.cs index 07298286de14..3f16db3a33a6 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ProductParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ProductParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ProductParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs index b51e98c8a10e..50433e329c62 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeConditionParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RangeConditionParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeParserTest.cs index abb8df3c4007..216598c21c6b 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RangeParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RangeParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RangeParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs index 3735c8ab26fc..265ddb4013e5 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/RetryConditionParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RetryConditionParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs index 74dfedec5734..0ab3a428e568 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/StringWithQualityParserTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class StringWithQualityParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/TokenListParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/TokenListParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/TokenListParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/TokenListParserTest.cs index 7d394e3fba25..8a637e314e75 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/TokenListParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/TokenListParserTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class TokenListParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ViaParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ViaParserTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ViaParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ViaParserTest.cs index 9b8473613970..4a16600745f9 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/ViaParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/ViaParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ViaParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/WarningParserTest.cs b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/WarningParserTest.cs similarity index 96% rename from src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/WarningParserTest.cs rename to src/System.Net.Http/tests/Headers/GenericHeaderParserTest/WarningParserTest.cs index a12f687af586..3852ace77c32 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/GenericHeaderParserTest/WarningParserTest.cs +++ b/src/System.Net.Http/tests/Headers/GenericHeaderParserTest/WarningParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class WarningParserTest { @@ -25,6 +25,7 @@ public void Properties_ReadValues_MatchExpectation() Assert.Null(parser.Comparer); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfValidValueStrings_ParsedCorrectly() { @@ -46,6 +47,7 @@ public void TryParse_SetOfValidValueStrings_ParsedCorrectly() CheckValidParsedValue(" ,,", 0, null, 4); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfInvalidValueStrings_ReturnsFalse() { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HeaderUtilitiesTest.cs b/src/System.Net.Http/tests/Headers/HeaderUtilitiesTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HeaderUtilitiesTest.cs rename to src/System.Net.Http/tests/Headers/HeaderUtilitiesTest.cs index c85170f66544..ff62c167ffd2 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HeaderUtilitiesTest.cs +++ b/src/System.Net.Http/tests/Headers/HeaderUtilitiesTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HeaderUtilitiesTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HttpContentHeadersTest.cs b/src/System.Net.Http/tests/Headers/HttpContentHeadersTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HttpContentHeadersTest.cs rename to src/System.Net.Http/tests/Headers/HttpContentHeadersTest.cs index a0425104b86d..3321fd34e66b 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HttpContentHeadersTest.cs +++ b/src/System.Net.Http/tests/Headers/HttpContentHeadersTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpContentHeadersTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HttpHeaderValueCollectionTest.cs b/src/System.Net.Http/tests/Headers/HttpHeaderValueCollectionTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HttpHeaderValueCollectionTest.cs rename to src/System.Net.Http/tests/Headers/HttpHeaderValueCollectionTest.cs index da71ce1298e7..75cba150d9eb 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HttpHeaderValueCollectionTest.cs +++ b/src/System.Net.Http/tests/Headers/HttpHeaderValueCollectionTest.cs @@ -10,7 +10,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpHeaderValueCollectionTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HttpHeadersTest.cs b/src/System.Net.Http/tests/Headers/HttpHeadersTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HttpHeadersTest.cs rename to src/System.Net.Http/tests/Headers/HttpHeadersTest.cs index 342c0912bf1e..153033affe02 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HttpHeadersTest.cs +++ b/src/System.Net.Http/tests/Headers/HttpHeadersTest.cs @@ -10,7 +10,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpHeadersTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HttpRequestHeadersTest.cs b/src/System.Net.Http/tests/Headers/HttpRequestHeadersTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HttpRequestHeadersTest.cs rename to src/System.Net.Http/tests/Headers/HttpRequestHeadersTest.cs index c796cfa0fabc..81ea48eb74d9 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HttpRequestHeadersTest.cs +++ b/src/System.Net.Http/tests/Headers/HttpRequestHeadersTest.cs @@ -10,7 +10,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpRequestHeadersTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/HttpResponseHeadersTest.cs b/src/System.Net.Http/tests/Headers/HttpResponseHeadersTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/HttpResponseHeadersTest.cs rename to src/System.Net.Http/tests/Headers/HttpResponseHeadersTest.cs index 6764d0aa1ffd..e05a533b38cf 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/HttpResponseHeadersTest.cs +++ b/src/System.Net.Http/tests/Headers/HttpResponseHeadersTest.cs @@ -7,7 +7,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpResponseHeadersTest { @@ -61,6 +61,7 @@ public void Location_UseAddMethodWithInvalidValue_InvalidValueRecognized() Assert.Equal(" http://example.com http://other", headers.GetValues("Location").First()); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void Location_RequiresEncoding_Encoded() { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/Int32NumberHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/Int32NumberHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/Int32NumberHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/Int32NumberHeaderParserTest.cs index d68134c438b3..7b5faa3c475e 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/Int32NumberHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/Int32NumberHeaderParserTest.cs @@ -10,7 +10,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class Int32NumberHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/Int64NumberHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/Int64NumberHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/Int64NumberHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/Int64NumberHeaderParserTest.cs index d2241e91940f..b3e04592add0 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/Int64NumberHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/Int64NumberHeaderParserTest.cs @@ -9,7 +9,7 @@ using System.Text; using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class Int64NumberHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/MediaTypeHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/MediaTypeHeaderParserTest.cs index 0b3f8d603b21..57bb5d9d3ee0 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/MediaTypeHeaderParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class MediaTypeHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/MediaTypeHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/MediaTypeHeaderValueTest.cs index 647456957e30..70e3e99c890d 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/MediaTypeHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class MediaTypeHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeWithQualityHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/MediaTypeWithQualityHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/MediaTypeWithQualityHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/MediaTypeWithQualityHeaderValueTest.cs index 5df7cc13a018..207024cec54b 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/MediaTypeWithQualityHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/MediaTypeWithQualityHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class MediaTypeWithQualityHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/NameValueHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/NameValueHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/NameValueHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/NameValueHeaderValueTest.cs index db7289b0a9ec..e5b65e34a23e 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/NameValueHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/NameValueHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class NameValueHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/NameValueWithParametersHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/NameValueWithParametersHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/NameValueWithParametersHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/NameValueWithParametersHeaderValueTest.cs index 57b539a08d34..5a8d77416b41 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/NameValueWithParametersHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/NameValueWithParametersHeaderValueTest.cs @@ -7,7 +7,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class NameValueWithParametersHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ObjectCollectionTest.cs b/src/System.Net.Http/tests/Headers/ObjectCollectionTest.cs similarity index 97% rename from src/System.Net.Http/tests/UnitTests/Headers/ObjectCollectionTest.cs rename to src/System.Net.Http/tests/Headers/ObjectCollectionTest.cs index ef49d85e8202..262748d51871 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ObjectCollectionTest.cs +++ b/src/System.Net.Http/tests/Headers/ObjectCollectionTest.cs @@ -6,7 +6,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ObjectCollectionTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ProductHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/ProductHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ProductHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/ProductHeaderValueTest.cs index 8e5a2fe82043..64a2230e73da 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ProductHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/ProductHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ProductHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/ProductInfoHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/ProductInfoHeaderParserTest.cs index 31b79cf0de8e..fe7a50104bfe 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/ProductInfoHeaderParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ProductInfoHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/ProductInfoHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/ProductInfoHeaderValueTest.cs index 8e4d9522c033..b6c210bb38cd 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ProductInfoHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/ProductInfoHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ProductInfoHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/RangeConditionHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/RangeConditionHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/RangeConditionHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/RangeConditionHeaderValueTest.cs index fd64984f0c8a..d857ffe2172c 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/RangeConditionHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/RangeConditionHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RangeConditionHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/RangeHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/RangeHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/RangeHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/RangeHeaderValueTest.cs index 63e957c1f29c..9c504b94c0c0 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/RangeHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/RangeHeaderValueTest.cs @@ -6,7 +6,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RangeHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/RangeItemHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/RangeItemHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/RangeItemHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/RangeItemHeaderValueTest.cs index cfe22bd0677c..efdd8857adfb 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/RangeItemHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/RangeItemHeaderValueTest.cs @@ -6,7 +6,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RangeItemHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/RetryConditionHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/RetryConditionHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/RetryConditionHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/RetryConditionHeaderValueTest.cs index 455def885c60..7554570ff559 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/RetryConditionHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/RetryConditionHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class RetryConditionHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/StringWithQualityHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/StringWithQualityHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/StringWithQualityHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/StringWithQualityHeaderValueTest.cs index 56247bf24688..488766b9b663 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/StringWithQualityHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/StringWithQualityHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class StringWithQualityHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/TimeSpanHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/TimeSpanHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/TimeSpanHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/TimeSpanHeaderParserTest.cs index af0fce6a9db9..d0c687da4549 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/TimeSpanHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/TimeSpanHeaderParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class TimeSpanHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/TransferCodingHeaderParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/TransferCodingHeaderParserTest.cs index b46b02b201f1..2ab91d0aaddc 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/TransferCodingHeaderParserTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class TransferCodingHeaderParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/TransferCodingHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/TransferCodingHeaderValueTest.cs index 74e0ac8b147f..0ceda1e7d0af 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/TransferCodingHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class TransferCodingHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingWithQualityHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/TransferCodingWithQualityHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/TransferCodingWithQualityHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/TransferCodingWithQualityHeaderValueTest.cs index cb4e9f38a45d..2702d2547193 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/TransferCodingWithQualityHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/TransferCodingWithQualityHeaderValueTest.cs @@ -9,7 +9,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class TransferCodingWithQualityHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/UriHeaderParserTest.cs b/src/System.Net.Http/tests/Headers/UriHeaderParserTest.cs similarity index 97% rename from src/System.Net.Http/tests/UnitTests/Headers/UriHeaderParserTest.cs rename to src/System.Net.Http/tests/Headers/UriHeaderParserTest.cs index 5baf4066a945..2b4d33120199 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/UriHeaderParserTest.cs +++ b/src/System.Net.Http/tests/Headers/UriHeaderParserTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class UriHeaderParserTest { @@ -17,6 +17,7 @@ public void Properties_ReadValues_MatchExpectation() Assert.Null(parser.Comparer); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfValidValueStrings_ParsedCorrectly() { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/ViaHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/ViaHeaderValueTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/Headers/ViaHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/ViaHeaderValueTest.cs index dea8d8f34f28..b48228a08ba7 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/ViaHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/ViaHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class ViaHeaderValueTest { diff --git a/src/System.Net.Http/tests/UnitTests/Headers/WarningHeaderValueTest.cs b/src/System.Net.Http/tests/Headers/WarningHeaderValueTest.cs similarity index 98% rename from src/System.Net.Http/tests/UnitTests/Headers/WarningHeaderValueTest.cs rename to src/System.Net.Http/tests/Headers/WarningHeaderValueTest.cs index ae0ddc1be97c..2424eaa080c1 100644 --- a/src/System.Net.Http/tests/UnitTests/Headers/WarningHeaderValueTest.cs +++ b/src/System.Net.Http/tests/Headers/WarningHeaderValueTest.cs @@ -5,7 +5,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class WarningHeaderValueTest { @@ -198,6 +198,7 @@ public void GetWarningLength_DifferentInvalidScenarios_AllReturnZero() CheckInvalidWarningViaLength("123 host \"t\" \"\"", 0); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void Parse_SetOfValidValueStrings_ParsedCorrectly() { @@ -213,6 +214,7 @@ public void Parse_SetOfValidValueStrings_ParsedCorrectly() CheckValidParse("1 \u4F1A \"t\" ", new WarningHeaderValue(1, "\u4F1A", "\"t\"")); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void Parse_SetOfInvalidValueStrings_Throws() { @@ -236,6 +238,7 @@ public void Parse_SetOfInvalidValueStrings_Throws() CheckInvalidParse(" ,,"); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfValidValueStrings_ParsedCorrectly() { @@ -251,6 +254,7 @@ public void TryParse_SetOfValidValueStrings_ParsedCorrectly() CheckValidTryParse("1 \u4F1A \"t\" ", new WarningHeaderValue(1, "\u4F1A", "\"t\"")); } + [ActiveIssue(846, PlatformID.AnyUnix)] [Fact] public void TryParse_SetOfInvalidValueStrings_ReturnsFalse() { diff --git a/src/System.Net.Http/tests/UnitTests/HttpContentTest.cs b/src/System.Net.Http/tests/HttpContentTest.cs similarity index 97% rename from src/System.Net.Http/tests/UnitTests/HttpContentTest.cs rename to src/System.Net.Http/tests/HttpContentTest.cs index 88c852c0b567..b787817f6a75 100644 --- a/src/System.Net.Http/tests/UnitTests/HttpContentTest.cs +++ b/src/System.Net.Http/tests/HttpContentTest.cs @@ -6,7 +6,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpContentTest { diff --git a/src/System.Net.Http/tests/UnitTests/HttpRuleParserTest.cs b/src/System.Net.Http/tests/HttpRuleParserTest.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/HttpRuleParserTest.cs rename to src/System.Net.Http/tests/HttpRuleParserTest.cs index ac4dd99b8d12..3bf0f7e497fe 100644 --- a/src/System.Net.Http/tests/UnitTests/HttpRuleParserTest.cs +++ b/src/System.Net.Http/tests/HttpRuleParserTest.cs @@ -8,7 +8,7 @@ using Xunit; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { public class HttpRuleParserTest { diff --git a/src/System.Net.Http/tests/UnitTests/MockContent.cs b/src/System.Net.Http/tests/MockContent.cs similarity index 99% rename from src/System.Net.Http/tests/UnitTests/MockContent.cs rename to src/System.Net.Http/tests/MockContent.cs index 0cff5bf10efc..8c5ad0461de1 100644 --- a/src/System.Net.Http/tests/UnitTests/MockContent.cs +++ b/src/System.Net.Http/tests/MockContent.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; -namespace System.Net.Http.Unit.Tests +namespace System.Net.Http.Tests { [Flags] public enum MockOptions diff --git a/src/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj b/src/System.Net.Http/tests/System.Net.Http.Tests.csproj similarity index 63% rename from src/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj rename to src/System.Net.Http/tests/System.Net.Http.Tests.csproj index 22052fc93a01..926c12141224 100644 --- a/src/System.Net.Http/tests/UnitTests/System.Net.Http.Unit.Tests.csproj +++ b/src/System.Net.Http/tests/System.Net.Http.Tests.csproj @@ -1,258 +1,261 @@ - + Debug AnyCPU {5F9C3C9F-652E-461E-B2D6-85D264F5A733} Library - System.Net.Http.Unit.Tests - System.Net.Http.Unit.Tests - ..\..\src\Resources\Strings.resx + System.Net.Http.Tests + System.Net.Http.Tests + ..\src\Resources\Strings.resx - + + true + AnyCPU - + + AnyCPU - + ProductionCode\NotImplemented.cs - + ProductionCode\HttpKnownHeaderNames.cs - + ProductionCode\HttpStatusDescription.cs - + ProductionCode\HttpVersion.cs - + ProductionCode\ICloneable.cs - + ProductionCode\MailAddress.cs - + ProductionCode\DomainLiteralReader.cs - + ProductionCode\DotAtomReader.cs - + ProductionCode\MailAddressParser.cs - + ProductionCode\MailBnfHelper.cs - + ProductionCode\QuotedPairReader.cs - + ProductionCode\QuotedStringFormatReader.cs - + ProductionCode\WhitespaceReader.cs - + ProductionCode\Logging.cs - + ProductionCode\UriHelper.cs - + ProductionCode\Uri.cs - + ProductionCode\ByteArrayContent.cs - + ProductionCode\ClientCertificateOption.cs - + ProductionCode\DelegatingHandler.cs - + ProductionCode\DelegatingStream.cs - + ProductionCode\FormUrlEncodedContent.cs - + ProductionCode\AuthenticationHeaderValue.cs - + ProductionCode\BaseHeaderParser.cs - + ProductionCode\ByteArrayHeaderParser.cs - + ProductionCode\CacheControlHeaderParser.cs - + ProductionCode\CacheControlHeaderValue.cs - + ProductionCode\ContentDispositionHeaderValue.cs - + ProductionCode\ContentRangeHeaderValue.cs - + ProductionCode\DateHeaderParser.cs - + ProductionCode\EntityTagHeaderValue.cs - + ProductionCode\GenericHeaderParser.cs - + ProductionCode\HeaderUtilities.cs - + ProductionCode\HttpContentHeaders.cs - + ProductionCode\HttpGeneralHeaders.cs - + ProductionCode\HttpHeaderParser.cs - + ProductionCode\HttpHeaders.cs - + ProductionCode\HttpHeaderValueCollection.cs - + ProductionCode\HttpRequestHeaders.cs - + ProductionCode\HttpResponseHeaders.cs - + ProductionCode\Int32NumberHeaderParser.cs - + ProductionCode\Int64NumberHeaderParser.cs - + ProductionCode\MediaTypeHeaderParser.cs - + ProductionCode\MediaTypeHeaderValue.cs - + ProductionCode\MediaTypeWithQualityHeaderValue.cs - + ProductionCode\NameValueHeaderValue.cs - + ProductionCode\NameValueWithParametersHeaderValue.cs - + ProductionCode\ObjectCollection.cs - + ProductionCode\ProductHeaderValue.cs - + ProductionCode\ProductInfoHeaderParser.cs - + ProductionCode\ProductInfoHeaderValue.cs - + ProductionCode\RangeConditionHeaderValue.cs - + ProductionCode\RangeHeaderValue.cs - + ProductionCode\RangeItemHeaderValue.cs - + ProductionCode\RetryConditionHeaderValue.cs - + ProductionCode\StringWithQualityHeaderValue.cs - + ProductionCode\TimeSpanHeaderParser.cs - + ProductionCode\TransferCodingHeaderParser.cs - + ProductionCode\TransferCodingHeaderValue.cs - + ProductionCode\TransferCodingWithQualityHeaderValue.cs - + ProductionCode\UriHeaderParser.cs - + ProductionCode\ViaHeaderValue.cs - + ProductionCode\WarningHeaderValue.cs - + ProductionCode\HttpClient.cs - + ProductionCode\HttpCompletionOption.cs - + ProductionCode\HttpContent.cs - + ProductionCode\HttpMessageHandler.cs - + ProductionCode\HttpMessageInvoker.cs - + ProductionCode\HttpMethod.cs - + ProductionCode\HttpParseResult.cs - + ProductionCode\HttpRequestException.cs - + ProductionCode\HttpRequestMessage.cs - + ProductionCode\HttpResponseMessage.cs - + ProductionCode\HttpRuleParser.cs - + ProductionCode\HttpUtilities.cs - + ProductionCode\MessageProcessingHandler.cs - + ProductionCode\MultipartContent.cs - + ProductionCode\MultipartFormDataContent.cs - + ProductionCode\StreamContent.cs - + ProductionCode\StreamToStreamCopy.cs - + ProductionCode\StringContent.cs diff --git a/src/System.Net.Http/tests/UnitTests/project.json b/src/System.Net.Http/tests/project.json similarity index 82% rename from src/System.Net.Http/tests/UnitTests/project.json rename to src/System.Net.Http/tests/project.json index c2f45d238f23..26359af4e13e 100644 --- a/src/System.Net.Http/tests/UnitTests/project.json +++ b/src/System.Net.Http/tests/project.json @@ -9,7 +9,8 @@ "xunit": "2.0.0-beta5-build2785", "xunit.abstractions.netcore": "1.0.0-prerelease", "xunit.assert": "2.0.0-beta5-build2785", - "xunit.core.netcore": "1.0.1-prerelease" + "xunit.core.netcore": "1.0.1-prerelease", + "xunit.netcore.extensions": "1.0.0-prerelease-*" }, "frameworks": { "dnxcore50": {} diff --git a/src/System.Net.Http/tests/project.lock.json b/src/System.Net.Http/tests/project.lock.json new file mode 100644 index 000000000000..478d6fd57518 --- /dev/null +++ b/src/System.Net.Http/tests/project.lock.json @@ -0,0 +1,1399 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNXCore,Version=v5.0": { + "Microsoft.Win32.Primitives/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Runtime.InteropServices": "4.0.20-beta-23011" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Threading.Tasks": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Globalization": "4.0.10-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.10-beta-23011", + "System.Threading": "4.0.10-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Threading": "4.0.10-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Threading.Tasks": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Text.Encoding": "4.0.0-beta-23011", + "System.Threading.Tasks": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Runtime.InteropServices": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011", + "System.Threading.Overlapped": "4.0.0-beta-23011", + "System.Text.Encoding": "4.0.10-beta-23011", + "System.IO": "4.0.10-beta-23011", + "System.Collections": "4.0.10-beta-23011", + "System.Threading.Tasks": "4.0.10-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011", + "System.Text.Encoding.Extensions": "4.0.10-beta-23011", + "System.Threading": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Collections": "4.0.10-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.10-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23011": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Runtime.InteropServices": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23011", + "System.Collections": "4.0.0-beta-23011", + "System.Collections.Concurrent": "4.0.0-beta-23011", + "System.Diagnostics.Tracing": "4.0.0-beta-23011", + "System.Threading": "4.0.0-beta-23011", + "System.Threading.Tasks": "4.0.0-beta-23011", + "System.Collections.NonGeneric": "4.0.0-beta-23011", + "System.Security.SecureString": "4.0.0-beta-23011", + "System.Security.Principal.Windows": "4.0.0-beta-23011", + "Microsoft.Win32.Primitives": "4.0.0-beta-23011", + "System.IO.FileSystem": "4.0.0-beta-23011", + "System.Threading.Overlapped": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23011", + "System.IO": "4.0.10-beta-23011", + "System.Diagnostics.Debug": "4.0.10-beta-23011", + "System.Threading.ThreadPool": "4.0.10-beta-23011", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23011": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.IO": "4.0.0-beta-23011", + "System.Reflection.Primitives": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Reflection": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Reflection": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23011": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Reflection": "4.0.0-beta-23011", + "System.Reflection.Primitives": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Globalization": "4.0.10-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Security.Principal": "4.0.0-beta-23011", + "System.IO": "4.0.0-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Collections": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011", + "System.Runtime.Extensions": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Runtime.InteropServices": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Threading.Tasks": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011", + "System.IO": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.IO": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23011", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Runtime.InteropServices": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23011", + "System.IO": "4.0.0-beta-23011", + "System.Reflection": "4.0.0-beta-23011", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Runtime.InteropServices": "4.0.0-beta-23011", + "System.Runtime.Extensions": "4.0.0-beta-23011", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23011", + "System.Threading": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Runtime.InteropServices": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Security.Cryptography.RSA": "4.0.0-beta-23011", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23011", + "System.Globalization": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.0-beta-23011", + "System.Runtime.Numerics": "4.0.0-beta-23011", + "System.IO": "4.0.0-beta-23011", + "System.Globalization.Calendars": "4.0.0-beta-23011", + "System.Threading": "4.0.0-beta-23011", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23011", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23011", + "System.IO.FileSystem": "4.0.0-beta-23011", + "System.Runtime.Extensions": "4.0.10-beta-23011", + "System.Text.Encoding": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Collections": "4.0.0-beta-23011", + "System.Runtime.InteropServices": "4.0.0-beta-23011", + "System.Security.Claims": "4.0.0-beta-23011", + "System.Security.Principal": "4.0.0-beta-23011", + "System.Diagnostics.Debug": "4.0.0-beta-23011", + "System.Reflection": "4.0.0-beta-23011", + "System.Runtime.Extensions": "4.0.0-beta-23011", + "System.Threading": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23011", + "System.Runtime.InteropServices": "4.0.20-beta-23011", + "System.Resources.ResourceManager": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23011", + "System.Threading": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Text.Encoding": "4.0.10-beta-23011" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-22816": { + "dependencies": { + "System.Runtime": "4.0.20-beta-22816", + "System.Threading.Tasks": "4.0.10-beta-22816" + }, + "compile": { + "lib/contract/System.Threading.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Runtime.Handles": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-22816": { + "dependencies": { + "System.Runtime": "4.0.20-beta-22816" + }, + "compile": { + "lib/contract/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23011": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23011", + "System.Runtime.InteropServices": "4.0.0-beta-23011" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "xunit/2.0.0-beta5-build2785": { + "dependencies": { + "xunit.core": "[2.0.0-beta5-build2785]", + "xunit.assert": "[2.0.0-beta5-build2785]" + } + }, + "xunit.abstractions/2.0.0-beta5-build2785": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.abstractions.dll": {} + } + }, + "xunit.abstractions.netcore/1.0.0-prerelease": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-beta5-build2785": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monoandroid+monotouch10/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monoandroid+monotouch10/xunit.assert.dll": {} + } + }, + "xunit.core/2.0.0-beta5-build2785": { + "dependencies": { + "xunit.abstractions": "[2.0.0-beta5-build2785]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.dll": {} + } + }, + "xunit.core.netcore/1.0.1-prerelease": { + "dependencies": { + "xunit.abstractions": "[2.0.0-beta5-build2785]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.dll": {} + } + }, + "xunit.netcore.extensions/1.0.0-prerelease-00055": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-22703", + "System.IO": "4.0.10-beta-22703", + "System.Linq": "4.0.0-beta-22703", + "System.Reflection": "4.0.10-beta-22703", + "System.Reflection.Primitives": "4.0.0-beta-22703", + "System.Runtime": "4.0.20-beta-22703", + "System.Runtime.Extensions": "4.0.10-beta-22703", + "System.Runtime.Handles": "4.0.0-beta-22703", + "System.Runtime.InteropServices": "4.0.20-beta-22703", + "System.Text.Encoding": "4.0.10-beta-22703", + "System.Threading": "4.0.10-beta-22703", + "System.Threading.Tasks": "4.0.10-beta-22703", + "xunit.abstractions.netcore": "1.0.0-prerelease", + "xunit.core.netcore": "1.0.0-prerelease" + }, + "compile": { + "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll": {} + }, + "runtime": { + "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Win32.Primitives/4.0.0-beta-23011": { + "sha512": "616XdcBJ4qCqR1H9m7Sg4iMncCdg9bl6bSTvcKINfiWigVPdvLNO9JkTTVSqiq0IJgx8JknL/oFU7G+S6Uv/+Q==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23011.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23011.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.Collections/4.0.10-beta-23011": { + "sha512": "BE8JCafr5xuUed047XDtgZ5ESLVcZxbxsjP9YIbUZd3+el2YzhloI1exhS6f316CXezvza1Rark+ZiozkDC0xA==", + "files": [ + "System.Collections.4.0.10-beta-23011.nupkg", + "System.Collections.4.0.10-beta-23011.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.0-beta-23011": { + "sha512": "qsaERCUJIwa3O8pmMoYqaP0AEF0VGqaLD6oVotajJWdYTdDRo1pUHdTxTiohad+R8ldCDQj54W8Ccxw9TzKOYw==", + "files": [ + "License.rtf", + "System.Collections.Concurrent.4.0.0-beta-23011.nupkg", + "System.Collections.Concurrent.4.0.0-beta-23011.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/win8/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23011": { + "sha512": "OVLzdYGQ6qKFGiJWnTBsBrW1EnbZW4NEMo+X7lqGtUdJ35lt3Fl+z4cq6el5PeElPcYU5lqzNHds5RV9CSV/Gw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23011.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23011.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23011": { + "sha512": "e4yeOdxDJrkrP3MtN9SR3Q/B8TishagcMMqE/hnq9GLoviCgsEtlJHieMEtgB3IDgez4Qo3DYdtRcCTN8rBcnw==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23011.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23011.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23011": { + "sha512": "TcK8I92MV7TJpoQ8DUVHQYm42VRlJX4DFcoTNe4TY4WwLNA/HQ5x66OlBrOwSJHd4igmDWLDbanCq3ddlDfrVQ==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23011.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23011.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23011": { + "sha512": "sB3xq/+AlGnbVGDR54yiGNyLKO69as2mOvroQYtyFHa/+NHUE3Ih3mnsr/HSh8Z/GeZE8tjMA1cQtlwERb2pOg==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23011.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23011.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23011": { + "sha512": "L6J5l4Zw2qH0x3OBc1CtfRCviTXGAehckuKFB4vk9TWjuMC+oUh8g3uB+D1Jbpk18KHDn75I96QdvkMgNq0yYw==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23011.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23011.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.0-beta-23011": { + "sha512": "Bnt+Xp97dNaiwdWQBQ29fASrO2IWfpaYCuvzU2avNTg168K5MUVwEyviRI56xn6utO80MiHhiKLTWWMRBu1JBQ==", + "files": [ + "License.rtf", + "System.Diagnostics.Tracing.4.0.0-beta-23011.nupkg", + "System.Diagnostics.Tracing.4.0.0-beta-23011.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/win8/_._" + ] + }, + "System.Globalization/4.0.0-beta-23011": { + "sha512": "uyUfEy804V1FNjZ1dWeWChxE4zDjz2pQ6Lx3To/ceDDxSyUNfFJuXmHnw9d6K6NUC9KAag7mpjaVgLJCldl6Zg==", + "files": [ + "License.rtf", + "System.Globalization.4.0.0-beta-23011.nupkg", + "System.Globalization.4.0.0-beta-23011.nupkg.sha512", + "System.Globalization.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.Globalization.dll", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/win8/_._" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23011": { + "sha512": "YjOKPc4LsoqCNJ/OrN+h2bzH8VC1xcgW+17+NAAsPyhfXwmrCarKiSwKufDviLz2OOh4uIV8iT4PEumK4aU/Kw==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23011.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23011.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.IO/4.0.10-beta-23011": { + "sha512": "NYoIpyR5hJvnv/jnY817GLBaH+DLJEsSOEGw8/NL/y4taFzuWVR2ROQtpWXD/2GLrXiTZ6Kdn7f1czs4DOqH1A==", + "files": [ + "System.IO.4.0.10-beta-23011.nupkg", + "System.IO.4.0.10-beta-23011.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23011": { + "sha512": "4MRP9gv3uebyeZTRettORC9I8qnUh5GfoTFUy526SuUCrVzHRk82bK0pDe8JsZ1kLDvxOS7vqxm1SnIvHIw0uw==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23011.nupkg", + "System.IO.FileSystem.4.0.0-beta-23011.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23011": { + "sha512": "cVg1cElW6//4tsD91doOzhyy0R+xDttPE95jIuF5Tew2iM5jddEH6Uq857uUvUTwn1vD6NQsHY/Qz3zrkrQqxQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23011.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23011.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23011": { + "sha512": "OsA4menI/BcSy5jmf0TGlPz2j4ZF2ggeY0EfTMVBhnpMZiXwiZB4RBETl+ehLcqZwTQJKTOw1TIKi+Ewe4K1ag==", + "files": [ + "System.Linq.4.0.0-beta-23011.nupkg", + "System.Linq.4.0.0-beta-23011.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Net.Primitives/4.0.10-beta-23011": { + "sha512": "FiB0PVXIqqA2OaEqX09QNlEofD63NwgBOY50gN600g0Q8jK/Q08iQhRgbj6hMWHkpFss63Iz4XqmMi79uwozLA==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23011.nupkg", + "System.Net.Primitives.4.0.10-beta-23011.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23011": { + "sha512": "BMGzaRI9lDmw89+txL+yJBePkN1lm9hQZqwwPJB0nOtyRH6z2GdvQfZXrbnJBqYdhuIbj1JxD/qXFdW7ijHohw==", + "files": [ + "System.Private.Networking.4.0.0-beta-23011.nupkg", + "System.Private.Networking.4.0.0-beta-23011.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23011": { + "sha512": "yil581lvQfpXUFfLnfmS7t9+NDvy7NeSHfKYBF7CluatvDQxT6QmwRxi9zKXzCYB7OY6sqvrRFOgdeAxNalVkA==", + "files": [ + "System.Private.Uri.4.0.0-beta-23011.nupkg", + "System.Private.Uri.4.0.0-beta-23011.nupkg.sha512", + "System.Private.Uri.nuspec", + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" + ] + }, + "System.Reflection/4.0.10-beta-23011": { + "sha512": "Xx5JN02rEd5fartdsX49YwpuYNUtx01tVJiZGVco58IKWjO1MA67YM6zQgzDMzltNMrE3kra6sFa/B27kTBCBw==", + "files": [ + "System.Reflection.4.0.10-beta-23011.nupkg", + "System.Reflection.4.0.10-beta-23011.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23011": { + "sha512": "RVUHArAFLmbs6YBmFTrX+3A0/JHR6EaWmGmxWXqzSMuOe8LiNQqwyPPi30UFzCW/SWZyzGzYA6EJovu9w34JZA==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23011.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23011.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23011": { + "sha512": "MY+f1x4wYQrYrzuYx/1PntGIOzfHgyrXFNx0sK8a2yy/YRazgeAzcJKMzOeIQngM5rFIP0q5XyUPFfjS/PxfEw==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23011.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23011.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23011": { + "sha512": "TgjsEiLAIQPJRw8yOe8oMgV9fSYkzt5wffauiRMDkKc/DqUB2RS1HVtlQQvb5XctpI8gxpxlna6EkEdiWthB4w==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23011.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23011.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23011": { + "sha512": "WFRsJnfRzXYIiDJRbTXGctncx6Hw1F/uS2c5a5CzUwHuA3D/CM152F2HjWt12dLgH0BOcGvcRjKl2AfJ6MnHVg==", + "files": [ + "System.Runtime.4.0.20-beta-23011.nupkg", + "System.Runtime.4.0.20-beta-23011.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23011": { + "sha512": "Ctasd6O2G00QpY3QcZN1feOZqqbN8B5rmz7P2B5E7VQWS1Dd6+CI6JAwzLHItFnIQQotOb0cy/tJdVwhqa8Uyg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23011.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23011.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23011": { + "sha512": "9e2Wa27gTX3K33U1VFzaztTXEs3AeA63YhtiaC5xHMuxGhg8bgTJBKIUH4No6SuuazVMYqYEa6LrN4V38dn6Rg==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23011.nupkg", + "System.Runtime.Handles.4.0.0-beta-23011.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23011": { + "sha512": "2JoFno8LnzhiCBprgeXOY7oanWgtTYqRLoCLVnwNTYxH+7Vrz5To2Jf3VynGDPgC0GYciv1Jr9qrbeUEfGzNnA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23011.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23011.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23011": { + "sha512": "Anunfd1LD/4NzZyJRxeuAwl98Px4AAGxKIQFbIrWQOLQo1U6WDBz5OKO1wYmYQPSQC4BZPDVW5DJh+X32/8K1g==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23011.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23011.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23011": { + "sha512": "3E9Hj5Sky/P+9IbcWzoozXngVnrRd7abDPZs/6K3AnLgC2BtcougJpRipPYGEyac4ZFErzfhpOsPjkJOjUQ5kg==", + "files": [ + "System.Security.Claims.4.0.0-beta-23011.nupkg", + "System.Security.Claims.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23011": { + "sha512": "6SiYjEOTimO0gxaf0nXaeU0WeaTWqQ2ntk0UecBdjHWaLBav/g3Li1lIr1r8oAeJ1/rxrNXhiIxhyp68qiMddw==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23011": { + "sha512": "M4fhV1AeaCaU6uwwQEw+TM8gkPtvGnw6znTFyqoCCl142uk3TyOFoMfoTNkCBvJlUcL0EzXplrSGJHy3gumwcg==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23011": { + "sha512": "EctApxVggHvMgFI6i5Ilxhfe/WwUy2j59YlwcwcpaeXEOKGOxDzhjMv9OLItBlhHrOhWbV5jATY/Z0NpOFrdeA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23011": { + "sha512": "Dlu/cVOD5y0UyMfbhXpP6Z15G9L6eu7GXJguWJQOZMwrYHcQHqvljGzmEsOf++yEZrvQ8zAzJTHw43n0TpOoJw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23011": { + "sha512": "5uGSe91+Fg2/D9HzLrYMs2/PzQJV7blmsXKx3I9h3ht4XFBwRMu1zTo/nfx4zXXuE5AVFjUwN9yydhIb6yKVqA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23011": { + "sha512": "5/zsQ84mzJzif6m4onuN2zqsePFe/tp6Yxn3mS2qr9rYTHDL7BWKWAaD6KknsBzGX+jaWMpuMWk3/HLFlsEWVQ==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23011": { + "sha512": "D25lj0XCLrV4U0/M8pok7Yf8P4FzC6CVY+5eoJy99ECC9BmqWOKLCJdYseMAVMJNrekPuQ3w7rT+AZSjy9imEA==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23011.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23011": { + "sha512": "oc990zyo5t1P0XdKgB6laXE+683efgmG9yRTjPWs0izHtighXtWqUDxxPPLEbzGaDCqeAPPMSs4xYrL83ZXdBg==", + "files": [ + "System.Security.Principal.4.0.0-beta-23011.nupkg", + "System.Security.Principal.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23011": { + "sha512": "yIOwSNXqmMJCnOz6wOfsaojUux/0xd3gE2OpX1p/63Zv1SoxE7W+0lCUBbfbccfARzPJIIOIxIUeV9nHNdduOA==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23011.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23011.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll" + ] + }, + "System.Security.SecureString/4.0.0-beta-23011": { + "sha512": "QjowwdwQHnPa2KTASn0fjfYWRNAK/KQJgRMTJVG77Qx4rEhayXfqibOm0JZmJMFU1cbhCCQtWIMzys+Z6qSXNw==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23011.nupkg", + "System.Security.SecureString.4.0.0-beta-23011.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23011": { + "sha512": "WpZkSv0yV1Fp3hVvHNlvEQ+tdM9vHvbhqJ6dTxcAR7fSfRftH0IdhtSc4rDWHNegfoKiX+nra4S8aNPxe3u1AQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23011.nupkg", + "System.Text.Encoding.4.0.10-beta-23011.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23011": { + "sha512": "+gvJ1yS67HI3X8LrUu2wVCaD4lR+yJk/7scaKsAORYz8N5SuBKQv9mjjlkSWURH8xKbrHmvN9aycYhHtJKhLAg==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23011.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23011.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Threading/4.0.10-beta-22816": { + "sha512": "GO4X3FuGlw4DJH+UbbKDXKnyyWiwlPJIX+Ys0UCzSdAPneBA42dPb2+kRakWy+wo6n6Gcv7ckkfa3j8MSSxbhg==", + "files": [ + "License.rtf", + "System.Threading.4.0.10-beta-22816.nupkg", + "System.Threading.4.0.10-beta-22816.nupkg.sha512", + "System.Threading.nuspec", + "lib/aspnetcore50/System.Threading.dll", + "lib/contract/System.Threading.dll", + "lib/net45/System.Threading.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23011": { + "sha512": "nSej6VBzljLDTD7+g66LV0scqqaYE4ro3YEU9eSNgGXESLyeESo21IRzMFHD9gsn5lcAce6vuJsEV3er9ZwggQ==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23011.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23011.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll" + ] + }, + "System.Threading.Tasks/4.0.10-beta-22816": { + "sha512": "KhcVrI2JzX1oHigWTbf4F/2uhPSkhjquLPYbBVCLe9HGxLDJk2WLgmTbJk7fIus6xWWnWJmhOp0rHERU9M2SQw==", + "files": [ + "License.rtf", + "System.Threading.Tasks.4.0.10-beta-22816.nupkg", + "System.Threading.Tasks.4.0.10-beta-22816.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/aspnetcore50/System.Threading.Tasks.dll", + "lib/contract/System.Threading.Tasks.dll", + "lib/net45/System.Threading.Tasks.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23011": { + "sha512": "snl3qG4VIot1RBVobTp453SqR9rolmbS38wzTbsSw1MSiDQ0hrYRp5qLPSeqgBre+cZuGkMObfULBGg5xcN5Zw==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23011.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23011.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "xunit/2.0.0-beta5-build2785": { + "sha512": "bNycxZe/83M7o7j0IbGp3/daiPLi17hZgYZB6xttgCVDnxgAuw/TP1zetiUTW1yVUPASnAjlkBeJayv/G2Crsw==", + "files": [ + "xunit.2.0.0-beta5-build2785.nupkg", + "xunit.2.0.0-beta5-build2785.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.0-beta5-build2785": { + "sha512": "b2RCnV2/wilCH1dsh7bAF82Ou+Vs+WfYLEItzRUUbD3YHNODx0ncpQwLz1JYjL/voBFc5mQh77hxIbgCGmyxKA==", + "files": [ + "xunit.abstractions.2.0.0-beta5-build2785.nupkg", + "xunit.abstractions.2.0.0-beta5-build2785.nupkg.sha512", + "xunit.abstractions.nuspec", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.abstractions.xml" + ] + }, + "xunit.abstractions.netcore/1.0.0-prerelease": { + "sha512": "fajSAvVztuUVSb/o1GxYM5I33Ikvx6CNNscpOnDAl6AnDAKqhOeu3iPTL0VzDhzXiXyOKbRi4iewv4hAWTgeuw==", + "files": [ + "xunit.abstractions.netcore.1.0.0-prerelease.nupkg", + "xunit.abstractions.netcore.1.0.0-prerelease.nupkg.sha512", + "xunit.abstractions.netcore.nuspec", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml" + ] + }, + "xunit.assert/2.0.0-beta5-build2785": { + "sha512": "1PTLrP+jLzSIhqO3JzzgPcMPmSyBlFadpFH6v3d2Vm08x/bIYHnF78h20qt6wk/t3wMu7smOsyoNcUFeP2ZnGg==", + "files": [ + "xunit.assert.2.0.0-beta5-build2785.nupkg", + "xunit.assert.2.0.0-beta5-build2785.nupkg.sha512", + "xunit.assert.nuspec", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monoandroid+monotouch10/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monoandroid+monotouch10/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monoandroid+monotouch10/xunit.assert.xml" + ] + }, + "xunit.core/2.0.0-beta5-build2785": { + "sha512": "3rDhbyvCS1iA20A7uXxYvw3LLa4MtyXUX9Y6i3QjY/dRhIHEZcSxBjBfGP3MjPm900WnsBx2H0ryQo2RWABhhg==", + "files": [ + "xunit.core.2.0.0-beta5-build2785.nupkg", + "xunit.core.2.0.0-beta5-build2785.nupkg.sha512", + "xunit.core.nuspec", + "build/monoandroid/xunit.core.props", + "build/monoandroid/xunit.execution.dll", + "build/monotouch/xunit.core.props", + "build/monotouch/xunit.execution.dll", + "build/portable-net45+win+wpa81+wp80+monotouch+monoandroid/xunit.core.props", + "build/portable-net45+win+wpa81+wp80+monotouch+monoandroid/xunit.execution.dll", + "build/win8/xunit.core.props", + "build/win8/xunit.core.targets", + "build/win8/xunit.execution.dll", + "build/win8/device/xunit.execution.dll", + "build/wp8/xunit.core.props", + "build/wp8/xunit.core.targets", + "build/wp8/xunit.execution.dll", + "build/wp8/device/xunit.execution.dll", + "build/wpa81/xunit.core.props", + "build/wpa81/xunit.core.targets", + "build/wpa81/xunit.execution.dll", + "build/wpa81/device/xunit.execution.dll", + "build/wpa81/device/xunit.execution.pri", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.runner.utility.dll" + ] + }, + "xunit.core.netcore/1.0.1-prerelease": { + "sha512": "iy2u6WUx6CxSn7ahvJrBOrrpsLphtu1kjDGmyJKOiCmoCPczZEHjPOVL1OCt4V3EWCwS0zypWV8uVSqn1/UM8g==", + "files": [ + "xunit.core.netcore.1.0.1-prerelease.nupkg", + "xunit.core.netcore.1.0.1-prerelease.nupkg.sha512", + "xunit.core.netcore.nuspec", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.runner.utility.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.runner.utility.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.runner.utility.xml" + ] + }, + "xunit.netcore.extensions/1.0.0-prerelease-00055": { + "sha512": "NIZeK2XWuDbba+sDLfxLawOYLxpX1eDhj9NYKoZm/kJUSrktGOMpPKZEtjAYKYfhCjSUD7o7576etrFw0sl/0w==", + "files": [ + "xunit.netcore.extensions.1.0.0-prerelease-00055.nupkg", + "xunit.netcore.extensions.1.0.0-prerelease-00055.nupkg.sha512", + "xunit.netcore.extensions.nuspec", + "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "System.Diagnostics.Contracts >= 4.0.0-*", + "System.Diagnostics.Tools >= 4.0.0-*", + "System.Linq >= 4.0.0-*", + "System.Net.Primitives >= 4.0.10-*", + "System.Reflection >= 4.0.10-*", + "System.Reflection.TypeExtensions >= 4.0.0-*", + "xunit >= 2.0.0-beta5-build2785", + "xunit.abstractions.netcore >= 1.0.0-prerelease", + "xunit.assert >= 2.0.0-beta5-build2785", + "xunit.core.netcore >= 1.0.1-prerelease", + "xunit.netcore.extensions >= 1.0.0-prerelease-*" + ], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file