[Browser] Bump ICU (#41166)
authorEgor Bogatov <egorbo@gmail.com>
Sat, 22 Aug 2020 11:49:06 +0000 (14:49 +0300)
committerGitHub <noreply@github.com>
Sat, 22 Aug 2020 11:49:06 +0000 (14:49 +0300)
NuGet.config
eng/Version.Details.xml
eng/Versions.props
tools-local/tasks/mobile.tasks/WasmAppBuilder/WasmAppBuilder.cs

index 13929bb..ae224e2 100644 (file)
@@ -16,6 +16,7 @@
     <add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
     <add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
     <add key="dotnet5-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json" />
+    <add key="dotnet6-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6-transport/nuget/v3/index.json" />
   </packageSources>
   <disabledPackageSources>
     <clear />
index 9a44ea1..e6de6a2 100644 (file)
@@ -4,9 +4,9 @@
       <Uri>https://github.com/dotnet/standard</Uri>
       <Sha>cfe95a23647c7de1fe1a349343115bd7720d6949</Sha>
     </Dependency>
-    <Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="5.0.0-preview.8.20418.1">
+    <Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="5.0.0-preview.8.20421.1">
       <Uri>https://github.com/dotnet/icu</Uri>
-      <Sha>f4797cace2ce1234f88f3e0911c1e14e3cb14190</Sha>
+      <Sha>8025faea58fb28c51ddaf3484a7bf506eaa7897b</Sha>
     </Dependency>
   </ProductDependencies>
   <ToolsetDependencies>
index bf109df..4aaceea 100644 (file)
     <!-- ILLink -->
     <MicrosoftNETILLinkTasksVersion>5.0.0-preview.3.20413.1</MicrosoftNETILLinkTasksVersion>
     <!-- ICU -->
-    <MicrosoftNETCoreRuntimeICUTransportVersion>5.0.0-preview.8.20418.1</MicrosoftNETCoreRuntimeICUTransportVersion>
+    <MicrosoftNETCoreRuntimeICUTransportVersion>5.0.0-preview.8.20421.1</MicrosoftNETCoreRuntimeICUTransportVersion>
     <!-- Mono LLVM -->
     <runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>9.0.1-alpha.1.20410.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
     <runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>9.0.1-alpha.1.20410.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
index 4ce239a..3fa63da 100644 (file)
@@ -30,7 +30,7 @@ public class WasmAppBuilder : Task
 
     // full list of ICU data files we produce can be found here:
     // https://github.com/dotnet/icu/tree/maint/maint-67/icu-filters
-    public string? IcuDataFileName { get; set; } = "icudt_optimal.dat";
+    public string? IcuDataFileName { get; set; } = "icudt.dat";
 
     [Required]
     public ITaskItem[]? AssemblySearchPaths { get; set; }