From ef5202d981d54c7e5b766ba4fdc9a12f3652ced4 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Mon, 16 Apr 2018 16:23:57 -0700 Subject: [PATCH 1/7] Fix bad update --- build/repo.props | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/repo.props b/build/repo.props index 28bd4b5099..705fcee079 100644 --- a/build/repo.props +++ b/build/repo.props @@ -3,7 +3,8 @@ $(RepositoryRoot)test\Microsoft.AspNetCore.AzureAppServices.FunctionalTests\Microsoft.AspNetCore.AzureAppServices.FunctionalTests.csproj - Internal.AspNetCore.Universe.Lineup`n 2.1.0-rc1-* + Internal.AspNetCore.Universe.Lineup + 2.1.0-rc1-* https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json From 0cb45afdaaaed25a7fe250d3e03bd6dcb4553fc5 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Mon, 16 Apr 2018 16:44:35 -0700 Subject: [PATCH 2/7] Script missed this one --- version.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.props b/version.props index 24f2b00a0a..e27532787e 100644 --- a/version.props +++ b/version.props @@ -1,7 +1,7 @@ 2.1.0 - preview3 + rc1 $(VersionPrefix) $(VersionPrefix)-$(VersionSuffix)-final t000 From 0921e5b60f8eeb474af2c5ec12386d648c40671a Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 19 Apr 2018 11:00:10 -0700 Subject: [PATCH 3/7] Produce the Microsoft.AspNetCore.AzureAppServices.SiteExtension package on normal builds (#188) --- AzureIntegration.sln | 2 +- NuGetPackageVerifier.json | 24 +++++++++++++++---- build/repo.props | 1 - extensions/Directory.Build.props | 12 ++-------- ...ft.AspNetCore.Runtime.SiteExtension.csproj | 1 + ...Core.AzureAppServices.SiteExtension.csproj | 12 +++++----- .../applicationHost.xdt | 0 .../scmApplicationHost.xdt | 0 src/SiteExtensions.props | 12 ++++++++++ ...zureAppServices.SiteExtension.Tests.csproj | 2 +- 10 files changed, 42 insertions(+), 24 deletions(-) rename {extensions => src}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj (71%) rename {extensions => src}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt (100%) rename {extensions => src}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt (100%) create mode 100644 src/SiteExtensions.props diff --git a/AzureIntegration.sln b/AzureIntegration.sln index 5ef2360204..3afad8233f 100644 --- a/AzureIntegration.sln +++ b/AzureIntegration.sln @@ -38,7 +38,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsHostingS EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Web.Xdt.Extensions", "src\Microsoft.Web.Xdt.Extensions\Microsoft.Web.Xdt.Extensions.csproj", "{9B22E525-FEC9-4C7C-9F9C-598C15BD0250}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.AzureAppServices.SiteExtension", "extensions\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj", "{1CE2D76B-39E6-46C0-8F6F-C63E370955A9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.AzureAppServices.SiteExtension", "src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj", "{1CE2D76B-39E6-46C0-8F6F-C63E370955A9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsights.HostingStartup.Tests", "test\ApplicationInsights.HostingStartup.Tests\ApplicationInsights.HostingStartup.Tests.csproj", "{0899A101-E451-40A4-81B0-7AA18202C25D}" EndProject diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index cf7178529c..e65ebe85ec 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -1,16 +1,30 @@ { - "adx": { // Packages written by the ADX team and that ship on NuGet.org + "adx-siteextension": { + "rules": [ + "PackageCopyrightRule", + "RequiredPackageMetadataRule", + "StrictSemanticVersionValidationRule" + ], + "packages": { + "Microsoft.AspNetCore.AzureAppServices.SiteExtension": { + "packageTypes": [ + "AzureSiteExtension" + ] + } + } + }, + "adx": { "rules": [ "AdxVerificationCompositeRule" ], "packages": { - "Microsoft.AspNetCore.AzureAppServicesIntegration": { }, - "Microsoft.Extensions.ApplicationModelDetection": { } + "Microsoft.AspNetCore.AzureAppServicesIntegration": {}, + "Microsoft.Extensions.ApplicationModelDetection": {} } }, - "Default": { // Rules to run for packages not listed in any other set. + "Default": { "rules": [ "DefaultCompositeRule" ] } -} \ No newline at end of file +} diff --git a/build/repo.props b/build/repo.props index 705fcee079..cfaaff9b40 100644 --- a/build/repo.props +++ b/build/repo.props @@ -11,7 +11,6 @@ - diff --git a/extensions/Directory.Build.props b/extensions/Directory.Build.props index 33da9f03c1..472d1b7b8a 100644 --- a/extensions/Directory.Build.props +++ b/extensions/Directory.Build.props @@ -1,15 +1,7 @@ - - net461 - false - AzureSiteExtension - true - false - false - false - content - + + diff --git a/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj b/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj index 6c52b68215..1aab636f41 100644 --- a/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj +++ b/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj @@ -6,6 +6,7 @@ This site extension installs Microsoft.AspNetCore.All, Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes. aspnetcore;AzureSiteExtension AspNetCoreRuntime.$(TrimmedVersion).$(RuntimeArch) + net461 diff --git a/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj b/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj similarity index 71% rename from extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj rename to src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj index 725847a797..cd0ddaa3f2 100644 --- a/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj +++ b/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj @@ -1,23 +1,23 @@  + + - ASP.NET Core Extensions + ASP.NET Core Extensions This extension enables additional functionality for ASP.NET Core on Azure WebSites, such as enabling Azure logging. net461 - false - aspnet;logging;aspnetcore;AzureSiteExtension;keyvault;configuration;dataprotection - content $(MicrosoftNETCoreApp21PackageVersion) + aspnet;logging;aspnetcore;AzureSiteExtension;keyvault;configuration;dataprotection - + - + diff --git a/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt b/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt similarity index 100% rename from extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt rename to src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt diff --git a/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt b/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt similarity index 100% rename from extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt rename to src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt diff --git a/src/SiteExtensions.props b/src/SiteExtensions.props new file mode 100644 index 0000000000..715dbce887 --- /dev/null +++ b/src/SiteExtensions.props @@ -0,0 +1,12 @@ + + + AzureSiteExtension + false + content + true + false + false + false + false + + diff --git a/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj b/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj index f1a8425b4d..9928aadbcc 100644 --- a/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj +++ b/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj @@ -5,7 +5,7 @@ - + PreserveNewest From 7aa792efe65756c88593ddf0f791fb04b3e51852 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 19 Apr 2018 14:48:21 -0700 Subject: [PATCH 4/7] Produce a zip containing site-extension files (#189) --- build/PackSiteExtension.targets | 45 +++++++++++++++++++++++++++++++++ build/repo.props | 4 +++ build/repo.targets | 2 +- 3 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 build/PackSiteExtension.targets diff --git a/build/PackSiteExtension.targets b/build/PackSiteExtension.targets new file mode 100644 index 0000000000..14c00536ca --- /dev/null +++ b/build/PackSiteExtension.targets @@ -0,0 +1,45 @@ + + + $(PackageDependsOn);PackSiteExtensionFiles + $(MSBuildProjectFiles);$(MSBuildThisFileFullPath) + + $(BuildDir)runtime-site-extension-internal-$(PackageVersion).zip + + + + + ZipArchive + $(RepositoryRoot) + shipoob + + + + + + + + + + + + + + $(RepositoryRoot)extensions\Microsoft.AspNetCore.Runtime.SiteExtension\ + + + + + + + + diff --git a/build/repo.props b/build/repo.props index cfaaff9b40..3a586a018d 100644 --- a/build/repo.props +++ b/build/repo.props @@ -1,5 +1,9 @@ + + + Microsoft + $(RepositoryRoot)test\Microsoft.AspNetCore.AzureAppServices.FunctionalTests\Microsoft.AspNetCore.AzureAppServices.FunctionalTests.csproj diff --git a/build/repo.targets b/build/repo.targets index 2e2fb83da6..4095bb0f38 100644 --- a/build/repo.targets +++ b/build/repo.targets @@ -1,5 +1,5 @@ - + True From 53c25198fde1255557cb2aa4239f9686fb5a149d Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 19 Apr 2018 15:08:17 -0700 Subject: [PATCH 5/7] Revert "Produce the Microsoft.AspNetCore.AzureAppServices.SiteExtension package on normal builds (#188)" This reverts commit 0921e5b60f8eeb474af2c5ec12386d648c40671a. --- AzureIntegration.sln | 2 +- NuGetPackageVerifier.json | 24 ++++--------------- build/repo.props | 1 + extensions/Directory.Build.props | 12 ++++++++-- ...Core.AzureAppServices.SiteExtension.csproj | 12 +++++----- .../applicationHost.xdt | 0 .../scmApplicationHost.xdt | 0 ...ft.AspNetCore.Runtime.SiteExtension.csproj | 1 - src/SiteExtensions.props | 12 ---------- ...zureAppServices.SiteExtension.Tests.csproj | 2 +- 10 files changed, 24 insertions(+), 42 deletions(-) rename {src => extensions}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj (71%) rename {src => extensions}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt (100%) rename {src => extensions}/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt (100%) delete mode 100644 src/SiteExtensions.props diff --git a/AzureIntegration.sln b/AzureIntegration.sln index 3afad8233f..5ef2360204 100644 --- a/AzureIntegration.sln +++ b/AzureIntegration.sln @@ -38,7 +38,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsHostingS EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Web.Xdt.Extensions", "src\Microsoft.Web.Xdt.Extensions\Microsoft.Web.Xdt.Extensions.csproj", "{9B22E525-FEC9-4C7C-9F9C-598C15BD0250}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.AzureAppServices.SiteExtension", "src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj", "{1CE2D76B-39E6-46C0-8F6F-C63E370955A9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.AzureAppServices.SiteExtension", "extensions\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj", "{1CE2D76B-39E6-46C0-8F6F-C63E370955A9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsights.HostingStartup.Tests", "test\ApplicationInsights.HostingStartup.Tests\ApplicationInsights.HostingStartup.Tests.csproj", "{0899A101-E451-40A4-81B0-7AA18202C25D}" EndProject diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index e65ebe85ec..cf7178529c 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -1,30 +1,16 @@ { - "adx-siteextension": { - "rules": [ - "PackageCopyrightRule", - "RequiredPackageMetadataRule", - "StrictSemanticVersionValidationRule" - ], - "packages": { - "Microsoft.AspNetCore.AzureAppServices.SiteExtension": { - "packageTypes": [ - "AzureSiteExtension" - ] - } - } - }, - "adx": { + "adx": { // Packages written by the ADX team and that ship on NuGet.org "rules": [ "AdxVerificationCompositeRule" ], "packages": { - "Microsoft.AspNetCore.AzureAppServicesIntegration": {}, - "Microsoft.Extensions.ApplicationModelDetection": {} + "Microsoft.AspNetCore.AzureAppServicesIntegration": { }, + "Microsoft.Extensions.ApplicationModelDetection": { } } }, - "Default": { + "Default": { // Rules to run for packages not listed in any other set. "rules": [ "DefaultCompositeRule" ] } -} +} \ No newline at end of file diff --git a/build/repo.props b/build/repo.props index 3a586a018d..b57455e22a 100644 --- a/build/repo.props +++ b/build/repo.props @@ -15,6 +15,7 @@ + diff --git a/extensions/Directory.Build.props b/extensions/Directory.Build.props index 472d1b7b8a..33da9f03c1 100644 --- a/extensions/Directory.Build.props +++ b/extensions/Directory.Build.props @@ -1,7 +1,15 @@ - - + + net461 + false + AzureSiteExtension + true + false + false + false + content + diff --git a/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj b/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj similarity index 71% rename from src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj rename to extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj index cd0ddaa3f2..725847a797 100644 --- a/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj +++ b/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj @@ -1,23 +1,23 @@  - - - ASP.NET Core Extensions + ASP.NET Core Extensions This extension enables additional functionality for ASP.NET Core on Azure WebSites, such as enabling Azure logging. net461 - $(MicrosoftNETCoreApp21PackageVersion) + false aspnet;logging;aspnetcore;AzureSiteExtension;keyvault;configuration;dataprotection + content + $(MicrosoftNETCoreApp21PackageVersion) - + - + diff --git a/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt b/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt similarity index 100% rename from src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt rename to extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/applicationHost.xdt diff --git a/src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt b/extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt similarity index 100% rename from src/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt rename to extensions/Microsoft.AspNetCore.AzureAppServices.SiteExtension/scmApplicationHost.xdt diff --git a/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj b/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj index 1aab636f41..6c52b68215 100644 --- a/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj +++ b/extensions/Microsoft.AspNetCore.Runtime.SiteExtension/Microsoft.AspNetCore.Runtime.SiteExtension.csproj @@ -6,7 +6,6 @@ This site extension installs Microsoft.AspNetCore.All, Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes. aspnetcore;AzureSiteExtension AspNetCoreRuntime.$(TrimmedVersion).$(RuntimeArch) - net461 diff --git a/src/SiteExtensions.props b/src/SiteExtensions.props deleted file mode 100644 index 715dbce887..0000000000 --- a/src/SiteExtensions.props +++ /dev/null @@ -1,12 +0,0 @@ - - - AzureSiteExtension - false - content - true - false - false - false - false - - diff --git a/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj b/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj index 9928aadbcc..f1a8425b4d 100644 --- a/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj +++ b/test/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests/Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests.csproj @@ -5,7 +5,7 @@ - + PreserveNewest From 97d236d5ae1e07738996abb41ff31ee8cc48e770 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 19 Apr 2018 16:30:31 -0700 Subject: [PATCH 6/7] Set NETStandardImplicitPackageVersion via dependencies.props --- Directory.Build.targets | 1 + build/dependencies.props | 1 + 2 files changed, 2 insertions(+) diff --git a/Directory.Build.targets b/Directory.Build.targets index 894b1d0cf8..53b3f6e1da 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -2,5 +2,6 @@ $(MicrosoftNETCoreApp20PackageVersion) $(MicrosoftNETCoreApp21PackageVersion) + $(NETStandardLibrary20PackageVersion) diff --git a/build/dependencies.props b/build/dependencies.props index a546dea21e..181325786c 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -34,6 +34,7 @@ 2.0.0 2.1.0-preview3-26413-05 15.6.1 + 2.0.1 1.4.0 4.7.49 11.0.2 From 0d9edc691f8316d2ae18903f3210c3df97c7257f Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 19 Apr 2018 22:13:41 -0700 Subject: [PATCH 7/7] Update dependencies.props [auto-updated: dependencies] --- build/dependencies.props | 54 ++++++++++++++++++++-------------------- korebuild-lock.txt | 4 +-- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 181325786c..39b2501dff 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -3,42 +3,42 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 2.1.0-preview3-17018 - 2.1.0-preview3-17018 + 2.1.0-rc1-15774 + 2.1.0-rc1-15772 2.1.1 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 2.1.0-preview2-30187 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 0.5.0-preview2-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 0.5.0-preview2-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 1.1.3 1.1.0-preview - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 - 2.1.0-preview3-32233 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 + 2.1.0-rc1-30613 2.0.0 - 2.1.0-preview3-26413-05 + 2.1.0-rc1-26419-02 15.6.1 - 2.0.1 1.4.0 4.7.49 + 2.0.1 11.0.2 - 1.6.0-preview3-26413-02 + 1.6.0-rc1-26419-03 8.1.4 2.3.1 2.4.0-beta.1.build3945 diff --git a/korebuild-lock.txt b/korebuild-lock.txt index b419d767b9..9d4ef8c888 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.0-preview3-17018 -commithash:af264ca131f212b5ba8aafbc5110fc0fc510a2be +version:2.1.0-rc1-15774 +commithash:ed5ca9de3c652347dbb0158a9a65eff3471d2114