From 4f86d11cec6203a5c9ceb93736c6b224dbce2b75 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 25 Mar 2021 12:48:02 -0700 Subject: [PATCH 01/11] Add hotReloadProfile to Razor Pages template (#31216) * Add hotReloadProfile to Razor Pages template * Turn off hotReloadProfile for Blazor WebAssembly projects The WebAssembly experience is a bit problematic in preview3 because of runtime issues https://github.com/dotnet/runtime/issues/50190. We'll turn it off in the templates by default to avoid giving a confusing experience out of the box. --- .../Client/Properties/launchSettings.json | 1 - .../content/RazorPagesWeb-CSharp/Properties/launchSettings.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json index f8e619cb4a5b..29e2cda6c5bb 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json @@ -29,7 +29,6 @@ "commandName": "Project", "dotnetRunMessages": "true", "launchBrowser": true, - "hotReloadProfile": "blazorwasm", "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", //#if(RequiresHttps) "applicationUrl": "https://localhost:5001;http://localhost:5000", diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Properties/launchSettings.json b/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Properties/launchSettings.json index d7c9fd245e6b..9dc76fda5d21 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Properties/launchSettings.json +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Properties/launchSettings.json @@ -33,6 +33,7 @@ "commandName": "Project", "dotnetRunMessages": "true", "launchBrowser": true, + "hotReloadProfile": "aspnetcore", //#if(RequiresHttps) "applicationUrl": "https://localhost:5001;http://localhost:5000", //#else From b14188bdaba948fa5124323f33b47c431458b100 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 26 Mar 2021 10:47:15 -0700 Subject: [PATCH 02/11] Use Emscripten SDKs in WASM workload (#31259) --- eng/Version.Details.xml | 18 ++++++++-- eng/Versions.props | 9 +++-- .../BlazorManifest/src/BlazorManifest.csproj | 3 ++ .../src/WorkloadManifest.json.in | 35 ++++++++++++++++++- .../src/WorkloadManifest.targets | 3 ++ 5 files changed, 61 insertions(+), 7 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d22d86be2b68..6f0724b48077 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -265,11 +265,11 @@ https://github.com/dotnet/runtime 0f64b267ac0552f07b06f18103581b880c8c53c6 - + https://github.com/dotnet/runtime 0f64b267ac0552f07b06f18103581b880c8c53c6 - + https://github.com/dotnet/runtime 0f64b267ac0552f07b06f18103581b880c8c53c6 @@ -281,9 +281,21 @@ https://github.com/dotnet/runtime 0f64b267ac0552f07b06f18103581b880c8c53c6 - + https://github.com/dotnet/runtime 0f64b267ac0552f07b06f18103581b880c8c53c6 + + + https://github.com/dotnet/runtime + bcc7e0e0ce1758322015675356efc121b211e312 + + + https://github.com/dotnet/runtime + bcc7e0e0ce1758322015675356efc121b211e312 + + + https://github.com/dotnet/runtime + bcc7e0e0ce1758322015675356efc121b211e312 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 1902014cef7d..226ff48b6c6a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,9 +68,12 @@ 6.0.0-preview.3.21167.1 6.0.0-preview.3.21167.1 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 + 6.0.0-preview.3.21174.2 + 6.0.0-preview.3.21174.2 + 6.0.0-preview.3.21174.2 + 6.0.0-preview.3.21174.2 + 6.0.0-preview.3.21174.2 + 6.0.0-preview.3.21174.2 6.0.0-preview.3.21167.1 6.0.0-preview.3.21167.1 6.0.0-preview.3.21167.1 diff --git a/src/Components/WebAssembly/BlazorManifest/src/BlazorManifest.csproj b/src/Components/WebAssembly/BlazorManifest/src/BlazorManifest.csproj index 5fad080b429d..4f0141070db8 100644 --- a/src/Components/WebAssembly/BlazorManifest/src/BlazorManifest.csproj +++ b/src/Components/WebAssembly/BlazorManifest/src/BlazorManifest.csproj @@ -17,6 +17,9 @@ MicrosoftNETRuntimeMonoAOTCompilerTaskVersion=$(MicrosoftNETRuntimeMonoAOTCompilerTaskVersion); MicrosoftNETRuntimeWebAssemblySdkVersion=$(MicrosoftNETRuntimeWebAssemblySdkVersion); MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion=$(MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion); + MicrosoftNETRuntimeEmscripten2012Nodewinx64Version=$(MicrosoftNETRuntimeEmscripten2012Nodewinx64Version); + MicrosoftNETRuntimeEmscripten2012Pythonwinx64Version=$(MicrosoftNETRuntimeEmscripten2012Pythonwinx64Version); + MicrosoftNETRuntimeEmscripten2012Sdkwinx64Version=$(MicrosoftNETRuntimeEmscripten2012Sdkwinx64Version); $(IntermediateOutputPath)WorkloadManifest.json diff --git a/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.json.in b/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.json.in index e35868204057..39badc2bd2e5 100644 --- a/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.json.in +++ b/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.json.in @@ -6,7 +6,10 @@ "packs": [ "Microsoft.NET.Runtime.MonoAOTCompiler.Task", "Microsoft.NET.Runtime.WebAssembly.Sdk", - "Microsoft.Netcore.App.Runtime.Aot.Cross.browser-wasm" + "Microsoft.Netcore.App.Runtime.Aot.Cross.browser-wasm", + "Microsoft.NET.Runtime.Emscripten.Node", + "Microsoft.NET.Runtime.Emscripten.Python", + "Microsoft.NET.Runtime.Emscripten.Sdk" ] } }, @@ -28,6 +31,36 @@ "linux-x64": "microsoft.netcore.app.runtime.aot.linux-x64.cross.browser-wasm", "osx-x64": "microsoft.netcore.app.runtime.aot.osx-x64.cross.browser-wasm" } + }, + "Microsoft.NET.Runtime.Emscripten.Node" : { + "kind": "Sdk", + "version": "${MicrosoftNETRuntimeEmscripten2012Nodewinx64Version}", + "alias-to": { + "win-x86": "Microsoft.NET.Runtime.Emscripten.2.0.12.Node.win-x86", + "win-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Node.win-x64", + "linux-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Node.linux-x64", + "osx-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Node.osx-x64" + } + }, + "Microsoft.NET.Runtime.Emscripten.Python" : { + "kind": "Sdk", + "version": "${MicrosoftNETRuntimeEmscripten2012Pythonwinx64Version}", + "alias-to": { + "win-x86": "Microsoft.NET.Runtime.Emscripten.2.0.12.Python.win-x86", + "win-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Python.win-x64", + "linux-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Python.linux-x64", + "osx-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Python.osx-x64" + } + }, + "Microsoft.NET.Runtime.Emscripten.Sdk" : { + "kind": "Sdk", + "version": "${MicrosoftNETRuntimeEmscripten2012Sdkwinx64Version}", + "alias-to": { + "win-x86": "Microsoft.NET.Runtime.Emscripten.2.0.12.Sdk.win-x86", + "win-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Sdk.win-x64", + "linux-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Sdk.linux-x64", + "osx-x64": "Microsoft.NET.Runtime.Emscripten.2.0.12.Sdk.osx-x64" + } } } } diff --git a/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.targets b/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.targets index f80574015b06..a0c7df21e7c1 100644 --- a/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.targets +++ b/src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.targets @@ -7,5 +7,8 @@ + + + From 06c618f19c97ae38fb1c78c4ab906ba072826f23 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 27 Mar 2021 08:21:05 +0000 Subject: [PATCH 03/11] [release/6.0-preview3] Update dependencies from dotnet/efcore dotnet/runtime (#31255) [release/6.0-preview3] Update dependencies from dotnet/efcore dotnet/runtime - Port changes from main - Merge branch 'release/6.0-preview3' into darc-release/6.0-preview3-ce4fb228-ea32-4f60-95e1-0e60d42e3fc3 --- Directory.Build.targets | 9 + eng/Version.Details.xml | 292 +++++++++--------- eng/Versions.props | 146 ++++----- ...e.Components.Forms.WarningSuppressions.xml | 12 + .../acquire/dotnet-install-blazoraot.csproj | 1 + ...tCore.Components.WebAssembly.Server.csproj | 1 + ...t.AspNetCore.SpaServices.Extensions.csproj | 1 + .../BlazorTemplates.Tests.csproj | 3 +- .../test/ProjectTemplates.Tests.csproj | 1 + ...soft.AspNetCore.Server.Kestrel.Core.csproj | 1 + ...NetCore.DeveloperCertificates.XPlat.csproj | 1 + .../src/Microsoft.dotnet-openapi.csproj | 1 + .../src/dotnet-dev-certs.csproj | 1 + .../src/dotnet-user-secrets.csproj | 1 + 14 files changed, 251 insertions(+), 220 deletions(-) diff --git a/Directory.Build.targets b/Directory.Build.targets index 6ea2934354f7..9c703d6ace1a 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -175,6 +175,15 @@ $(BuildDependsOn);_CopySymbolsToArtifacts + + + + + + - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/efcore - d568c44c24c31ce32ca3e5b1a2880cc029c47ebe + 56022de282c9dbcfe34fe0be431aa04a120cbd20 - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - bcc7e0e0ce1758322015675356efc121b211e312 + 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - bcc7e0e0ce1758322015675356efc121b211e312 + 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - bcc7e0e0ce1758322015675356efc121b211e312 + 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c - + https://github.com/dotnet/runtime - 0f64b267ac0552f07b06f18103581b880c8c53c6 + 1b31080188c7820fb1df92b39201cd677357585c https://github.com/dotnet/arcade diff --git a/eng/Versions.props b/eng/Versions.props index 226ff48b6c6a..5b4edb05c07d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,81 +65,81 @@ --> - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21174.2 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 - 6.0.0-preview.3.21167.1 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21175.11 + 6.0.0-preview.3.21175.11 + 6.0.0-preview.3.21175.11 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21167.1 + 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 - 6.0.0-preview.3.21167.2 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21175.5 6.0.0-beta.21167.3 diff --git a/src/Components/Forms/src/Microsoft.AspNetCore.Components.Forms.WarningSuppressions.xml b/src/Components/Forms/src/Microsoft.AspNetCore.Components.Forms.WarningSuppressions.xml index 907b67a48f74..a1d67690b415 100644 --- a/src/Components/Forms/src/Microsoft.AspNetCore.Components.Forms.WarningSuppressions.xml +++ b/src/Components/Forms/src/Microsoft.AspNetCore.Components.Forms.WarningSuppressions.xml @@ -1,6 +1,18 @@  + + ILLink + IL2026 + member + M:Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.ValidateField(Microsoft.AspNetCore.Components.Forms.EditContext,Microsoft.AspNetCore.Components.Forms.ValidationMessageStore,Microsoft.AspNetCore.Components.Forms.FieldIdentifier@) + + + ILLink + IL2026 + member + M:Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.ValidateModel(Microsoft.AspNetCore.Components.Forms.EditContext,Microsoft.AspNetCore.Components.Forms.ValidationMessageStore) + ILLink IL2080 diff --git a/src/Components/WebAssembly/BlazorManifest/acquire/dotnet-install-blazoraot.csproj b/src/Components/WebAssembly/BlazorManifest/acquire/dotnet-install-blazoraot.csproj index 260e566055de..d4ae4d32c1f4 100644 --- a/src/Components/WebAssembly/BlazorManifest/acquire/dotnet-install-blazoraot.csproj +++ b/src/Components/WebAssembly/BlazorManifest/acquire/dotnet-install-blazoraot.csproj @@ -9,6 +9,7 @@ dotnet-install-blazoraot dotnet-install-blazoraot false + true false diff --git a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj index ba032dcf8f79..c8a900ccb835 100644 --- a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj +++ b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj @@ -4,6 +4,7 @@ $(DefaultNetCoreTargetFramework) Runtime server features for ASP.NET Core Blazor applications. true + true $(NoWarn);NU5100 diff --git a/src/Middleware/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj b/src/Middleware/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj index c48077311a8a..b0fd0f9f020f 100644 --- a/src/Middleware/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj +++ b/src/Middleware/SpaServices.Extensions/src/Microsoft.AspNetCore.SpaServices.Extensions.csproj @@ -4,6 +4,7 @@ Helpers for building single-page applications on ASP.NET MVC Core. $(DefaultNetCoreTargetFramework) enable + true diff --git a/src/ProjectTemplates/BlazorTemplates.Tests/BlazorTemplates.Tests.csproj b/src/ProjectTemplates/BlazorTemplates.Tests/BlazorTemplates.Tests.csproj index db364525ca16..187de8341b4e 100644 --- a/src/ProjectTemplates/BlazorTemplates.Tests/BlazorTemplates.Tests.csproj +++ b/src/ProjectTemplates/BlazorTemplates.Tests/BlazorTemplates.Tests.csproj @@ -3,6 +3,7 @@ $(DefaultNetCoreTargetFramework) ProjectTemplates.E2ETests $(DefineConstants);XPLAT + true true true @@ -63,7 +64,7 @@ <_PublishFiles Include="$(OutputPath).playwright\**\*.*" /> - + diff --git a/src/ProjectTemplates/test/ProjectTemplates.Tests.csproj b/src/ProjectTemplates/test/ProjectTemplates.Tests.csproj index 4566ee824a61..a78821a380b1 100644 --- a/src/ProjectTemplates/test/ProjectTemplates.Tests.csproj +++ b/src/ProjectTemplates/test/ProjectTemplates.Tests.csproj @@ -7,6 +7,7 @@ $(DefaultNetCoreTargetFramework) ProjectTemplates.E2ETests $(DefineConstants);XPLAT + true true true diff --git a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj index 3e5b8115d18a..ef7726f15f68 100644 --- a/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj +++ b/src/Servers/Kestrel/Core/src/Microsoft.AspNetCore.Server.Kestrel.Core.csproj @@ -11,6 +11,7 @@ false $(DefineConstants);KESTREL enable + true diff --git a/src/Tools/FirstRunCertGenerator/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj b/src/Tools/FirstRunCertGenerator/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj index 0f373fe9274d..d2adba98ab62 100644 --- a/src/Tools/FirstRunCertGenerator/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj +++ b/src/Tools/FirstRunCertGenerator/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj @@ -5,6 +5,7 @@ Package for the CLI first run experience. $(DefineConstants);XPLAT aspnet;cli + true diff --git a/src/Tools/Microsoft.dotnet-openapi/src/Microsoft.dotnet-openapi.csproj b/src/Tools/Microsoft.dotnet-openapi/src/Microsoft.dotnet-openapi.csproj index b6f683433336..d6068cd26d3a 100644 --- a/src/Tools/Microsoft.dotnet-openapi/src/Microsoft.dotnet-openapi.csproj +++ b/src/Tools/Microsoft.dotnet-openapi/src/Microsoft.dotnet-openapi.csproj @@ -7,6 +7,7 @@ dotnet-openapi Microsoft.dotnet-openapi true + true diff --git a/src/Tools/dotnet-dev-certs/src/dotnet-dev-certs.csproj b/src/Tools/dotnet-dev-certs/src/dotnet-dev-certs.csproj index 29f83b864305..e261bee80606 100644 --- a/src/Tools/dotnet-dev-certs/src/dotnet-dev-certs.csproj +++ b/src/Tools/dotnet-dev-certs/src/dotnet-dev-certs.csproj @@ -7,6 +7,7 @@ Microsoft.AspNetCore.DeveloperCertificates.Tools dotnet;developercertificates true + true false false diff --git a/src/Tools/dotnet-user-secrets/src/dotnet-user-secrets.csproj b/src/Tools/dotnet-user-secrets/src/dotnet-user-secrets.csproj index 1ef774e1c5e7..429174dea8d3 100644 --- a/src/Tools/dotnet-user-secrets/src/dotnet-user-secrets.csproj +++ b/src/Tools/dotnet-user-secrets/src/dotnet-user-secrets.csproj @@ -8,6 +8,7 @@ Microsoft.Extensions.SecretManager.Tools configuration;secrets;usersecrets true + true false false From a27d059544ebf4d52dc99180deeb51134722b8ad Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 29 Mar 2021 18:38:19 +0000 Subject: [PATCH 04/11] Update dependencies from https://github.com/dotnet/efcore build 20210327.1 (#31309) [release/6.0-preview3] Update dependencies from dotnet/efcore --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 17c4dcd18358..e82c8340db29 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/efcore - 56022de282c9dbcfe34fe0be431aa04a120cbd20 + 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5b4edb05c07d..7d78b6e82bea 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,14 +132,14 @@ 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 - 6.0.0-preview.3.21175.5 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21177.1 6.0.0-beta.21167.3 From 2bb8297a11c1f8d199d204875271b5f36d0ff7c6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 29 Mar 2021 21:21:00 +0000 Subject: [PATCH 05/11] Update dependencies from https://github.com/dotnet/runtime build 20210329.3 (#31363) [release/6.0-preview3] Update dependencies from dotnet/runtime --- eng/Version.Details.xml | 248 ++++++++++++++++++++-------------------- eng/Versions.props | 124 ++++++++++---------- 2 files changed, 186 insertions(+), 186 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e82c8340db29..0bf720d24887 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -41,249 +41,249 @@ https://github.com/dotnet/efcore 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 https://github.com/dotnet/runtime @@ -297,16 +297,16 @@ https://github.com/dotnet/runtime 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 - + https://github.com/dotnet/runtime - 1b31080188c7820fb1df92b39201cd677357585c + 58cf4f2210e753b650e8b7a6dee0d15726589a03 https://github.com/dotnet/arcade diff --git a/eng/Versions.props b/eng/Versions.props index 7d78b6e82bea..68909cfadd7c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,72 +65,72 @@ --> - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 - 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21176.9 + 6.0.0-preview.3.21179.3 6.0.0-preview.3.21177.1 6.0.0-preview.3.21177.1 From 1dab290d2c21c22c930207c116f9ba781bf1d32d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 29 Mar 2021 22:59:32 +0000 Subject: [PATCH 06/11] Update dependencies from https://github.com/dotnet/efcore build 20210329.4 (#31366) [release/6.0-preview3] Update dependencies from dotnet/efcore --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0bf720d24887..c8b0c9c5618a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/efcore - 299cfa5a02ccb0a03ea58f2cd945bcbb5ca5481c + 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 68909cfadd7c..f4f0ba28f7b5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,14 +132,14 @@ 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 - 6.0.0-preview.3.21177.1 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21179.4 6.0.0-beta.21167.3 From c3f055f7188f9a33e0071b2e23d9a81515d3528d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 30 Mar 2021 21:16:48 +0000 Subject: [PATCH 07/11] Update dependencies from https://github.com/dotnet/runtime build 20210330.7 (#31394) [release/6.0-preview3] Update dependencies from dotnet/runtime --- eng/Version.Details.xml | 248 ++++++++++++++++++++-------------------- eng/Versions.props | 124 ++++++++++---------- 2 files changed, 186 insertions(+), 186 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c8b0c9c5618a..8774855c9b4d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -41,249 +41,249 @@ https://github.com/dotnet/efcore 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e https://github.com/dotnet/runtime @@ -297,16 +297,16 @@ https://github.com/dotnet/runtime 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e - + https://github.com/dotnet/runtime - 58cf4f2210e753b650e8b7a6dee0d15726589a03 + f513229d29bd8234cd25faa59abee39f0a59c75e https://github.com/dotnet/arcade diff --git a/eng/Versions.props b/eng/Versions.props index f4f0ba28f7b5..add6376b6464 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,72 +65,72 @@ --> - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 - 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21179.3 + 6.0.0-preview.3.21180.7 6.0.0-preview.3.21179.4 6.0.0-preview.3.21179.4 From 483899dcbc3a8885fef98e5f6007089515653491 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 30 Mar 2021 23:04:20 +0000 Subject: [PATCH 08/11] Update dependencies from https://github.com/dotnet/efcore build 20210330.1 (#31400) [release/6.0-preview3] Update dependencies from dotnet/efcore --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8774855c9b4d..ea54a72c6ae2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/efcore - 4e557a1d0a6ae345d465338bf3ded1ad5823bd63 + 9f630149938b30301a2ab47a6b56fcbcba55cbd0 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index add6376b6464..f602dba5aed5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,14 +132,14 @@ 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 - 6.0.0-preview.3.21179.4 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21180.1 6.0.0-beta.21167.3 From 4d5e44ad80f59d5cfcaae589c377fb3db38e3308 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 31 Mar 2021 23:10:00 +0000 Subject: [PATCH 09/11] Update dependencies from https://github.com/dotnet/runtime build 20210331.6 (#31421) [release/6.0-preview3] Update dependencies from dotnet/runtime --- eng/Version.Details.xml | 248 ++++++++++++++++++++-------------------- eng/Versions.props | 124 ++++++++++---------- 2 files changed, 186 insertions(+), 186 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ea54a72c6ae2..97345683b429 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -41,249 +41,249 @@ https://github.com/dotnet/efcore 9f630149938b30301a2ab47a6b56fcbcba55cbd0 - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea https://github.com/dotnet/runtime @@ -297,16 +297,16 @@ https://github.com/dotnet/runtime 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea - + https://github.com/dotnet/runtime - f513229d29bd8234cd25faa59abee39f0a59c75e + a5f523cb2fe9f98df5ca0f404aecfa806489b5ea https://github.com/dotnet/arcade diff --git a/eng/Versions.props b/eng/Versions.props index f602dba5aed5..0461eabe0a23 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,72 +65,72 @@ --> - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 - 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21180.7 + 6.0.0-preview.3.21181.6 6.0.0-preview.3.21180.1 6.0.0-preview.3.21180.1 From 4e08019842b575269f66d924d7ce2edd20154fa0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 1 Apr 2021 08:45:17 +0000 Subject: [PATCH 10/11] Update dependencies from https://github.com/dotnet/efcore build 20210331.4 (#31424) [release/6.0-preview3] Update dependencies from dotnet/efcore --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 97345683b429..a0eaad9de1c2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c - + https://github.com/dotnet/efcore - 9f630149938b30301a2ab47a6b56fcbcba55cbd0 + 41c617eb6538d4566fa24a91e38e00299216898c https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 0461eabe0a23..2df6cda9ab4d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -132,14 +132,14 @@ 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 - 6.0.0-preview.3.21180.1 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21181.4 6.0.0-beta.21167.3 From 718171eeb4bd236ab4f0d9b1ecd97ecc63ec0be1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 1 Apr 2021 23:54:58 +0000 Subject: [PATCH 11/11] [release/6.0-preview3] Update dependencies from dotnet/runtime dotnet/efcore (#31451) [release/6.0-preview3] Update dependencies from dotnet/runtime dotnet/efcore --- eng/Version.Details.xml | 280 ++++++++++++++++++++-------------------- eng/Versions.props | 140 ++++++++++---------- 2 files changed, 210 insertions(+), 210 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a0eaad9de1c2..1b3e62a94100 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,281 +9,281 @@ --> - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/efcore - 41c617eb6538d4566fa24a91e38e00299216898c + a8d74d6ca43430dd5194b49ef79448b7dfe1d134 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 https://github.com/dotnet/runtime @@ -297,16 +297,16 @@ https://github.com/dotnet/runtime 6000597a4740ef72b36b7dbe0c335fa4a861dce2 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 - + https://github.com/dotnet/runtime - a5f523cb2fe9f98df5ca0f404aecfa806489b5ea + 236cb21e3c1992c8cee6935ce67e2125ac4687e8 https://github.com/dotnet/arcade diff --git a/eng/Versions.props b/eng/Versions.props index 2df6cda9ab4d..6e3d683912ed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,81 +65,81 @@ --> - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 6.0.0-preview.3.21175.11 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 - 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 + 6.0.0-preview.3.21201.4 - 6.0.0-preview.3.21181.6 + 6.0.0-preview.3.21201.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 - 6.0.0-preview.3.21181.4 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 + 6.0.0-preview.3.21201.2 6.0.0-beta.21167.3