Update BuildTools, CoreClr to preview4-03913-01, preview5-27612-73, respectively...
authordotnet-maestro-bot <dotnet-maestro-bot@microsoft.com>
Sun, 14 Apr 2019 03:18:15 +0000 (20:18 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sun, 14 Apr 2019 03:18:15 +0000 (20:18 -0700)
* Update BuildTools, CoreClr to preview4-03913-01, preview5-27612-73, respectively

* Fix nullable build errors

Commit migrated from https://github.com/dotnet/coreclr/commit/ce952e77ddd2ee9c4e017770573f44dc316db6a8

src/coreclr/BuildToolsVersion.txt
src/coreclr/ILAsmVersion.txt
src/coreclr/dependencies.props
src/libraries/System.Private.CoreLib/src/System/Enum.cs

index 457b538..433db89 100644 (file)
@@ -1 +1 @@
-3.0.0-preview4-03906-01
+3.0.0-preview4-03913-01
index 5725ac3..d0e17ff 100644 (file)
@@ -1 +1 @@
-3.0.0-preview5-27611-71
+3.0.0-preview5-27612-73
index 042b52a..3d71f8e 100644 (file)
 
   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
   <PropertyGroup>
-    <CoreClrCurrentRef>01e1d277337c3e89fa66197e11be31552f97bcc1</CoreClrCurrentRef>
-    <BuildToolsCurrentRef>66f3bb05de8ac6063fbedff5816ef25cc6ecfa11</BuildToolsCurrentRef>
+    <CoreClrCurrentRef>c6a0e8080e10e8940af6b1d1809e79fdd8de55b7</CoreClrCurrentRef>
+    <BuildToolsCurrentRef>c6a0e8080e10e8940af6b1d1809e79fdd8de55b7</BuildToolsCurrentRef>
   </PropertyGroup>
 
   <!-- Tests/infrastructure dependency versions. -->
   <PropertyGroup>
-    <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview5-27611-71</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
+    <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview5-27612-73</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
     <XunitPackageVersion>2.4.1</XunitPackageVersion>
     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
     <MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.36</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
index 52ae290..a979fe9 100644 (file)
@@ -494,7 +494,7 @@ namespace System
 
                 default:
                     parsed = TryParseRareEnum(rt, value, valueSpan, ignoreCase, throwOnFailure, out object? objectResult);
-                    result = parsed ? (TEnum)objectResult : default;
+                    result = parsed ? (TEnum)objectResult! : default; // TODO-NULLABLE: https://github.com/dotnet/roslyn/issues/34976
                     return parsed;
             }
         }