Skip to content
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="7.0.0-rtm.22564.1">
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="7.0.0-rtm.22620.2">
<Uri>https://github.com/dotnet/icu</Uri>
<Sha>f6094f441c615d807682446c9ca90e5ab1ca65d0</Sha>
<Sha>4618d51bfbb22917be6d7cee6dfadb9ac80af1b8</Sha>
</Dependency>
<Dependency Name="System.Net.MsQuic.Transport" Version="7.0.0-alpha.1.22406.1">
<Uri>https://github.com/dotnet/msquic</Uri>
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
<MicrosoftNETILLinkTasksVersion>7.0.100-1.22423.4</MicrosoftNETILLinkTasksVersion>
<MicrosoftNETILLinkAnalyzerPackageVersion>$(MicrosoftNETILLinkTasksVersion)</MicrosoftNETILLinkAnalyzerPackageVersion>
<!-- ICU -->
<MicrosoftNETCoreRuntimeICUTransportVersion>7.0.0-rtm.22564.1</MicrosoftNETCoreRuntimeICUTransportVersion>
<MicrosoftNETCoreRuntimeICUTransportVersion>7.0.0-rtm.22620.2</MicrosoftNETCoreRuntimeICUTransportVersion>
<!-- MsQuic -->
<MicrosoftNativeQuicMsQuicVersion>2.1.1</MicrosoftNativeQuicMsQuicVersion>
<SystemNetMsQuicTransportVersion>7.0.0-alpha.1.22406.1</SystemNetMsQuicTransportVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,16 @@ public static IEnumerable<object[]> Ctor_String_TestData()
yield return new object[] { "ms-MY", new [] { "ms-MY" } };
yield return new object[] { "mt", new [] { "mt" }, true };
yield return new object[] { "mt-MT", new [] { "mt-MT" }, true };
yield return new object[] { "nb", new [] { "nb" }, true };
yield return new object[] { "nb-NO", new [] { "nb-NO" }, true };
yield return new object[] { "nb", new [] { "nb" } };
yield return new object[] { "nb-NO", new [] { "nb-NO" } };
yield return new object[] { "ne", new [] { "ne" }, true };
yield return new object[] { "ne-NP", new [] { "ne-NP" }, true };
yield return new object[] { "nl", new [] { "nl" } };
yield return new object[] { "nl-BE", new [] { "nl-BE" } };
yield return new object[] { "nl-NL", new [] { "nl-NL" } };
yield return new object[] { "nn", new [] { "nn" }, true };
yield return new object[] { "nn-NO", new [] { "nn-NO" }, true };
yield return new object[] { "no", new [] { "no" }, true };
yield return new object[] { "no", new [] { "no" } };
yield return new object[] { "nso", new [] { "nso" }, true };
yield return new object[] { "nso-ZA", new [] { "nso-ZA" }, true };
yield return new object[] { "oc", new [] { "oc" }, true };
Expand Down