Date: Fri, 12 Jul 2019 11:46:06 -0700
Subject: [PATCH 04/76] Version the SPA template package (#11773)
* Version the SPA template package
* Fix templates
---
build/artifacts.props | 2 +-
src/Templating/NuGetPackageVerifier.json | 4 ++--
.../Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj | 1 +
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/build/artifacts.props b/build/artifacts.props
index 232539cb25..cfcf7445c5 100644
--- a/build/artifacts.props
+++ b/build/artifacts.props
@@ -152,7 +152,7 @@
-
+
diff --git a/src/Templating/NuGetPackageVerifier.json b/src/Templating/NuGetPackageVerifier.json
index a1bfc0f1c5..062bbdbe04 100644
--- a/src/Templating/NuGetPackageVerifier.json
+++ b/src/Templating/NuGetPackageVerifier.json
@@ -24,11 +24,11 @@
"Template"
]
},
- "Microsoft.DotNet.Web.Spa.ProjectTemplates": {
+ "Microsoft.DotNet.Web.Spa.ProjectTemplates.2.2": {
"packageTypes": [
"Template"
]
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/Templating/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj b/src/Templating/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj
index b31f3d8ddd..fb7c42b621 100644
--- a/src/Templating/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj
+++ b/src/Templating/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj
@@ -4,6 +4,7 @@
netcoreapp2.2
+ Microsoft.DotNet.Web.Spa.ProjectTemplates.$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion)
Single Page Application templates for ASP.NET Core
To install the templates in this package, run 'dotnet new --install $(PackageId)::$(PackageVersion)'.
From 6ed7bf85b198a22a3cdd5b61c4eca5657959dadc Mon Sep 17 00:00:00 2001
From: Doug Bunting <6431421+dougbu@users.noreply.github.com>
Date: Fri, 12 Jul 2019 11:11:45 -0700
Subject: [PATCH 05/76] Re-pin System.Threading.Tasks.Extensions - not shipping
this time around
---
build/dependencies.props | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build/dependencies.props b/build/dependencies.props
index da966e4990..0b1adf4cf1 100644
--- a/build/dependencies.props
+++ b/build/dependencies.props
@@ -5,7 +5,6 @@
2.1.12
2.1.12
- 4.5.2
@@ -188,6 +187,7 @@
4.5.0
5.2.0
3.1.1
+ 4.5.3
4.5.3
4.3.4
4.5.3
@@ -205,8 +205,8 @@
4.5.0
4.5.0
4.9.0
+ 4.5.2
4.5.0
- 4.5.3
4.5.3
1.3.7
9.0.1
From 7f1350268a9f5f49977241987a8eb8113a845faa Mon Sep 17 00:00:00 2001
From: Isaac Levin <8878502+isaac2004@users.noreply.github.com>
Date: Fri, 12 Jul 2019 19:23:43 -0400
Subject: [PATCH 06/76] Update Startup.cs
---
.../content/BlazorServerWeb-CSharp/Startup.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Startup.cs b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Startup.cs
index f6d8f25248..f5a91824f6 100644
--- a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Startup.cs
+++ b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Startup.cs
@@ -144,7 +144,7 @@ namespace BlazorServerWeb_CSharp
}
else
{
- app.UseExceptionHandler("/Home/Error");
+ app.UseExceptionHandler("/Error");
#if (RequiresHttps)
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
From 7ba5f7e8b9c09669b9dcbd41c409e22271b5bc72 Mon Sep 17 00:00:00 2001
From: Isaac Levin <8878502+isaac2004@users.noreply.github.com>
Date: Fri, 12 Jul 2019 19:26:14 -0400
Subject: [PATCH 07/76] Add files via upload
---
.../BlazorServerWeb-CSharp/Pages/Error.razor | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.razor
diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.razor b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.razor
new file mode 100644
index 0000000000..cd87ea9518
--- /dev/null
+++ b/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Pages/Error.razor
@@ -0,0 +1,16 @@
+@page "/error"
+
+
+Error.
+An error occurred while processing your request.
+
+Development Mode
+
+ Swapping to Development environment will display more detailed information about the error that occurred.
+
+
+ The Development environment shouldn't be enabled for deployed applications.
+ It can result in displaying sensitive information from exceptions to end users.
+ For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
+ and restarting the app.
+
\ No newline at end of file
From 87a92e52c8b4bb7cb75ff78d53d641b1d34f8775 Mon Sep 17 00:00:00 2001
From: David Fowler
Date: Fri, 12 Jul 2019 22:29:54 -0700
Subject: [PATCH 08/76] Make some pubternal types in data protection (#12121)
- Make CngAuthenticatedEncryptorBase internal
- Left IActivator public because they are used in constructors the XmlKeyManager ctor
---
...AspNetCore.DataProtection.netstandard2.0.cs | 18 ------------------
.../Internal/CngAuthenticatedEncryptorBase.cs | 2 +-
.../src/Internal/DataProtectionBuilder.cs | 2 +-
.../Cng/CngAuthenticatedEncryptorBaseTests.cs | 2 +-
4 files changed, 3 insertions(+), 21 deletions(-)
diff --git a/src/DataProtection/DataProtection/ref/Microsoft.AspNetCore.DataProtection.netstandard2.0.cs b/src/DataProtection/DataProtection/ref/Microsoft.AspNetCore.DataProtection.netstandard2.0.cs
index badd03a3ce..70cd9bfe67 100644
--- a/src/DataProtection/DataProtection/ref/Microsoft.AspNetCore.DataProtection.netstandard2.0.cs
+++ b/src/DataProtection/DataProtection/ref/Microsoft.AspNetCore.DataProtection.netstandard2.0.cs
@@ -217,26 +217,8 @@ namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.Configurat
public System.Xml.Linq.XElement SerializedDescriptorElement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
}
}
-namespace Microsoft.AspNetCore.DataProtection.Cng.Internal
-{
- public abstract partial class CngAuthenticatedEncryptorBase : Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.IAuthenticatedEncryptor, System.IDisposable
- {
- protected CngAuthenticatedEncryptorBase() { }
- public byte[] Decrypt(System.ArraySegment ciphertext, System.ArraySegment additionalAuthenticatedData) { throw null; }
- protected unsafe abstract byte[] DecryptImpl(byte* pbCiphertext, uint cbCiphertext, byte* pbAdditionalAuthenticatedData, uint cbAdditionalAuthenticatedData);
- public abstract void Dispose();
- public byte[] Encrypt(System.ArraySegment plaintext, System.ArraySegment additionalAuthenticatedData) { throw null; }
- public byte[] Encrypt(System.ArraySegment plaintext, System.ArraySegment additionalAuthenticatedData, uint preBufferSize, uint postBufferSize) { throw null; }
- protected unsafe abstract byte[] EncryptImpl(byte* pbPlaintext, uint cbPlaintext, byte* pbAdditionalAuthenticatedData, uint cbAdditionalAuthenticatedData, uint cbPreBuffer, uint cbPostBuffer);
- }
-}
namespace Microsoft.AspNetCore.DataProtection.Internal
{
- public partial class DataProtectionBuilder : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
- {
- public DataProtectionBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection services) { }
- public Microsoft.Extensions.DependencyInjection.IServiceCollection Services { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
- }
public partial interface IActivator
{
object CreateInstance(System.Type expectedBaseType, string implementationTypeName);
diff --git a/src/DataProtection/DataProtection/src/Cng/Internal/CngAuthenticatedEncryptorBase.cs b/src/DataProtection/DataProtection/src/Cng/Internal/CngAuthenticatedEncryptorBase.cs
index 7b7e3e2d79..a6f9bef9eb 100644
--- a/src/DataProtection/DataProtection/src/Cng/Internal/CngAuthenticatedEncryptorBase.cs
+++ b/src/DataProtection/DataProtection/src/Cng/Internal/CngAuthenticatedEncryptorBase.cs
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.DataProtection.Cng.Internal
///
/// Base class used for all CNG-related authentication encryption operations.
///
- public unsafe abstract class CngAuthenticatedEncryptorBase : IOptimizedAuthenticatedEncryptor, IDisposable
+ internal unsafe abstract class CngAuthenticatedEncryptorBase : IOptimizedAuthenticatedEncryptor, IDisposable
{
public byte[] Decrypt(ArraySegment ciphertext, ArraySegment additionalAuthenticatedData)
{
diff --git a/src/DataProtection/DataProtection/src/Internal/DataProtectionBuilder.cs b/src/DataProtection/DataProtection/src/Internal/DataProtectionBuilder.cs
index bc8908c9c4..53ec101992 100644
--- a/src/DataProtection/DataProtection/src/Internal/DataProtectionBuilder.cs
+++ b/src/DataProtection/DataProtection/src/Internal/DataProtectionBuilder.cs
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.DataProtection.Internal
///
/// Default implementation of .
///
- public class DataProtectionBuilder : IDataProtectionBuilder
+ internal class DataProtectionBuilder : IDataProtectionBuilder
{
///
/// Creates a new configuration object linked to a .
diff --git a/src/DataProtection/DataProtection/test/Cng/CngAuthenticatedEncryptorBaseTests.cs b/src/DataProtection/DataProtection/test/Cng/CngAuthenticatedEncryptorBaseTests.cs
index faedbf44e9..dd439785f4 100644
--- a/src/DataProtection/DataProtection/test/Cng/CngAuthenticatedEncryptorBaseTests.cs
+++ b/src/DataProtection/DataProtection/test/Cng/CngAuthenticatedEncryptorBaseTests.cs
@@ -86,7 +86,7 @@ namespace Microsoft.AspNetCore.DataProtection.Cng.Internal
Assert.Equal(new byte[] { 0x20, 0x21, 0x22 }, retVal);
}
- public abstract class MockableEncryptor : CngAuthenticatedEncryptorBase
+ internal abstract class MockableEncryptor : CngAuthenticatedEncryptorBase
{
public override void Dispose()
{
From 6a95fcc5e3451091f480aafd1857bd1dd241aa68 Mon Sep 17 00:00:00 2001
From: "dotnet-maestro[bot]"
<42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date: Sat, 13 Jul 2019 06:59:23 -0700
Subject: [PATCH 09/76] [release/3.0-preview7] Update dependencies from 2
repositories (#12146)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190712.6
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview7.19362.6
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview7.19362.6
- dotnet-ef - 3.0.0-preview7.19362.6
- Microsoft.EntityFrameworkCore - 3.0.0-preview7.19362.6
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview7.19362.6
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview7.19362.6
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview7.19362.6
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.AsyncInterfaces - 1.0.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.App.Ref - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- NETStandard.Library.Ref - 2.1.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview7.19362.9 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview7-27912-14 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview7.19362.4 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190712.5
- Microsoft.NET.Sdk.Razor - 3.0.0-preview7.19362.5
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview7.19362.5
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview7.19362.5
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview7.19362.5
---
eng/Version.Details.xml | 384 ++++++++++++++++++++--------------------
eng/Versions.props | 192 ++++++++++----------
2 files changed, 288 insertions(+), 288 deletions(-)
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 9f1be421c3..e37dcc9a42 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -13,396 +13,396 @@
https://github.com/aspnet/Blazor
10ac2538243650ab287ba9fafe6d05e30c40f9ae
-
+
https://github.com/aspnet/AspNetCore-Tooling
- 0b81b1d4ddaf7b59e6718b140cdd99968f2a0de5
+ 393795bbe6d2748aafd3a30db90042c5aae72180
-
+
https://github.com/aspnet/AspNetCore-Tooling
- 0b81b1d4ddaf7b59e6718b140cdd99968f2a0de5
+ 393795bbe6d2748aafd3a30db90042c5aae72180
-
+
https://github.com/aspnet/AspNetCore-Tooling
- 0b81b1d4ddaf7b59e6718b140cdd99968f2a0de5
+ 393795bbe6d2748aafd3a30db90042c5aae72180
-
+
https://github.com/aspnet/AspNetCore-Tooling
- 0b81b1d4ddaf7b59e6718b140cdd99968f2a0de5
+ 393795bbe6d2748aafd3a30db90042c5aae72180
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/EntityFrameworkCore
- f7e7e91a5dce99c342e014bacea8e852cf9ca741
+ 283ca96f86a1bf16262377037366350512dc125a
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
https://github.com/dotnet/corefx
a28176b5ec68b6da1472934fe9493790d1665cae
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/dotnet/core-setup
- fbe9466dddee8b3bbde6b706598d8f83802d08ce
+ 4da6ee6450e4dd43ef8c05925fec22d9ac3892f3
-
+
https://github.com/dotnet/core-setup
- fbe9466dddee8b3bbde6b706598d8f83802d08ce
+ 4da6ee6450e4dd43ef8c05925fec22d9ac3892f3
-
+
https://github.com/dotnet/core-setup
- fbe9466dddee8b3bbde6b706598d8f83802d08ce
+ 4da6ee6450e4dd43ef8c05925fec22d9ac3892f3
-
+
https://github.com/dotnet/core-setup
- fbe9466dddee8b3bbde6b706598d8f83802d08ce
+ 4da6ee6450e4dd43ef8c05925fec22d9ac3892f3
-
+
https://github.com/dotnet/corefx
- 9c3c40ac8b4f9b56791bc3c18c540079dad8a812
+ 1719a3fe2a5c81b67a4909787da4a02fb0d0d419
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
https://github.com/dotnet/arcade
@@ -416,9 +416,9 @@
https://github.com/dotnet/arcade
9946534da4f73e6242ca105f6798ab58119c9ab0
-
+
https://github.com/aspnet/Extensions
- 0db848f9c0091be8980db79c0b88c519910c4c3b
+ 918f4d16989011843965fe7e7a183f623ea08ed3
https://github.com/dotnet/roslyn
diff --git a/eng/Versions.props b/eng/Versions.props
index 3d796aacf9..7137ec77aa 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -54,110 +54,110 @@
3.3.0-beta1-19351-01
- 3.0.0-preview7-27902-19
- 3.0.0-preview7-27902-19
- 3.0.0-preview7-27902-19
- 2.1.0-preview7-27902-19
+ 3.0.0-preview7-27912-14
+ 3.0.0-preview7-27912-14
+ 3.0.0-preview7-27912-14
+ 2.1.0-preview7-27912-14
- 1.0.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
+ 1.0.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
4.7.0-preview6.19264.9
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 1.7.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
- 4.6.0-preview7.19352.8
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 1.7.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
+ 4.6.0-preview7.19362.9
- 3.0.0-preview7.19352.8
+ 3.0.0-preview7.19362.9
0.10.0-preview7.19351.1
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
- 3.0.0-preview7.19352.13
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
+ 3.0.0-preview7.19362.4
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
- 3.0.0-preview7.19352.17
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
+ 3.0.0-preview7.19362.6
- 3.0.0-preview7.19352.14
- 3.0.0-preview7.19352.14
- 3.0.0-preview7.19352.14
- 3.0.0-preview7.19352.14
+ 3.0.0-preview7.19362.5
+ 3.0.0-preview7.19362.5
+ 3.0.0-preview7.19362.5
+ 3.0.0-preview7.19362.5