From ff79e9bda51025acb704a20d6ac51f51f6e857eb Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Mon, 25 Feb 2019 08:13:48 -0800 Subject: [PATCH 1/5] Replace EnvironmentName with Environments #7733 (#7899) --- .../Abstractions/src/EnvironmentName.cs | 3 ++- .../src/Internal/HostingEnvironment.cs | 2 +- .../Hosting/test/StartupManagerTests.cs | 21 ++++++++++--------- .../test/WebHostConfigurationsTests.cs | 9 ++++---- src/Hosting/Hosting/test/WebHostTests.cs | 12 +++++------ .../SampleStartups/StartupFullControl.cs | 3 ++- .../Mvc.Testing/src/WebApplicationFactory.cs | 5 ++--- 7 files changed, 29 insertions(+), 26 deletions(-) diff --git a/src/Hosting/Abstractions/src/EnvironmentName.cs b/src/Hosting/Abstractions/src/EnvironmentName.cs index d5522d1124..df93c4ddf1 100644 --- a/src/Hosting/Abstractions/src/EnvironmentName.cs +++ b/src/Hosting/Abstractions/src/EnvironmentName.cs @@ -6,10 +6,11 @@ namespace Microsoft.AspNetCore.Hosting /// /// Commonly used environment names. /// + [System.Obsolete("This type is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Hosting.Environments.", error: false)] public static class EnvironmentName { public static readonly string Development = "Development"; public static readonly string Staging = "Staging"; public static readonly string Production = "Production"; } -} \ No newline at end of file +} diff --git a/src/Hosting/Hosting/src/Internal/HostingEnvironment.cs b/src/Hosting/Hosting/src/Internal/HostingEnvironment.cs index ee1ab42cdd..1e894ebb1a 100644 --- a/src/Hosting/Hosting/src/Internal/HostingEnvironment.cs +++ b/src/Hosting/Hosting/src/Internal/HostingEnvironment.cs @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.Hosting.Internal public class HostingEnvironment : IHostingEnvironment, Extensions.Hosting.IHostingEnvironment, IWebHostEnvironment #pragma warning restore CS0618 // Type or member is obsolete { - public string EnvironmentName { get; set; } = Hosting.EnvironmentName.Production; + public string EnvironmentName { get; set; } = Extensions.Hosting.Environments.Production; public string ApplicationName { get; set; } diff --git a/src/Hosting/Hosting/test/StartupManagerTests.cs b/src/Hosting/Hosting/test/StartupManagerTests.cs index 75d5ccb98c..8f64fb37e5 100644 --- a/src/Hosting/Hosting/test/StartupManagerTests.cs +++ b/src/Hosting/Hosting/test/StartupManagerTests.cs @@ -11,6 +11,7 @@ using Microsoft.AspNetCore.Hosting.Internal; using Microsoft.AspNetCore.Hosting.Tests.Internal; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; +using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Options; using Xunit; @@ -510,7 +511,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests serviceCollection.AddSingleton, MyContainerFactory>(); var services = serviceCollection.BuildServiceProvider(); - var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), EnvironmentName.Development); + var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), Environments.Development); var app = new ApplicationBuilder(services); app.ApplicationServices = startup.ConfigureServicesDelegate(serviceCollection); @@ -526,7 +527,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests serviceCollection.AddSingleton, MyContainerFactory>(); var services = serviceCollection.BuildServiceProvider(); - var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartupBaseClass), EnvironmentName.Development); + var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartupBaseClass), Environments.Development); var app = new ApplicationBuilder(services); app.ApplicationServices = startup.ConfigureServicesDelegate(serviceCollection); @@ -542,13 +543,13 @@ namespace Microsoft.AspNetCore.Hosting.Tests serviceCollection.AddSingleton, MyContainerFactory>(); var services = serviceCollection.BuildServiceProvider(); - var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartupEnvironmentBased), EnvironmentName.Production); + var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartupEnvironmentBased), Environments.Production); var app = new ApplicationBuilder(services); app.ApplicationServices = startup.ConfigureServicesDelegate(serviceCollection); Assert.IsType(app.ApplicationServices); - Assert.Equal(((MyContainer)app.ApplicationServices).Environment, EnvironmentName.Production); + Assert.Equal(((MyContainer)app.ApplicationServices).Environment, Environments.Production); } [Fact] @@ -557,7 +558,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests var serviceCollection = new ServiceCollection(); var services = serviceCollection.BuildServiceProvider(); - var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), EnvironmentName.Development); + var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), Environments.Development); Assert.Throws(() => startup.ConfigureServicesDelegate(serviceCollection)); } @@ -568,7 +569,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests var serviceCollection = new ServiceCollection(); var services = serviceCollection.BuildServiceProvider(); - Assert.Throws(() => StartupLoader.LoadMethods(services, typeof(MyContainerStartupBaseClass), EnvironmentName.Development)); + Assert.Throws(() => StartupLoader.LoadMethods(services, typeof(MyContainerStartupBaseClass), Environments.Development)); } [Fact] @@ -578,7 +579,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests serviceCollection.AddSingleton, MyContainerFactory>(); var services = serviceCollection.BuildServiceProvider(); - Assert.Throws(() => StartupLoader.LoadMethods(services, typeof(MyContainerStartupWithOverloads), EnvironmentName.Development)); + Assert.Throws(() => StartupLoader.LoadMethods(services, typeof(MyContainerStartupWithOverloads), Environments.Development)); } [Fact] @@ -588,7 +589,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests serviceCollection.AddSingleton, MyBadContainerFactory>(); var services = serviceCollection.BuildServiceProvider(); - var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), EnvironmentName.Development); + var startup = StartupLoader.LoadMethods(services, typeof(MyContainerStartup), Environments.Development); var app = new ApplicationBuilder(services); app.ApplicationServices = startup.ConfigureServicesDelegate(serviceCollection); @@ -629,12 +630,12 @@ namespace Microsoft.AspNetCore.Hosting.Tests public void ConfigureDevelopmentContainer(MyContainer container) { - container.Environment = EnvironmentName.Development; + container.Environment = Environments.Development; } public void ConfigureProductionContainer(MyContainer container) { - container.Environment = EnvironmentName.Production; + container.Environment = Environments.Production; } public void Configure(IApplicationBuilder app) diff --git a/src/Hosting/Hosting/test/WebHostConfigurationsTests.cs b/src/Hosting/Hosting/test/WebHostConfigurationsTests.cs index 88a43a4319..35ac6f8b4c 100644 --- a/src/Hosting/Hosting/test/WebHostConfigurationsTests.cs +++ b/src/Hosting/Hosting/test/WebHostConfigurationsTests.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using Microsoft.AspNetCore.Hosting.Internal; using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; using Xunit; namespace Microsoft.AspNetCore.Hosting.Tests @@ -18,7 +19,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests { WebHostDefaults.WebRootKey, "wwwroot"}, { WebHostDefaults.ApplicationKey, "MyProjectReference"}, { WebHostDefaults.StartupAssemblyKey, "MyProjectReference" }, - { WebHostDefaults.EnvironmentKey, EnvironmentName.Development}, + { WebHostDefaults.EnvironmentKey, Environments.Development}, { WebHostDefaults.DetailedErrorsKey, "true"}, { WebHostDefaults.CaptureStartupErrorsKey, "true" }, { WebHostDefaults.SuppressStatusMessagesKey, "true" } @@ -29,7 +30,7 @@ namespace Microsoft.AspNetCore.Hosting.Tests Assert.Equal("wwwroot", config.WebRoot); Assert.Equal("MyProjectReference", config.ApplicationName); Assert.Equal("MyProjectReference", config.StartupAssembly); - Assert.Equal(EnvironmentName.Development, config.Environment); + Assert.Equal(Environments.Development, config.Environment); Assert.True(config.CaptureStartupErrors); Assert.True(config.DetailedErrors); Assert.True(config.SuppressStatusMessages); @@ -38,10 +39,10 @@ namespace Microsoft.AspNetCore.Hosting.Tests [Fact] public void ReadsOldEnvKey() { - var parameters = new Dictionary() { { "ENVIRONMENT", EnvironmentName.Development } }; + var parameters = new Dictionary() { { "ENVIRONMENT", Environments.Development } }; var config = new WebHostOptions(new ConfigurationBuilder().AddInMemoryCollection(parameters).Build()); - Assert.Equal(EnvironmentName.Development, config.Environment); + Assert.Equal(Environments.Development, config.Environment); } [Theory] diff --git a/src/Hosting/Hosting/test/WebHostTests.cs b/src/Hosting/Hosting/test/WebHostTests.cs index 177ec6c8cd..2b55a00bcb 100644 --- a/src/Hosting/Hosting/test/WebHostTests.cs +++ b/src/Hosting/Hosting/test/WebHostTests.cs @@ -812,8 +812,8 @@ namespace Microsoft.AspNetCore.Hosting #pragma warning disable CS0618 // Type or member is obsolete var env2 = host.Services.GetService(); #pragma warning restore CS0618 // Type or member is obsolete - Assert.Equal(EnvironmentName.Production, env.EnvironmentName); - Assert.Equal(EnvironmentName.Production, env2.EnvironmentName); + Assert.Equal(Environments.Production, env.EnvironmentName); + Assert.Equal(Environments.Production, env2.EnvironmentName); } } @@ -822,7 +822,7 @@ namespace Microsoft.AspNetCore.Hosting { var vals = new Dictionary { - { "Environment", EnvironmentName.Staging } + { "Environment", Environments.Staging } }; var builder = new ConfigurationBuilder() @@ -835,8 +835,8 @@ namespace Microsoft.AspNetCore.Hosting #pragma warning disable CS0618 // Type or member is obsolete var env2 = host.Services.GetService(); #pragma warning restore CS0618 // Type or member is obsolete - Assert.Equal(EnvironmentName.Staging, env.EnvironmentName); - Assert.Equal(EnvironmentName.Staging, env.EnvironmentName); + Assert.Equal(Environments.Staging, env.EnvironmentName); + Assert.Equal(Environments.Staging, env.EnvironmentName); } } @@ -873,7 +873,7 @@ namespace Microsoft.AspNetCore.Hosting { await host.StartAsync(); var env = host.Services.GetRequiredService(); - Assert.True(env.IsEnvironment(EnvironmentName.Production)); + Assert.True(env.IsEnvironment(Environments.Production)); Assert.True(env.IsEnvironment("producTion")); } } diff --git a/src/Hosting/samples/SampleStartups/StartupFullControl.cs b/src/Hosting/samples/SampleStartups/StartupFullControl.cs index f438111050..81a2605557 100644 --- a/src/Hosting/samples/SampleStartups/StartupFullControl.cs +++ b/src/Hosting/samples/SampleStartups/StartupFullControl.cs @@ -4,6 +4,7 @@ using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; // Note that this sample will not run. It is only here to illustrate usage patterns. @@ -25,7 +26,7 @@ namespace SampleStartups .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) // Override the content root with the current directory .UseUrls("http://*:1000", "https://*:902") - .UseEnvironment(EnvironmentName.Development) + .UseEnvironment(Environments.Development) .UseWebRoot("public") .ConfigureServices(services => { diff --git a/src/Mvc/Mvc.Testing/src/WebApplicationFactory.cs b/src/Mvc/Mvc.Testing/src/WebApplicationFactory.cs index 1524622bd4..b817468df7 100644 --- a/src/Mvc/Mvc.Testing/src/WebApplicationFactory.cs +++ b/src/Mvc/Mvc.Testing/src/WebApplicationFactory.cs @@ -13,7 +13,6 @@ using Microsoft.AspNetCore.TestHost; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyModel; using Microsoft.Extensions.Hosting; -using EnvironmentName = Microsoft.Extensions.Hosting.EnvironmentName; namespace Microsoft.AspNetCore.Mvc.Testing { @@ -307,7 +306,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing var hostBuilder = HostFactoryResolver.ResolveHostBuilderFactory(typeof(TEntryPoint).Assembly)?.Invoke(Array.Empty()); if (hostBuilder != null) { - hostBuilder.UseEnvironment(EnvironmentName.Development); + hostBuilder.UseEnvironment(Environments.Development); } return hostBuilder; } @@ -336,7 +335,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing } else { - return builder.UseEnvironment(EnvironmentName.Development); + return builder.UseEnvironment(Environments.Development); } } From 3c558b27b4f08cd9989e086cc975f2d4abd6e122 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Feb 2019 08:56:30 -0800 Subject: [PATCH 2/5] Update dependencies (#7903) --- eng/Version.Details.xml | 374 ++++++++++++++++++++-------------------- eng/Versions.props | 188 ++++++++++---------- 2 files changed, 281 insertions(+), 281 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 74091dcf1b..a4835ca5fb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,4 +1,4 @@ - + - + https://github.com/aspnet/AspNetCore-Tooling - b4570871aa86bbaf5c826306134ed2b837d8f3b2 + 73b1a17aa96a2db7375c6a1a647e1b5a8b038964 - + https://github.com/aspnet/AspNetCore-Tooling - b4570871aa86bbaf5c826306134ed2b837d8f3b2 + 73b1a17aa96a2db7375c6a1a647e1b5a8b038964 - + https://github.com/aspnet/AspNetCore-Tooling - b4570871aa86bbaf5c826306134ed2b837d8f3b2 + 73b1a17aa96a2db7375c6a1a647e1b5a8b038964 - + https://github.com/aspnet/AspNetCore-Tooling - b4570871aa86bbaf5c826306134ed2b837d8f3b2 + 73b1a17aa96a2db7375c6a1a647e1b5a8b038964 - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/EntityFrameworkCore - 542529a022a2260ba94e60bd40fbe319850b8887 + 616e9c4dfe747d54dcb4e88fa10260677898f0ea - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/dotnet/core-setup - 84174943d9ea6cf34ade0dbab8e7f0319378f0ab + cc146b444df76e62d606f3431ff954b0cc112f92 - + https://github.com/dotnet/core-setup - 84174943d9ea6cf34ade0dbab8e7f0319378f0ab + cc146b444df76e62d606f3431ff954b0cc112f92 - + https://github.com/dotnet/core-setup - 84174943d9ea6cf34ade0dbab8e7f0319378f0ab + cc146b444df76e62d606f3431ff954b0cc112f92 - + https://github.com/dotnet/corefx - b07bc5efcad439d5157f65df176e08f26ccb4b88 + fc4468357a6d44ca36f2c9fd94ab541cfa529cf9 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 - + https://github.com/aspnet/Extensions - 924015e98bc443023a6b0eea2c0016b876e4051f + 6a69c6dfb9a23c11b8600dfaab2bcbf58b8478e0 diff --git a/eng/Versions.props b/eng/Versions.props index 5a0236cb92..b2c81a1fab 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -1,4 +1,4 @@ - + - 3.0.0-preview3-27419-3 - 3.0.0-preview3-27419-3 - 3.0.0-preview3-27419-3 + 3.0.0-preview3-27422-6 + 3.0.0-preview3-27422-6 + 3.0.0-preview3-27422-6 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.7.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 1.7.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 - 4.6.0-preview3.19115.9 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.7.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 1.7.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 + 4.6.0-preview3.19121.13 - 3.0.0-preview3.19115.9 + 3.0.0-preview3.19121.13 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 - 3.0.0-preview3.19120.3 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 + 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 - 3.0.0-preview3.19122.12 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 + 3.0.0-preview3.19124.3 - 3.0.0-preview3.19122.5 - 3.0.0-preview3.19122.5 - 3.0.0-preview3.19122.5 - 3.0.0-preview3.19122.5 + 3.0.0-preview3.19124.2 + 3.0.0-preview3.19124.2 + 3.0.0-preview3.19124.2 + 3.0.0-preview3.19124.2