From 7fd08faa67080cbdbe3978075624874d743682eb Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 28 Jun 2018 22:40:41 +0000 Subject: [PATCH 01/55] Updating submodule(s) EntityFrameworkCore => 0d150495e0ec7a1a38240337ce781679b40576c1 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 9ca890848e..0d150495e0 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 9ca890848eb679c65296d47a1fd3570dfb7075b7 +Subproject commit 0d150495e0ec7a1a38240337ce781679b40576c1 From 0c5f0dd9239f48f4695d59a8c8d52ca223502f64 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 28 Jun 2018 17:01:31 -0700 Subject: [PATCH 02/55] Update branding to 3.0.0-alpha1 --- scripts/PatchVersionPrefix.ps1 | 108 +++++++++++++++++++++++++++++++++ version.props | 11 ++-- 2 files changed, 113 insertions(+), 6 deletions(-) create mode 100755 scripts/PatchVersionPrefix.ps1 diff --git a/scripts/PatchVersionPrefix.ps1 b/scripts/PatchVersionPrefix.ps1 new file mode 100755 index 0000000000..cf62428902 --- /dev/null +++ b/scripts/PatchVersionPrefix.ps1 @@ -0,0 +1,108 @@ +#!/usr/bin/env pwsh -c + +<# +.SYNOPSIS + Updates the version.props file in repos to a newer patch version +.PARAMETER Repos + A list of the repositories that should be patched +.PARAMETER Mode + Version bump options: Major, Minor, Patch +.PARAMETER VersionSuffix + The version suffix to use +#> +[cmdletbinding(SupportsShouldProcess = $true)] +param( + [Parameter(Mandatory = $true)] + [string[]]$Repos, + [Parameter(Mandatory = $true)] + [ValidateSet('Major', 'Minor', 'Patch')] + [string]$Mode, + [string]$VersionSuffix = $null, + [switch]$NoCommit +) + +$ErrorActionPreference = 'Stop' + +Import-Module -Scope Local -Force "$PSScriptRoot/common.psm1" + +function SetVersionSuffix([System.Xml.XmlNode]$node) { + if (-not $node) { + return + } + $node.InnerText = $VersionSuffix + return "Setting $($node.Name) to $VersionSuffix" +} + +function BumpVersion([System.Xml.XmlNode]$node) { + if (-not $node) { + return + } + [version] $version = $node.InnerText + + $experimental = $version.Major -eq 0 + + switch ($mode) { + { ($_ -ne 'Patch') -and $experimental} { + $node.InnerText = "{0}.{1}.{2}" -f $version.Major, ($version.Minor + 1), 0 + } + { ($_ -eq 'Major') -and -not $experimental } { + $node.InnerText = "{0}.{1}.{2}" -f ($version.Major + 1), 0, 0 + } + { ($_ -eq 'Minor') -and -not $experimental } { + $node.InnerText = "{0}.{1}.{2}" -f $version.Major, ($version.Minor + 1), 0 + } + 'Patch' { + $node.InnerText = "{0}.{1}.{2}" -f $version.Major, $version.Minor, ($version.Build + 1) + } + } + return "Bumping version from $version to $($node.InnerText)" +} + +foreach ($repo in $Repos) { + $repoPath = "$PSScriptRoot/../modules/$repo" + Push-Location $repoPath + try + { + $path = "$repoPath/version.props" + Write-Host -ForegroundColor Magenta "Updating $repo" + if (-not (Test-Path $path)) { + Write-Warning "$path does not exist" + continue + } + $path = Resolve-Path $path + Write-Verbose "$path" + [xml] $xml = LoadXml $path + + $suffix = $xml.SelectSingleNode('/Project/PropertyGroup/VersionSuffix') + if (-not $suffix) { + write-error "$path does not have VersionSuffix" + } + + if ($VersionSuffix) { + SetVersionSuffix $xml.SelectSingleNode('/Project/PropertyGroup/VersionSuffix') | write-host + SetVersionSuffix $xml.SelectSingleNode('/Project/PropertyGroup/ExperimentalProjectVersionSuffix') | write-host + SetVersionSuffix $xml.SelectSingleNode('/Project/PropertyGroup/ExperimentalVersionSuffix') | write-host + } + + $versionPrefix = $xml.SelectSingleNode('/Project/PropertyGroup/VersionPrefix') + $epxVersionPrefix = $xml.SelectSingleNode('/Project/PropertyGroup/ExperimentalProjectVersionPrefix') + $exVersionPrefix = $xml.SelectSingleNode('/Project/PropertyGroup/ExperimentalVersionPrefix') + BumpVersion $epxVersionPrefix | write-host + BumpVersion $exVersionPrefix | write-host + $message = BumpVersion $versionPrefix + Write-Host $message + + if ($PSCmdlet.ShouldProcess("Update $path")) { + SaveXml $xml $path + if (-not $NoCommit) { + Invoke-Block { & git add $path } + Invoke-Block { & git commit -m $message } + } + } + } + finally + { + Pop-Location + } +} + diff --git a/version.props b/version.props index ea205d06ca..37bc516397 100644 --- a/version.props +++ b/version.props @@ -1,16 +1,16 @@ - 2 - 2 + 3 + 0 0 $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion) - preview1 + alpha1 t000 - $(VersionPrefix) Preview 1 + $(VersionPrefix) Alpha 1 - 0.2.0 + 0.3.0 alpha1 $(PrereleaseVersionLabel) @@ -31,7 +31,6 @@ $(ExperimentalVersionPrefix)-$(ExperimentalVersionSuffix)-final $(ExperimentalVersionSuffix)-$(BuildNumber) - master From 5b0f8118eab093bc4bcb91bf1db5c5d887b4d3c9 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Fri, 29 Jun 2018 16:27:55 -0700 Subject: [PATCH 03/55] Upgrade to .NET Core 3.0.0-preview1-26629-04 (#1240) * Upgrade to .NET Core 3.0.0-preview1-26629-04 --- Directory.Build.targets | 1 + build/PackageArchive.targets | 2 +- build/SharedFx.props | 2 +- build/SharedFx.targets | 6 +- build/artifacts.props | 2 +- build/dependencies.props | 64 ++++++++++--------- build/external-dependencies.props | 2 + build/repo.props | 4 +- build/repo.targets | 1 + build/tools/templates/Archive/Archive.csproj | 2 +- .../tools/templates/SharedFx/SharedFx.csproj | 2 +- .../Microsoft.AspNetCore.All.csproj | 2 +- .../Microsoft.AspNetCore.All.props | 0 .../Microsoft.AspNetCore.All.targets | 4 +- .../lib/{netcoreapp2.2 => netcoreapp3.0}/_._ | 0 .../Microsoft.AspNetCore.App.csproj | 2 +- .../Microsoft.AspNetCore.App.props | 0 .../Microsoft.AspNetCore.App.targets | 4 +- .../lib/{netcoreapp2.2 => netcoreapp3.0}/_._ | 0 .../SharedFx.UnitTests.csproj | 2 +- 20 files changed, 54 insertions(+), 48 deletions(-) rename src/Microsoft.AspNetCore.All/build/{netcoreapp2.2 => netcoreapp3.0}/Microsoft.AspNetCore.All.props (100%) rename src/Microsoft.AspNetCore.All/build/{netcoreapp2.2 => netcoreapp3.0}/Microsoft.AspNetCore.All.targets (81%) rename src/Microsoft.AspNetCore.All/lib/{netcoreapp2.2 => netcoreapp3.0}/_._ (100%) rename src/Microsoft.AspNetCore.App/build/{netcoreapp2.2 => netcoreapp3.0}/Microsoft.AspNetCore.App.props (100%) rename src/Microsoft.AspNetCore.App/build/{netcoreapp2.2 => netcoreapp3.0}/Microsoft.AspNetCore.App.targets (81%) rename src/Microsoft.AspNetCore.App/lib/{netcoreapp2.2 => netcoreapp3.0}/_._ (100%) diff --git a/Directory.Build.targets b/Directory.Build.targets index 73b97f2807..181bfc9f70 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -2,6 +2,7 @@ $(MicrosoftNETCoreApp21PackageVersion) $(MicrosoftNETCoreApp22PackageVersion) + $(MicrosoftNETCoreApp30PackageVersion) $(NETStandardLibrary20PackageVersion) 99.9 diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index 6de709aaef..2cc10c06fb 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -46,7 +46,7 @@ + Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp30PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> diff --git a/build/SharedFx.props b/build/SharedFx.props index babe57db55..e5666bd06f 100644 --- a/build/SharedFx.props +++ b/build/SharedFx.props @@ -23,7 +23,7 @@ .dll .dylib .exe - netcoreapp2.2 + netcoreapp3.0 aspnetcore-runtime diff --git a/build/SharedFx.targets b/build/SharedFx.targets index a909f5df9d..d8fba58ba2 100644 --- a/build/SharedFx.targets +++ b/build/SharedFx.targets @@ -47,7 +47,7 @@ $(CommonProps);DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath) $(CommonProps);DotNetBuildOffline=true $(CommonProps);AspNetUniverseBuildOffline=true - $(CommonProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp22PackageVersion) + $(CommonProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp30PackageVersion) $(CommonProps);AppMetapackageVersion=$(PackageVersion) @@ -173,10 +173,10 @@ SharedFxWorkDirectory=$(AppSharedFxWorkDirectory) - $(AppSharedFxProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp22PackageVersion) + $(AppSharedFxProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp30PackageVersion) $(AppSharedFxProps);SharedFxPackage=Microsoft.AspNetCore.App SharedFxWorkDirectory=$(AllSharedFxWorkDirectory) - $(AllSharedFxProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp22PackageVersion) + $(AllSharedFxProps);RuntimeFrameworkVersion=$(MicrosoftNETCoreApp30PackageVersion) $(AllSharedFxProps);SharedFxPackage=Microsoft.AspNetCore.All $(AllSharedFxProps);SharedFxDep=Microsoft.AspNetCore.App $(AllSharedFxProps);SharedFxDepVersion=$(PackageVersion) diff --git a/build/artifacts.props b/build/artifacts.props index cef18fdf78..ef90fdc504 100644 --- a/build/artifacts.props +++ b/build/artifacts.props @@ -205,7 +205,7 @@ - + diff --git a/build/dependencies.props b/build/dependencies.props index 093df655c2..3bf1878b93 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,44 +1,44 @@ - 4.6.0-preview1-26617-01 - 2.2.0-preview1-26618-02 - - 2.2.0-preview1-26618-02 - 2.2.0-preview1-26618-02 - 4.6.0-preview1-26617-01 + 4.6.0-preview1-26627-04 + 3.0.0-preview1-26629-04 + + 3.0.0-preview1-26629-04 + 3.0.0-preview1-26629-04 + 4.6.0-preview1-26627-04 4.8.0-preview1.5116 - 4.6.0-preview1-26617-01 - 1.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 1.7.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.10.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 + 4.6.0-preview1-26627-04 + 1.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 1.7.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.10.0-preview1-26627-04 + 4.6.0-preview1-26627-04 + 4.6.0-preview1-26627-04 - $(MicrosoftNETCoreAppPackageVersion) - $(MicrosoftNETCoreApp22PackageVersion) + $(MicrosoftNETCoreAppPackageVersion) + $(MicrosoftNETCoreApp30PackageVersion) $(KoreBuildVersion) @@ -97,7 +97,9 @@ 1.1.2 2.0.0 2.1.0 + 2.2.0-preview1-26609-01 $(MicrosoftNETCoreApp21PackageVersion) + $(MicrosoftNETCoreApp22PackageVersion) 1.0.1 15.6.1 3.0.1 diff --git a/build/external-dependencies.props b/build/external-dependencies.props index aa95e4b02b..21ddfa54a6 100644 --- a/build/external-dependencies.props +++ b/build/external-dependencies.props @@ -75,9 +75,11 @@ + + diff --git a/build/repo.props b/build/repo.props index ee0dd1f3df..27d039be6c 100644 --- a/build/repo.props +++ b/build/repo.props @@ -42,12 +42,12 @@ - diff --git a/build/repo.targets b/build/repo.targets index 29d36c6fe9..1cc66888fa 100644 --- a/build/repo.targets +++ b/build/repo.targets @@ -34,6 +34,7 @@ MicrosoftNETCoreAppPackageVersion=$(MicrosoftNETCoreAppPackageVersion); + $(DesignTimeBuildProps);MicrosoftNETCoreApp30PackageVersion=$(MicrosoftNETCoreApp30PackageVersion); $(DesignTimeBuildProps);MicrosoftNETCoreApp22PackageVersion=$(MicrosoftNETCoreApp22PackageVersion); $(DesignTimeBuildProps);MicrosoftNETCoreApp21PackageVersion=$(MicrosoftNETCoreApp21PackageVersion); $(DesignTimeBuildProps);MicrosoftNETCoreApp20PackageVersion=$(MicrosoftNETCoreApp20PackageVersion); diff --git a/build/tools/templates/Archive/Archive.csproj b/build/tools/templates/Archive/Archive.csproj index b953688f1e..b0b60f6777 100644 --- a/build/tools/templates/Archive/Archive.csproj +++ b/build/tools/templates/Archive/Archive.csproj @@ -1,7 +1,7 @@ - netcoreapp2.2 + netcoreapp3.0 false true true diff --git a/build/tools/templates/SharedFx/SharedFx.csproj b/build/tools/templates/SharedFx/SharedFx.csproj index 60d28275ec..8070ebbfe6 100644 --- a/build/tools/templates/SharedFx/SharedFx.csproj +++ b/build/tools/templates/SharedFx/SharedFx.csproj @@ -1,7 +1,7 @@ - netcoreapp2.2 + netcoreapp3.0 true true diff --git a/src/Microsoft.AspNetCore.All/Microsoft.AspNetCore.All.csproj b/src/Microsoft.AspNetCore.All/Microsoft.AspNetCore.All.csproj index 3b9952d08b..d64e5e198e 100644 --- a/src/Microsoft.AspNetCore.All/Microsoft.AspNetCore.All.csproj +++ b/src/Microsoft.AspNetCore.All/Microsoft.AspNetCore.All.csproj @@ -3,7 +3,7 @@ false false - netcoreapp2.2 + netcoreapp3.0 aspnetcore Microsoft.AspNetCore.All false diff --git a/src/Microsoft.AspNetCore.All/build/netcoreapp2.2/Microsoft.AspNetCore.All.props b/src/Microsoft.AspNetCore.All/build/netcoreapp3.0/Microsoft.AspNetCore.All.props similarity index 100% rename from src/Microsoft.AspNetCore.All/build/netcoreapp2.2/Microsoft.AspNetCore.All.props rename to src/Microsoft.AspNetCore.All/build/netcoreapp3.0/Microsoft.AspNetCore.All.props diff --git a/src/Microsoft.AspNetCore.All/build/netcoreapp2.2/Microsoft.AspNetCore.All.targets b/src/Microsoft.AspNetCore.All/build/netcoreapp3.0/Microsoft.AspNetCore.All.targets similarity index 81% rename from src/Microsoft.AspNetCore.All/build/netcoreapp2.2/Microsoft.AspNetCore.All.targets rename to src/Microsoft.AspNetCore.All/build/netcoreapp3.0/Microsoft.AspNetCore.All.targets index ff8736382c..c4f1f46390 100644 --- a/src/Microsoft.AspNetCore.All/build/netcoreapp2.2/Microsoft.AspNetCore.All.targets +++ b/src/Microsoft.AspNetCore.All/build/netcoreapp3.0/Microsoft.AspNetCore.All.targets @@ -12,7 +12,7 @@ + Text="This version of Microsoft.AspNetCore.All is only compatible with the netcoreapp3.0 target framework. Please target netcoreapp3.0 or choose a version of Microsoft.AspNetCore.All compatible with $(TargetFramework)." + Condition="'$(TargetFramework)' != 'netcoreapp3.0'"/> diff --git a/src/Microsoft.AspNetCore.All/lib/netcoreapp2.2/_._ b/src/Microsoft.AspNetCore.All/lib/netcoreapp3.0/_._ similarity index 100% rename from src/Microsoft.AspNetCore.All/lib/netcoreapp2.2/_._ rename to src/Microsoft.AspNetCore.All/lib/netcoreapp3.0/_._ diff --git a/src/Microsoft.AspNetCore.App/Microsoft.AspNetCore.App.csproj b/src/Microsoft.AspNetCore.App/Microsoft.AspNetCore.App.csproj index a1b3b0afe4..1ec21fe5d7 100644 --- a/src/Microsoft.AspNetCore.App/Microsoft.AspNetCore.App.csproj +++ b/src/Microsoft.AspNetCore.App/Microsoft.AspNetCore.App.csproj @@ -3,7 +3,7 @@ false false - netcoreapp2.2 + netcoreapp3.0 aspnetcore Microsoft.AspNetCore.App false diff --git a/src/Microsoft.AspNetCore.App/build/netcoreapp2.2/Microsoft.AspNetCore.App.props b/src/Microsoft.AspNetCore.App/build/netcoreapp3.0/Microsoft.AspNetCore.App.props similarity index 100% rename from src/Microsoft.AspNetCore.App/build/netcoreapp2.2/Microsoft.AspNetCore.App.props rename to src/Microsoft.AspNetCore.App/build/netcoreapp3.0/Microsoft.AspNetCore.App.props diff --git a/src/Microsoft.AspNetCore.App/build/netcoreapp2.2/Microsoft.AspNetCore.App.targets b/src/Microsoft.AspNetCore.App/build/netcoreapp3.0/Microsoft.AspNetCore.App.targets similarity index 81% rename from src/Microsoft.AspNetCore.App/build/netcoreapp2.2/Microsoft.AspNetCore.App.targets rename to src/Microsoft.AspNetCore.App/build/netcoreapp3.0/Microsoft.AspNetCore.App.targets index 2ba815e5da..2e222008cc 100644 --- a/src/Microsoft.AspNetCore.App/build/netcoreapp2.2/Microsoft.AspNetCore.App.targets +++ b/src/Microsoft.AspNetCore.App/build/netcoreapp3.0/Microsoft.AspNetCore.App.targets @@ -12,7 +12,7 @@ + Text="This version of Microsoft.AspNetCore.App is only compatible with the netcoreapp3.0 target framework. Please target netcoreapp3.0 or choose a version of Microsoft.AspNetCore.App compatible with $(TargetFramework)." + Condition="'$(TargetFramework)' != 'netcoreapp3.0'"/> diff --git a/src/Microsoft.AspNetCore.App/lib/netcoreapp2.2/_._ b/src/Microsoft.AspNetCore.App/lib/netcoreapp3.0/_._ similarity index 100% rename from src/Microsoft.AspNetCore.App/lib/netcoreapp2.2/_._ rename to src/Microsoft.AspNetCore.App/lib/netcoreapp3.0/_._ diff --git a/test/SharedFx.UnitTests/SharedFx.UnitTests.csproj b/test/SharedFx.UnitTests/SharedFx.UnitTests.csproj index 7e3e11dfbb..d91518e633 100644 --- a/test/SharedFx.UnitTests/SharedFx.UnitTests.csproj +++ b/test/SharedFx.UnitTests/SharedFx.UnitTests.csproj @@ -1,7 +1,7 @@ - netcoreapp2.2 + netcoreapp3.0 Microsoft.AspNetCore From 0a4b6b3bcf3edef238d85ca768809521aeaef399 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 29 Jun 2018 16:39:41 -0700 Subject: [PATCH 04/55] Update templating submodule --- modules/Templating | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Templating b/modules/Templating index d4b8fee39f..1f2e966454 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit d4b8fee39f47ccc233fc9e618ed7dea66f9301f1 +Subproject commit 1f2e966454d34aa823d667658a399e3162ca50f8 From d2111f27d3b402258de1d3c45a6ddbe0c08add4c Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 29 Jun 2018 16:52:59 -0700 Subject: [PATCH 05/55] Update KoreBuild channel to master --- korebuild.json | 2 +- run.ps1 | 4 ++-- run.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/korebuild.json b/korebuild.json index a7d496a8ad..c24a4e3e41 100644 --- a/korebuild.json +++ b/korebuild.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json", - "channel": "dev", + "channel": "master", "toolsets": { "nodejs": { "minVersion": "8.0", diff --git a/run.ps1 b/run.ps1 index 2c8cd81d8a..ca282886ef 100644 --- a/run.ps1 +++ b/run.ps1 @@ -64,8 +64,8 @@ in the file are overridden by command line parameters. Example config file: ```json { - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json", - "channel": "dev", + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json", + "channel": "master", "toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools" } ``` diff --git a/run.sh b/run.sh index 8cec27061d..1eef4d8194 100755 --- a/run.sh +++ b/run.sh @@ -289,7 +289,7 @@ if [ ! -z "$product_build_id" ]; then msbuild_args[${#msbuild_args[*]}]="-p:DotNetProductBuildId=$product_build_id" fi -[ -z "$channel" ] && channel='dev' +[ -z "$channel" ] && channel='master' [ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools' get_korebuild From c6b33af81f054e2a622937c48ac119dd41d79b33 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 29 Jun 2018 17:02:24 -0700 Subject: [PATCH 06/55] Updating submodule(s) AADIntegration => 28e81276582af23f4c616d9db900664960682074 Antiforgery => 9298193d7037c9b46babaaba7c7f5ae9be71e9df AuthSamples => 6882459a248c10e414e5d1744a9b0845f5727868 AzureIntegration => 218ea6f3033eab25dfbf372bed95830142a17c16 BasicMiddleware => f320511b63da35571e890d53f3906c7761cd00a1 BrowserLink => be187f6810026b6e726e423bca99fc90eaa6d73a Caching => ee13d634568fc5348e09fc090fab40233b1107cc Common => e0f40110ff5e2101231ba54d48961bbd60a07727 Configuration => d469707ab18eef7ed0002f00175a9ad5b0f36250 CORS => 8e4d3aacb3153f2a1338e228f0ea096e242d746a DataProtection => a3484f4a908d73eb73c8194a4e197b06d2625090 DependencyInjection => 94b9cc9ace032f838e068702cc70ce57cc883bc7 Diagnostics => 0a9bb04a60e8833dff47e331cabe51b0ea5e0c46 DotNetTools => 60041b5b2bcb84a9a6b9eb460f6e395a270934c8 EntityFrameworkCore => e61d8f9879129df7745c933496b06ae7ab398ae7 EventNotification => 3223f3dd18150c1326390ec61d31a3af6b5d55a7 FileSystem => faf1f007208001988d30618eca934481ea61dcda Hosting => f9d145887773e0c650e66165e0c61886153bcc0b HtmlAbstractions => 10950eaf9a5e521d61f2f5d171045377f934b3d6 HttpAbstractions => 07d115400e4f8c7a66ba239f230805f03a14ee3d HttpClientFactory => 0677ac9f1e3efeb7557291ed42c726c60bde9c93 HttpSysServer => eba2d7e380fef9f75203bb9a1f4d30827451d512 Identity => c7276ce2f76312ddd7fccad6e399da96b9f6fae1 IISIntegration => 655457edd5f079fb182dfda0de289e07e50de834 JavaScriptServices => 7a0413434577274666ff72ee790b53cc71b22970 JsonPatch => 1a1b34194b387175ef1bc12d2af6480ae1ba9c0c KestrelHttpServer => 2191327b59f87f23f69fff2ac0dba9e58b67141b Localization => 43b974482c7b703c92085c6f68b3b23d8fe32720 Logging => d9b34d1c36fde204bd736d09b89b86451bd82e95 MetaPackages => 1974ad2ccd18e45b63c31ce648205e1428959e93 Microsoft.Data.Sqlite => 2f09c6b41405b84e8aca81be5eca378a6bd78a8c MusicStore => fb78b5ae3e156ab45d687ff0a0ef41d4753e2925 Mvc => 4f1f97b5d524b344c34a25a7031691626d50ec68 MvcPrecompilation => 0e54b2488b62176070a522acb3cc51768b41f0d6 Options => 5b2e45db05b006364872961dc2a6589131d16388 Proxy => 3015029f5169b699dfa16bcf85cfc7ca0aaddae7 Razor => e49de3ea57df8c29a27c338cb2d8546406cd4572 ResponseCaching => c1cb7576a0b86e32aec990c22df29c780af29ca5 Routing => fa47f6b92a8dff8dc6835634d2d9b541b90bac3f Scaffolding => 9efe0f7e05e51bb43c878be49087bdba7456e36d Security => beaa2b443d46ef8adaf5c2a89eb475e1893037c2 ServerTests => 221e959fc9a608ae1bbab8a12d30e039ec9848e1 Session => 1869bd09fabb7ba2b9cdf457fbd5f7eaf6592bea SignalR => 9f79c831598a807aa301b8a0413a535edb1c20f1 StaticFiles => ebb70807f978cd24b1b71813bfc0e77624e879ff WebSockets => 56c5600b20342386de467bb02b7117a785518458 [auto-updated: submodules] --- modules/AADIntegration | 2 +- modules/Antiforgery | 2 +- modules/AuthSamples | 2 +- modules/AzureIntegration | 2 +- modules/BasicMiddleware | 2 +- modules/BrowserLink | 2 +- modules/CORS | 2 +- modules/Caching | 2 +- modules/Common | 2 +- modules/Configuration | 2 +- modules/DataProtection | 2 +- modules/DependencyInjection | 2 +- modules/Diagnostics | 2 +- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- modules/EventNotification | 2 +- modules/FileSystem | 2 +- modules/Hosting | 2 +- modules/HtmlAbstractions | 2 +- modules/HttpAbstractions | 2 +- modules/HttpClientFactory | 2 +- modules/HttpSysServer | 2 +- modules/IISIntegration | 2 +- modules/Identity | 2 +- modules/JavaScriptServices | 2 +- modules/JsonPatch | 2 +- modules/KestrelHttpServer | 2 +- modules/Localization | 2 +- modules/Logging | 2 +- modules/MetaPackages | 2 +- modules/Microsoft.Data.Sqlite | 2 +- modules/MusicStore | 2 +- modules/Mvc | 2 +- modules/MvcPrecompilation | 2 +- modules/Options | 2 +- modules/Proxy | 2 +- modules/Razor | 2 +- modules/ResponseCaching | 2 +- modules/Routing | 2 +- modules/Scaffolding | 2 +- modules/Security | 2 +- modules/ServerTests | 2 +- modules/Session | 2 +- modules/SignalR | 2 +- modules/StaticFiles | 2 +- modules/WebSockets | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) diff --git a/modules/AADIntegration b/modules/AADIntegration index fb630c8ba2..28e8127658 160000 --- a/modules/AADIntegration +++ b/modules/AADIntegration @@ -1 +1 @@ -Subproject commit fb630c8ba2eebd1f50e2fa7a637ad0c98e4fee70 +Subproject commit 28e81276582af23f4c616d9db900664960682074 diff --git a/modules/Antiforgery b/modules/Antiforgery index 164c6cdfcb..9298193d70 160000 --- a/modules/Antiforgery +++ b/modules/Antiforgery @@ -1 +1 @@ -Subproject commit 164c6cdfcbc07d0e32b7b7872ebed04714e903a2 +Subproject commit 9298193d7037c9b46babaaba7c7f5ae9be71e9df diff --git a/modules/AuthSamples b/modules/AuthSamples index bbded609b2..6882459a24 160000 --- a/modules/AuthSamples +++ b/modules/AuthSamples @@ -1 +1 @@ -Subproject commit bbded609b2266f5abd6cfee724ef487f770977fb +Subproject commit 6882459a248c10e414e5d1744a9b0845f5727868 diff --git a/modules/AzureIntegration b/modules/AzureIntegration index dd3eda2fe4..218ea6f303 160000 --- a/modules/AzureIntegration +++ b/modules/AzureIntegration @@ -1 +1 @@ -Subproject commit dd3eda2fe401a686fa6e392c63fd738acc2ba4fb +Subproject commit 218ea6f3033eab25dfbf372bed95830142a17c16 diff --git a/modules/BasicMiddleware b/modules/BasicMiddleware index 68a14eecf1..f320511b63 160000 --- a/modules/BasicMiddleware +++ b/modules/BasicMiddleware @@ -1 +1 @@ -Subproject commit 68a14eecf11b0a473ba87cec5bb60f32cf380556 +Subproject commit f320511b63da35571e890d53f3906c7761cd00a1 diff --git a/modules/BrowserLink b/modules/BrowserLink index 9079e191d5..be187f6810 160000 --- a/modules/BrowserLink +++ b/modules/BrowserLink @@ -1 +1 @@ -Subproject commit 9079e191d53375338e091b6deb4a8943be794e56 +Subproject commit be187f6810026b6e726e423bca99fc90eaa6d73a diff --git a/modules/CORS b/modules/CORS index 554855cab3..8e4d3aacb3 160000 --- a/modules/CORS +++ b/modules/CORS @@ -1 +1 @@ -Subproject commit 554855cab34961a27a6cf248fbb847b9dd8bd8d4 +Subproject commit 8e4d3aacb3153f2a1338e228f0ea096e242d746a diff --git a/modules/Caching b/modules/Caching index 0a729862e2..ee13d63456 160000 --- a/modules/Caching +++ b/modules/Caching @@ -1 +1 @@ -Subproject commit 0a729862e2c34ffbf27d888b3b6f1e63dbf4b539 +Subproject commit ee13d634568fc5348e09fc090fab40233b1107cc diff --git a/modules/Common b/modules/Common index d3cfd4e0c9..e0f40110ff 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit d3cfd4e0c963353631a6d461fe19fabebd3c76e0 +Subproject commit e0f40110ff5e2101231ba54d48961bbd60a07727 diff --git a/modules/Configuration b/modules/Configuration index e696d10fef..d469707ab1 160000 --- a/modules/Configuration +++ b/modules/Configuration @@ -1 +1 @@ -Subproject commit e696d10fef92bb66452a8908e191427b8e62b38e +Subproject commit d469707ab18eef7ed0002f00175a9ad5b0f36250 diff --git a/modules/DataProtection b/modules/DataProtection index 678fe889c3..a3484f4a90 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 678fe889c34275bf5b4d3769964790f9ec8c6095 +Subproject commit a3484f4a908d73eb73c8194a4e197b06d2625090 diff --git a/modules/DependencyInjection b/modules/DependencyInjection index 9732ad87e5..94b9cc9ace 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit 9732ad87e590401a8005c378d94723cfa522c11c +Subproject commit 94b9cc9ace032f838e068702cc70ce57cc883bc7 diff --git a/modules/Diagnostics b/modules/Diagnostics index 7f463b2793..0a9bb04a60 160000 --- a/modules/Diagnostics +++ b/modules/Diagnostics @@ -1 +1 @@ -Subproject commit 7f463b27931f9614b13c94fc89df13d0b44e8712 +Subproject commit 0a9bb04a60e8833dff47e331cabe51b0ea5e0c46 diff --git a/modules/DotNetTools b/modules/DotNetTools index b882d97277..60041b5b2b 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit b882d9727751f58435368444270495838f236060 +Subproject commit 60041b5b2bcb84a9a6b9eb460f6e395a270934c8 diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 0d150495e0..e61d8f9879 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 0d150495e0ec7a1a38240337ce781679b40576c1 +Subproject commit e61d8f9879129df7745c933496b06ae7ab398ae7 diff --git a/modules/EventNotification b/modules/EventNotification index a4d3ba190d..3223f3dd18 160000 --- a/modules/EventNotification +++ b/modules/EventNotification @@ -1 +1 @@ -Subproject commit a4d3ba190da5ce4a13230307029f051196036dc7 +Subproject commit 3223f3dd18150c1326390ec61d31a3af6b5d55a7 diff --git a/modules/FileSystem b/modules/FileSystem index 9577475b08..faf1f00720 160000 --- a/modules/FileSystem +++ b/modules/FileSystem @@ -1 +1 @@ -Subproject commit 9577475b088299cf4c88e5c3ecae8a6876ab14d2 +Subproject commit faf1f007208001988d30618eca934481ea61dcda diff --git a/modules/Hosting b/modules/Hosting index 2a98db6a73..f9d1458877 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 2a98db6a73512b8e36f55a1e6678461c34f4cc4d +Subproject commit f9d145887773e0c650e66165e0c61886153bcc0b diff --git a/modules/HtmlAbstractions b/modules/HtmlAbstractions index fdf97c547e..10950eaf9a 160000 --- a/modules/HtmlAbstractions +++ b/modules/HtmlAbstractions @@ -1 +1 @@ -Subproject commit fdf97c547ed8a38118fd5866ebd42b4aff609579 +Subproject commit 10950eaf9a5e521d61f2f5d171045377f934b3d6 diff --git a/modules/HttpAbstractions b/modules/HttpAbstractions index 0f4f1950f1..07d115400e 160000 --- a/modules/HttpAbstractions +++ b/modules/HttpAbstractions @@ -1 +1 @@ -Subproject commit 0f4f1950f15323e7cda7665b7e277efdd6034531 +Subproject commit 07d115400e4f8c7a66ba239f230805f03a14ee3d diff --git a/modules/HttpClientFactory b/modules/HttpClientFactory index eea2ba82e8..0677ac9f1e 160000 --- a/modules/HttpClientFactory +++ b/modules/HttpClientFactory @@ -1 +1 @@ -Subproject commit eea2ba82e83b7a7825a64081ba8b86a29588e577 +Subproject commit 0677ac9f1e3efeb7557291ed42c726c60bde9c93 diff --git a/modules/HttpSysServer b/modules/HttpSysServer index b44f8f61d1..eba2d7e380 160000 --- a/modules/HttpSysServer +++ b/modules/HttpSysServer @@ -1 +1 @@ -Subproject commit b44f8f61d134030a485270c0cf9d875a415ddffe +Subproject commit eba2d7e380fef9f75203bb9a1f4d30827451d512 diff --git a/modules/IISIntegration b/modules/IISIntegration index b84a233d39..655457edd5 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit b84a233d39faaa86591695081b0274fbb4ef2ac4 +Subproject commit 655457edd5f079fb182dfda0de289e07e50de834 diff --git a/modules/Identity b/modules/Identity index d92c2732c5..c7276ce2f7 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit d92c2732c512e5381b14dc60463b8411b9a5c27d +Subproject commit c7276ce2f76312ddd7fccad6e399da96b9f6fae1 diff --git a/modules/JavaScriptServices b/modules/JavaScriptServices index cf659b3fda..7a04134345 160000 --- a/modules/JavaScriptServices +++ b/modules/JavaScriptServices @@ -1 +1 @@ -Subproject commit cf659b3fda367619f3873bd5f0e445698cebe340 +Subproject commit 7a0413434577274666ff72ee790b53cc71b22970 diff --git a/modules/JsonPatch b/modules/JsonPatch index a3ff5cfef7..1a1b34194b 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit a3ff5cfef7e02edf8b7ab05b437dfa4918669b3d +Subproject commit 1a1b34194b387175ef1bc12d2af6480ae1ba9c0c diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index 2ab22ac55a..2191327b59 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit 2ab22ac55a1d1964d61368015336e5b3e16d09c0 +Subproject commit 2191327b59f87f23f69fff2ac0dba9e58b67141b diff --git a/modules/Localization b/modules/Localization index a00708da34..43b974482c 160000 --- a/modules/Localization +++ b/modules/Localization @@ -1 +1 @@ -Subproject commit a00708da349b33e4c3d3afbdc19bac6211a77779 +Subproject commit 43b974482c7b703c92085c6f68b3b23d8fe32720 diff --git a/modules/Logging b/modules/Logging index 0596ca78a1..d9b34d1c36 160000 --- a/modules/Logging +++ b/modules/Logging @@ -1 +1 @@ -Subproject commit 0596ca78a156924dd452396364293ed712700b0e +Subproject commit d9b34d1c36fde204bd736d09b89b86451bd82e95 diff --git a/modules/MetaPackages b/modules/MetaPackages index a6caaec7b4..1974ad2ccd 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit a6caaec7b46a9fcd64fb05b1d12adf5d4b9622c9 +Subproject commit 1974ad2ccd18e45b63c31ce648205e1428959e93 diff --git a/modules/Microsoft.Data.Sqlite b/modules/Microsoft.Data.Sqlite index b62ff3a2e6..2f09c6b414 160000 --- a/modules/Microsoft.Data.Sqlite +++ b/modules/Microsoft.Data.Sqlite @@ -1 +1 @@ -Subproject commit b62ff3a2e632dac6b1ed195f4fa76330101b4df4 +Subproject commit 2f09c6b41405b84e8aca81be5eca378a6bd78a8c diff --git a/modules/MusicStore b/modules/MusicStore index f6470322bc..fb78b5ae3e 160000 --- a/modules/MusicStore +++ b/modules/MusicStore @@ -1 +1 @@ -Subproject commit f6470322bc8895dac87467423afbb0e207f6ead1 +Subproject commit fb78b5ae3e156ab45d687ff0a0ef41d4753e2925 diff --git a/modules/Mvc b/modules/Mvc index 13585f711f..4f1f97b5d5 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 13585f711f942dd22e2d28654fbde388ccb6f3f2 +Subproject commit 4f1f97b5d524b344c34a25a7031691626d50ec68 diff --git a/modules/MvcPrecompilation b/modules/MvcPrecompilation index 3cd73aa2fa..0e54b2488b 160000 --- a/modules/MvcPrecompilation +++ b/modules/MvcPrecompilation @@ -1 +1 @@ -Subproject commit 3cd73aa2fa641db30c0a1454d8e1a0205bdc36da +Subproject commit 0e54b2488b62176070a522acb3cc51768b41f0d6 diff --git a/modules/Options b/modules/Options index e459e307bc..5b2e45db05 160000 --- a/modules/Options +++ b/modules/Options @@ -1 +1 @@ -Subproject commit e459e307bc31044e01c0130861947c91f5504b53 +Subproject commit 5b2e45db05b006364872961dc2a6589131d16388 diff --git a/modules/Proxy b/modules/Proxy index d4eac80152..3015029f51 160000 --- a/modules/Proxy +++ b/modules/Proxy @@ -1 +1 @@ -Subproject commit d4eac8015299f6738fd060e631fd73f99372c84a +Subproject commit 3015029f5169b699dfa16bcf85cfc7ca0aaddae7 diff --git a/modules/Razor b/modules/Razor index 942d4d194c..e49de3ea57 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit 942d4d194ccf18cbcd6e22af3541ff77b7b61192 +Subproject commit e49de3ea57df8c29a27c338cb2d8546406cd4572 diff --git a/modules/ResponseCaching b/modules/ResponseCaching index 79e2664f7c..c1cb7576a0 160000 --- a/modules/ResponseCaching +++ b/modules/ResponseCaching @@ -1 +1 @@ -Subproject commit 79e2664f7c4bc9ed599364e6659be684f3c2036e +Subproject commit c1cb7576a0b86e32aec990c22df29c780af29ca5 diff --git a/modules/Routing b/modules/Routing index 1009705283..fa47f6b92a 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit 1009705283309515006ce302fad52774df168b6a +Subproject commit fa47f6b92a8dff8dc6835634d2d9b541b90bac3f diff --git a/modules/Scaffolding b/modules/Scaffolding index ff7ca1096f..9efe0f7e05 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit ff7ca1096ffe134cad4d2dbeead675a16139a1a4 +Subproject commit 9efe0f7e05e51bb43c878be49087bdba7456e36d diff --git a/modules/Security b/modules/Security index d8821d7eb1..beaa2b443d 160000 --- a/modules/Security +++ b/modules/Security @@ -1 +1 @@ -Subproject commit d8821d7eb120744f5439bcf85ad39c72537e85d3 +Subproject commit beaa2b443d46ef8adaf5c2a89eb475e1893037c2 diff --git a/modules/ServerTests b/modules/ServerTests index 2cb10ef8f2..221e959fc9 160000 --- a/modules/ServerTests +++ b/modules/ServerTests @@ -1 +1 @@ -Subproject commit 2cb10ef8f20f0d1909769856fc6b69f241193fe9 +Subproject commit 221e959fc9a608ae1bbab8a12d30e039ec9848e1 diff --git a/modules/Session b/modules/Session index f268f3ac3d..1869bd09fa 160000 --- a/modules/Session +++ b/modules/Session @@ -1 +1 @@ -Subproject commit f268f3ac3d4b9f758bd5016873a2a716584dbe40 +Subproject commit 1869bd09fabb7ba2b9cdf457fbd5f7eaf6592bea diff --git a/modules/SignalR b/modules/SignalR index f4bf222099..9f79c83159 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit f4bf2220993e5d3ce9724a88bcbdd7d63c485a8f +Subproject commit 9f79c831598a807aa301b8a0413a535edb1c20f1 diff --git a/modules/StaticFiles b/modules/StaticFiles index cfbf87ccb7..ebb70807f9 160000 --- a/modules/StaticFiles +++ b/modules/StaticFiles @@ -1 +1 @@ -Subproject commit cfbf87ccb772ce8cdea292a585ee30bdad1a3101 +Subproject commit ebb70807f978cd24b1b71813bfc0e77624e879ff diff --git a/modules/WebSockets b/modules/WebSockets index d2b5a2c3dc..56c5600b20 160000 --- a/modules/WebSockets +++ b/modules/WebSockets @@ -1 +1 @@ -Subproject commit d2b5a2c3dc7a1d85d0ee889786800096418843e1 +Subproject commit 56c5600b20342386de467bb02b7117a785518458 From 8dcff453d4b4dadc771316204e201293135eb223 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 29 Jun 2018 18:19:36 -0700 Subject: [PATCH 07/55] Revert corefx package updates --- build/dependencies.props | 64 +++++++++++++++++++--------------------- 1 file changed, 31 insertions(+), 33 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 3bf1878b93..093df655c2 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,44 +1,44 @@ - 4.6.0-preview1-26627-04 - 3.0.0-preview1-26629-04 - - 3.0.0-preview1-26629-04 - 3.0.0-preview1-26629-04 - 4.6.0-preview1-26627-04 + 4.6.0-preview1-26617-01 + 2.2.0-preview1-26618-02 + + 2.2.0-preview1-26618-02 + 2.2.0-preview1-26618-02 + 4.6.0-preview1-26617-01 4.8.0-preview1.5116 - 4.6.0-preview1-26627-04 - 1.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 1.7.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.10.0-preview1-26627-04 - 4.6.0-preview1-26627-04 - 4.6.0-preview1-26627-04 + 4.6.0-preview1-26617-01 + 1.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 1.7.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.10.0-preview1-26617-01 + 4.6.0-preview1-26617-01 + 4.6.0-preview1-26617-01 - $(MicrosoftNETCoreAppPackageVersion) - $(MicrosoftNETCoreApp30PackageVersion) + $(MicrosoftNETCoreAppPackageVersion) + $(MicrosoftNETCoreApp22PackageVersion) $(KoreBuildVersion) @@ -97,9 +97,7 @@ 1.1.2 2.0.0 2.1.0 - 2.2.0-preview1-26609-01 $(MicrosoftNETCoreApp21PackageVersion) - $(MicrosoftNETCoreApp22PackageVersion) 1.0.1 15.6.1 3.0.1 From 3fdfb217aa087f0aaacbbac3ce96b586bb2dc3c4 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 29 Jun 2018 18:48:12 -0700 Subject: [PATCH 08/55] Upgrade NETCore.App to 3.0.0-preview1-26629-04 without updating corefx packages --- build/dependencies.props | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 093df655c2..23a26ce25b 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -3,9 +3,9 @@ 4.6.0-preview1-26617-01 2.2.0-preview1-26618-02 - - 2.2.0-preview1-26618-02 - 2.2.0-preview1-26618-02 + + 3.0.0-preview1-26629-04 + 3.0.0-preview1-26629-04 4.6.0-preview1-26617-01 4.8.0-preview1.5116 4.6.0-preview1-26617-01 @@ -37,8 +37,8 @@ - $(MicrosoftNETCoreAppPackageVersion) - $(MicrosoftNETCoreApp22PackageVersion) + $(MicrosoftNETCoreAppPackageVersion) + $(MicrosoftNETCoreApp30PackageVersion) $(KoreBuildVersion) @@ -97,7 +97,9 @@ 1.1.2 2.0.0 2.1.0 + 2.2.0-preview1-26618-02 $(MicrosoftNETCoreApp21PackageVersion) + $(MicrosoftNETCoreApp22PackageVersion) 1.0.1 15.6.1 3.0.1 From db98c9572c5a6c4d512b191a1338be1a75b43d65 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 29 Jun 2018 18:52:28 -0700 Subject: [PATCH 09/55] Updating BuildTools from 2.2.0-preview1-17091 to 3.0.0-alpha1-10000 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index 01f09b3d51..f0b76184fd 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.2.0-preview1-17091 -commithash:3260c92114dd466700f24301e8e52d007767c54a +version:3.0.0-alpha1-10000 +commithash:b7b88d08d55abc8b71de9abf16e26fc713e332cd From 159740d106a38bcb339cc8fca76b51c880443e2e Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sun, 1 Jul 2018 14:57:54 -0700 Subject: [PATCH 10/55] Updating submodule(s) EntityFrameworkCore => 04607ac00983705b3b1d4d4ca9834364edd36a01 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index e61d8f9879..04607ac009 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit e61d8f9879129df7745c933496b06ae7ab398ae7 +Subproject commit 04607ac00983705b3b1d4d4ca9834364edd36a01 From a21d455b51956e1118c17e6cfc19676c3eebbfaf Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 2 Jul 2018 11:50:02 -0700 Subject: [PATCH 11/55] Change default branch to master --- .appveyor.yml | 1 - .gitmodules | 96 +++++++++++++-------------- .travis.yml | 1 - README.md | 2 +- korebuild.json | 2 +- run.ps1 | 2 +- scripts/UpdateDependenciesCoreFx.ps1 | 4 +- scripts/update_travis_appveyor_yml.py | 2 +- 8 files changed, 54 insertions(+), 56 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 9df1571da9..ead5b5f357 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,7 +4,6 @@ branches: only: - master - /^release\/.*/ - - dev - /^(.*\/)?ci-.*$/ install: - git submodule update --init --recursive diff --git a/.gitmodules b/.gitmodules index aa7c843b31..b867c4c3c1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,192 +1,192 @@ [submodule "modules/AADIntegration"] path = modules/AADIntegration url = https://github.com/aspnet/AADIntegration.git - branch = dev + branch = master [submodule "modules/Antiforgery"] path = modules/Antiforgery url = https://github.com/aspnet/Antiforgery.git - branch = dev + branch = master [submodule "modules/AuthSamples"] path = modules/AuthSamples url = https://github.com/aspnet/AuthSamples.git - branch = dev + branch = master [submodule "modules/AzureIntegration"] path = modules/AzureIntegration url = https://github.com/aspnet/AzureIntegration.git - branch = dev + branch = master [submodule "modules/BasicMiddleware"] path = modules/BasicMiddleware url = https://github.com/aspnet/BasicMiddleware.git - branch = dev + branch = master [submodule "modules/BrowserLink"] path = modules/BrowserLink url = https://github.com/aspnet/BrowserLink.git - branch = dev + branch = master [submodule "modules/Caching"] path = modules/Caching url = https://github.com/aspnet/Caching.git - branch = dev + branch = master [submodule "modules/Common"] path = modules/Common url = https://github.com/aspnet/Common.git - branch = dev + branch = master [submodule "modules/Configuration"] path = modules/Configuration url = https://github.com/aspnet/Configuration.git - branch = dev + branch = master [submodule "modules/CORS"] path = modules/CORS url = https://github.com/aspnet/CORS.git - branch = dev + branch = master [submodule "modules/DataProtection"] path = modules/DataProtection url = https://github.com/aspnet/DataProtection.git - branch = dev + branch = master [submodule "modules/DependencyInjection"] path = modules/DependencyInjection url = https://github.com/aspnet/DependencyInjection.git - branch = dev + branch = master [submodule "modules/Diagnostics"] path = modules/Diagnostics url = https://github.com/aspnet/Diagnostics.git - branch = dev + branch = master [submodule "modules/DotNetTools"] path = modules/DotNetTools url = https://github.com/aspnet/DotNetTools.git - branch = dev + branch = master [submodule "modules/EntityFrameworkCore"] path = modules/EntityFrameworkCore url = https://github.com/aspnet/EntityFrameworkCore.git - branch = dev + branch = master [submodule "modules/EventNotification"] path = modules/EventNotification url = https://github.com/aspnet/EventNotification.git - branch = dev + branch = master [submodule "modules/FileSystem"] path = modules/FileSystem url = https://github.com/aspnet/FileSystem.git - branch = dev + branch = master [submodule "modules/Hosting"] path = modules/Hosting url = https://github.com/aspnet/Hosting.git - branch = dev + branch = master [submodule "modules/HtmlAbstractions"] path = modules/HtmlAbstractions url = https://github.com/aspnet/HtmlAbstractions.git - branch = dev + branch = master [submodule "modules/HttpAbstractions"] path = modules/HttpAbstractions url = https://github.com/aspnet/HttpAbstractions.git - branch = dev + branch = master [submodule "modules/HttpClientFactory"] path = modules/HttpClientFactory url = https://github.com/aspnet/HttpClientFactory.git - branch = dev + branch = master [submodule "modules/HttpSysServer"] path = modules/HttpSysServer url = https://github.com/aspnet/HttpSysServer.git - branch = dev + branch = master [submodule "modules/Identity"] path = modules/Identity url = https://github.com/aspnet/Identity.git - branch = dev + branch = master [submodule "modules/IISIntegration"] path = modules/IISIntegration url = https://github.com/aspnet/IISIntegration.git - branch = dev + branch = master [submodule "modules/JavaScriptServices"] path = modules/JavaScriptServices url = https://github.com/aspnet/JavaScriptServices.git - branch = dev + branch = master [submodule "modules/JsonPatch"] path = modules/JsonPatch url = https://github.com/aspnet/JsonPatch.git - branch = dev + branch = master [submodule "modules/KestrelHttpServer"] path = modules/KestrelHttpServer url = https://github.com/aspnet/KestrelHttpServer.git - branch = dev + branch = master [submodule "modules/Localization"] path = modules/Localization url = https://github.com/aspnet/Localization.git - branch = dev + branch = master [submodule "modules/Logging"] path = modules/Logging url = https://github.com/aspnet/Logging.git - branch = dev + branch = master [submodule "modules/MetaPackages"] path = modules/MetaPackages url = https://github.com/aspnet/MetaPackages.git - branch = dev + branch = master [submodule "modules/Microsoft.Data.Sqlite"] path = modules/Microsoft.Data.Sqlite url = https://github.com/aspnet/Microsoft.Data.Sqlite.git - branch = dev + branch = master [submodule "modules/MusicStore"] path = modules/MusicStore url = https://github.com/aspnet/MusicStore.git - branch = dev + branch = master [submodule "modules/Mvc"] path = modules/Mvc url = https://github.com/aspnet/Mvc.git - branch = dev + branch = master [submodule "modules/MvcPrecompilation"] path = modules/MvcPrecompilation url = https://github.com/aspnet/MvcPrecompilation.git - branch = dev + branch = master [submodule "modules/Options"] path = modules/Options url = https://github.com/aspnet/Options.git - branch = dev + branch = master [submodule "modules/Proxy"] path = modules/Proxy url = https://github.com/aspnet/Proxy.git - branch = dev + branch = master [submodule "modules/Razor"] path = modules/Razor url = https://github.com/aspnet/Razor.git - branch = dev + branch = master [submodule "modules/ResponseCaching"] path = modules/ResponseCaching url = https://github.com/aspnet/ResponseCaching.git - branch = dev + branch = master [submodule "modules/Routing"] path = modules/Routing url = https://github.com/aspnet/Routing.git - branch = dev + branch = master [submodule "modules/Scaffolding"] path = modules/Scaffolding url = https://github.com/aspnet/Scaffolding.git - branch = dev + branch = master [submodule "modules/Security"] path = modules/Security url = https://github.com/aspnet/Security.git - branch = dev + branch = master [submodule "modules/ServerTests"] path = modules/ServerTests url = https://github.com/aspnet/ServerTests.git - branch = dev + branch = master [submodule "modules/Session"] path = modules/Session url = https://github.com/aspnet/Session.git - branch = dev + branch = master [submodule "modules/SignalR"] path = modules/SignalR url = https://github.com/aspnet/SignalR.git - branch = dev + branch = master [submodule "modules/StaticFiles"] path = modules/StaticFiles url = https://github.com/aspnet/StaticFiles.git - branch = dev + branch = master [submodule "modules/Templating"] path = modules/Templating url = https://github.com/aspnet/Templating.git - branch = dev + branch = master [submodule "modules/WebSockets"] path = modules/WebSockets url = https://github.com/aspnet/WebSockets.git - branch = dev + branch = master [submodule "modules/WebHooks"] path = modules/WebHooks url = https://github.com/aspnet/WebHooks.git - branch = dev + branch = master diff --git a/.travis.yml b/.travis.yml index ffb7a95841..698d1c1d19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,6 @@ branches: only: - master - /^release\/.*/ - - dev - /^(.*\/)?ci-.*$/ script: - ./build.sh -t:CheckUniverse diff --git a/README.md b/README.md index 6d6ac157c6..7bdfab9207 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Microsoft.AspNetCore | [![][metapackage-myget-badge]][metapackage-m [linux-arm-tar-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-linux-arm.tar.gz [linux-musl-x64-tar-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-linux-musl-x64.tar.gz -Platform | Latest (dev branch)
![][badge-master] | release/2.1
![][badge-rel-21] +Platform | Latest (master branch)
![][badge-master] | release/2.1
![][badge-rel-21] :---------------------|:----------------------------------------------------------------|:------------------------------------------------------------------------- Channel name1 | `master` | `release/2.1` Windows (x64) | [Installer (exe)][win-x64-exe]
[Archive (zip)][win-x64-zip] | [Installer (exe)][win-x64-exe-rel-21]
[Archive (zip)][win-x64-zip-rel-21] diff --git a/korebuild.json b/korebuild.json index c24a4e3e41..2a75c43d76 100644 --- a/korebuild.json +++ b/korebuild.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json", + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json", "channel": "master", "toolsets": { "nodejs": { diff --git a/run.ps1 b/run.ps1 index ca282886ef..95f7f2246f 100644 --- a/run.ps1 +++ b/run.ps1 @@ -206,7 +206,7 @@ if (!$DotNetHome) { else { Join-Path $PSScriptRoot '.dotnet'} } -if (!$Channel) { $Channel = 'dev' } +if (!$Channel) { $Channel = 'master' } if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' } if ($PackageVersionPropsUrl) { diff --git a/scripts/UpdateDependenciesCoreFx.ps1 b/scripts/UpdateDependenciesCoreFx.ps1 index 3a46af7cb0..03be551f8a 100644 --- a/scripts/UpdateDependenciesCoreFx.ps1 +++ b/scripts/UpdateDependenciesCoreFx.ps1 @@ -6,7 +6,7 @@ param( [string]$GithubUsername, [string]$GithubToken ) -# This script only works against dev/master at the moment because only master prod-con builds allow you to access their results before the entire chain is finished. +# This script only works against master at the moment because only master prod-con builds allow you to access their results before the entire chain is finished. $ErrorActionPreference = 'Stop' Import-Module -Scope Local -Force "$PSScriptRoot/common.psm1" @@ -108,7 +108,7 @@ Write-Host "Loading deps from $depsPath" [xml] $dependencies = LoadXml $depsPath if (-not $NoCommit) { - $baseBranch = "dev" + $baseBranch = "master" Invoke-Block { & git fetch origin } $currentBranch = Invoke-Block { & git rev-parse --abbrev-ref HEAD } diff --git a/scripts/update_travis_appveyor_yml.py b/scripts/update_travis_appveyor_yml.py index e77bcc25c3..07fde1a9bf 100755 --- a/scripts/update_travis_appveyor_yml.py +++ b/scripts/update_travis_appveyor_yml.py @@ -93,7 +93,7 @@ def transform_yaml_doc(document): if not 'branches' in document: document['branches'] = {} document['branches']['only'] = [ - 'dev', '/^release\/.*$/', '/^(.*\/)?ci-.*$/'] + 'master', '/^release\/.*$/', '/^(.*\/)?ci-.*$/'] return document update(".travis.yml", transform_yaml_doc) From 28dc5601f5e1b3d89472cb1d5e2ab4505b143107 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 2 Jul 2018 12:59:24 -0700 Subject: [PATCH 12/55] Add release/2.2 links to README [ci skip] --- README.md | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7bdfab9207..e3a225ce36 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,18 @@ Microsoft.AspNetCore | [![][metapackage-myget-badge]][metapackage-m [redhat-x64-rpm]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/master/aspnetcore-runtime-latest-x64.rpm [linux-musl-x64-tar]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/master/aspnetcore-runtime-latest-linux-musl-x64.tar.gz +[badge-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-win-x64-version-badge.svg +[win-x64-zip-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-win-x64.zip +[win-x64-exe-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-win-x64.exe +[win-x86-zip-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-win-x86.zip +[win-x86-exe-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-win-x86.exe +[linux-x64-tar-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-linux-x64.tar.gz +[osx-x64-tar-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-osx-x64.tar.gz +[debian-x64-deb-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-x64.deb +[redhat-x64-rpm-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-x64.rpm +[linux-arm-tar-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-linux-arm.tar.gz +[linux-musl-x64-tar-rel-22]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.2/aspnetcore-runtime-latest-linux-musl-x64.tar.gz + [badge-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-win-x64-version-badge.svg [win-x64-zip-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-win-x64.zip [win-x64-exe-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-win-x64.exe @@ -73,17 +85,17 @@ Microsoft.AspNetCore | [![][metapackage-myget-badge]][metapackage-m [linux-arm-tar-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-linux-arm.tar.gz [linux-musl-x64-tar-rel-21]: https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/release/2.1/aspnetcore-runtime-latest-linux-musl-x64.tar.gz -Platform | Latest (master branch)
![][badge-master] | release/2.1
![][badge-rel-21] -:---------------------|:----------------------------------------------------------------|:------------------------------------------------------------------------- -Channel name1 | `master` | `release/2.1` -Windows (x64) | [Installer (exe)][win-x64-exe]
[Archive (zip)][win-x64-zip] | [Installer (exe)][win-x64-exe-rel-21]
[Archive (zip)][win-x64-zip-rel-21] -Windows (x86) | [Installer (exe)][win-x86-exe]
[Archive (zip)][win-x86-zip] | [Installer (exe)][win-x86-exe-rel-21]
[Archive (zip)][win-x86-zip-rel-21] -macOS (x64) | [Archive (tar.gz)][osx-x64-tar] | [Archive (tar.gz)][osx-x64-tar-rel-21] -Linux (x64)
_(for glibc based OS - most common)_ | [Archive (tar.gz)][linux-x64-tar] | [Archive (tar.gz)][linux-x64-tar-rel-21] -Linux (x64 - musl)
_(for musl based OS, such as Alpine Linux)_ | [Archive (tar.gz)][linux-musl-x64-tar] | [Archive (tar.gz)][linux-musl-x64-tar-rel-21] -Linux (arm32) | [Archive (tar.gz)][linux-arm-tar] | [Archive (tar.gz)][linux-arm-tar-rel-21] -Debian/Ubuntu (x64) | [Installer (deb)][debian-x64-deb] | [Installer (deb)][debian-x64-deb-rel-21] -RedHat/Fedora (x64) | [Installer (rpm)][redhat-x64-rpm] | [Installer (rpm)][redhat-x64-rpm-rel-21] +Platform | Latest (master branch)
![][badge-master] | release/2.2
![][badge-rel-22] | release/2.1
![][badge-rel-21] +:---------------------|:----------------------------------------------------------------|:------------------------------------------------------------------------- |:------------------------------------------------------------------------- +Channel name1 | `master` | `release/2.2` | `release/2.1` +Windows (x64) | [Installer (exe)][win-x64-exe]
[Archive (zip)][win-x64-zip] | [Installer (exe)][win-x64-exe-rel-22]
[Archive (zip)][win-x64-zip-rel-22] | [Installer (exe)][win-x64-exe-rel-21]
[Archive (zip)][win-x64-zip-rel-21] +Windows (x86) | [Installer (exe)][win-x86-exe]
[Archive (zip)][win-x86-zip] | [Installer (exe)][win-x86-exe-rel-22]
[Archive (zip)][win-x86-zip-rel-22] | [Installer (exe)][win-x86-exe-rel-21]
[Archive (zip)][win-x86-zip-rel-21] +macOS (x64) | [Archive (tar.gz)][osx-x64-tar] | [Archive (tar.gz)][osx-x64-tar-rel-22] | [Archive (tar.gz)][osx-x64-tar-rel-21] +Linux (x64)
_(for glibc based OS - most common)_ | [Archive (tar.gz)][linux-x64-tar] | [Archive (tar.gz)][linux-x64-tar-rel-22] | [Archive (tar.gz)][linux-x64-tar-rel-21] +Linux (x64 - musl)
_(for musl based OS, such as Alpine Linux)_ | [Archive (tar.gz)][linux-musl-x64-tar] | [Archive (tar.gz)][linux-musl-x64-tar-rel-22] | [Archive (tar.gz)][linux-musl-x64-tar-rel-21] +Linux (arm32) | [Archive (tar.gz)][linux-arm-tar] | [Archive (tar.gz)][linux-arm-tar-rel-22] | [Archive (tar.gz)][linux-arm-tar-rel-21] +Debian/Ubuntu (x64) | [Installer (deb)][debian-x64-deb] | [Installer (deb)][debian-x64-deb-rel-22] | [Installer (deb)][debian-x64-deb-rel-21] +RedHat/Fedora (x64) | [Installer (rpm)][redhat-x64-rpm] | [Installer (rpm)][redhat-x64-rpm-rel-22] | [Installer (rpm)][redhat-x64-rpm-rel-21] > 1 For use with the `-Channel` argument in [dotnet-install.ps1/sh](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script). From c91d6aed734fd763e81903f03f79281e0aae7b4a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 2 Jul 2018 13:26:58 -0700 Subject: [PATCH 13/55] Updating submodule(s) AADIntegration => 566f38d7e8cfdfc4ecef40125a72fd8f5a72f0f6 Antiforgery => 8873a5387ef224fa50e523a340e4da7e1a7158aa AuthSamples => b81183aa181939a2c3b0cf236237a682475dbb08 AzureIntegration => 03b42ccbe83eedaa0a98913aef66785a266480d0 BasicMiddleware => e2ad5d8903e7232a203e488cd659385d73331761 BrowserLink => 00534cc76d3b75bcbec00eaab54e41f00e55595d Caching => 6a91378b71bc4d4eb65fe0a14caab0c2a36d3412 Common => fc86069372526a9e6cc2fb8e133206f3d4a6730a Configuration => 3a005f10d83b3fa9ff92b017e808c4a9c03c9bfb CORS => 36cfd12cfaaf8dda66273cab0aaab3dd8e07951f DataProtection => 19aa1bfc8be750271cd1eea179cecfa044a520ac DependencyInjection => a5ced3ecca40d4dc134905ad13745b74df0e8aa2 Diagnostics => d179d26469b61a861045d78eefd93e17c938b982 DotNetTools => 90c00988bfd586acef4c9309609d046b3f897871 EntityFrameworkCore => 24e0fa850e28300b8fc73a6a082cf884c4f08fd2 EventNotification => 1e200d9cf2726625d93a76657a0094e9eb80ebd6 FileSystem => e52da39d61f086ebf1cb6afb0c603532a2963eab Hosting => 86bfb3ba2c3387d1a1b6a2fbfadd99d5d83e69bd HtmlAbstractions => 163441fd8de1e7a5662ad1ad6c853521b354f158 HttpAbstractions => b141c676cab7b10ea37dd39eb211a1ab0b1ee6e8 HttpClientFactory => 178217a20e286f2cf5d06ffbb39f8eff639ad407 HttpSysServer => dd04840cc0142fd0a325fd50abd85ecff859c624 Identity => 5c315e3d1fd128faf92ec6a188bb493544d801a2 IISIntegration => 7d8599ed5cbb870b1b03921312ff0d2faa8eeecd JavaScriptServices => d742bea01e2d3179e142d708dc5be18ed2784432 JsonPatch => a487da3863c6561afd3bc5cc5c21f67bfbb5a58c KestrelHttpServer => 041b3e9a2b4b0058ad8885fdc2cdf5c69d57260a Localization => dc1592b63d155151ff0bd54baee43cc185ca4f7d Logging => 77ca2f95a2ceb137c8e0bd90f7d02e6b615fa911 MetaPackages => 405c10499aa870efff1fc2ae5ac672ab019549ba Microsoft.Data.Sqlite => 46ddbfb2bf6da6a7d2617b7f0d6f051dc541bd25 MusicStore => 113a0e713552ec1e0edb110dd01aa0594154eead Mvc => 4aed4adf83407a1613807ede5edd1d0f3950867d MvcPrecompilation => 31f2c88b9d7af01641d755428f9d211822ee92bb Options => 0c11054422dd1bf6619a05b704bb3bdbe3ca5b38 Proxy => b7c26d35980fdbb5286d6106a3dc28304abc2d03 Razor => 57fbd1c499bf38310305fa7b08814a61b6400c1b ResponseCaching => 3b731261372cfec3b4ad36cd103ede9096e95d82 Routing => 57ff9d0b480f0ab6619c98599896822f3a28b9ce Scaffolding => 79fb2146f0e9ca267687d5204d3c3722f9ff3eb9 Security => 238f461488746608108d2358a2a3ad3a1117ee9f ServerTests => df96f1344076fe0561c42833d69d579c79d1c9e8 Session => e43c6177fc7abcea846f16238846eb69a71a22c2 SignalR => 422997a59a272e8c7826520c0c1a97e8b714d601 StaticFiles => 768ae44788e4dbfb00432108578a8a1fa1b08491 Templating => 5273e4e7e843672b3379ce08c4c61e3e7b9b4912 WebHooks => b70430bbe9d5abc5595d5d52324ebc4fbdcd8596 WebSockets => 41f28dc07a0cf621cf7218e02976bbc648df9005 [auto-updated: submodules] --- modules/AADIntegration | 2 +- modules/Antiforgery | 2 +- modules/AuthSamples | 2 +- modules/AzureIntegration | 2 +- modules/BasicMiddleware | 2 +- modules/BrowserLink | 2 +- modules/CORS | 2 +- modules/Caching | 2 +- modules/Common | 2 +- modules/Configuration | 2 +- modules/DataProtection | 2 +- modules/DependencyInjection | 2 +- modules/Diagnostics | 2 +- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- modules/EventNotification | 2 +- modules/FileSystem | 2 +- modules/Hosting | 2 +- modules/HtmlAbstractions | 2 +- modules/HttpAbstractions | 2 +- modules/HttpClientFactory | 2 +- modules/HttpSysServer | 2 +- modules/IISIntegration | 2 +- modules/Identity | 2 +- modules/JavaScriptServices | 2 +- modules/JsonPatch | 2 +- modules/KestrelHttpServer | 2 +- modules/Localization | 2 +- modules/Logging | 2 +- modules/MetaPackages | 2 +- modules/Microsoft.Data.Sqlite | 2 +- modules/MusicStore | 2 +- modules/Mvc | 2 +- modules/MvcPrecompilation | 2 +- modules/Options | 2 +- modules/Proxy | 2 +- modules/Razor | 2 +- modules/ResponseCaching | 2 +- modules/Routing | 2 +- modules/Scaffolding | 2 +- modules/Security | 2 +- modules/ServerTests | 2 +- modules/Session | 2 +- modules/SignalR | 2 +- modules/StaticFiles | 2 +- modules/Templating | 2 +- modules/WebHooks | 2 +- modules/WebSockets | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/modules/AADIntegration b/modules/AADIntegration index 28e8127658..566f38d7e8 160000 --- a/modules/AADIntegration +++ b/modules/AADIntegration @@ -1 +1 @@ -Subproject commit 28e81276582af23f4c616d9db900664960682074 +Subproject commit 566f38d7e8cfdfc4ecef40125a72fd8f5a72f0f6 diff --git a/modules/Antiforgery b/modules/Antiforgery index 9298193d70..8873a5387e 160000 --- a/modules/Antiforgery +++ b/modules/Antiforgery @@ -1 +1 @@ -Subproject commit 9298193d7037c9b46babaaba7c7f5ae9be71e9df +Subproject commit 8873a5387ef224fa50e523a340e4da7e1a7158aa diff --git a/modules/AuthSamples b/modules/AuthSamples index 6882459a24..b81183aa18 160000 --- a/modules/AuthSamples +++ b/modules/AuthSamples @@ -1 +1 @@ -Subproject commit 6882459a248c10e414e5d1744a9b0845f5727868 +Subproject commit b81183aa181939a2c3b0cf236237a682475dbb08 diff --git a/modules/AzureIntegration b/modules/AzureIntegration index 218ea6f303..03b42ccbe8 160000 --- a/modules/AzureIntegration +++ b/modules/AzureIntegration @@ -1 +1 @@ -Subproject commit 218ea6f3033eab25dfbf372bed95830142a17c16 +Subproject commit 03b42ccbe83eedaa0a98913aef66785a266480d0 diff --git a/modules/BasicMiddleware b/modules/BasicMiddleware index f320511b63..e2ad5d8903 160000 --- a/modules/BasicMiddleware +++ b/modules/BasicMiddleware @@ -1 +1 @@ -Subproject commit f320511b63da35571e890d53f3906c7761cd00a1 +Subproject commit e2ad5d8903e7232a203e488cd659385d73331761 diff --git a/modules/BrowserLink b/modules/BrowserLink index be187f6810..00534cc76d 160000 --- a/modules/BrowserLink +++ b/modules/BrowserLink @@ -1 +1 @@ -Subproject commit be187f6810026b6e726e423bca99fc90eaa6d73a +Subproject commit 00534cc76d3b75bcbec00eaab54e41f00e55595d diff --git a/modules/CORS b/modules/CORS index 8e4d3aacb3..36cfd12cfa 160000 --- a/modules/CORS +++ b/modules/CORS @@ -1 +1 @@ -Subproject commit 8e4d3aacb3153f2a1338e228f0ea096e242d746a +Subproject commit 36cfd12cfaaf8dda66273cab0aaab3dd8e07951f diff --git a/modules/Caching b/modules/Caching index ee13d63456..6a91378b71 160000 --- a/modules/Caching +++ b/modules/Caching @@ -1 +1 @@ -Subproject commit ee13d634568fc5348e09fc090fab40233b1107cc +Subproject commit 6a91378b71bc4d4eb65fe0a14caab0c2a36d3412 diff --git a/modules/Common b/modules/Common index e0f40110ff..fc86069372 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit e0f40110ff5e2101231ba54d48961bbd60a07727 +Subproject commit fc86069372526a9e6cc2fb8e133206f3d4a6730a diff --git a/modules/Configuration b/modules/Configuration index d469707ab1..3a005f10d8 160000 --- a/modules/Configuration +++ b/modules/Configuration @@ -1 +1 @@ -Subproject commit d469707ab18eef7ed0002f00175a9ad5b0f36250 +Subproject commit 3a005f10d83b3fa9ff92b017e808c4a9c03c9bfb diff --git a/modules/DataProtection b/modules/DataProtection index a3484f4a90..19aa1bfc8b 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit a3484f4a908d73eb73c8194a4e197b06d2625090 +Subproject commit 19aa1bfc8be750271cd1eea179cecfa044a520ac diff --git a/modules/DependencyInjection b/modules/DependencyInjection index 94b9cc9ace..a5ced3ecca 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit 94b9cc9ace032f838e068702cc70ce57cc883bc7 +Subproject commit a5ced3ecca40d4dc134905ad13745b74df0e8aa2 diff --git a/modules/Diagnostics b/modules/Diagnostics index 0a9bb04a60..d179d26469 160000 --- a/modules/Diagnostics +++ b/modules/Diagnostics @@ -1 +1 @@ -Subproject commit 0a9bb04a60e8833dff47e331cabe51b0ea5e0c46 +Subproject commit d179d26469b61a861045d78eefd93e17c938b982 diff --git a/modules/DotNetTools b/modules/DotNetTools index 60041b5b2b..90c00988bf 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit 60041b5b2bcb84a9a6b9eb460f6e395a270934c8 +Subproject commit 90c00988bfd586acef4c9309609d046b3f897871 diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 04607ac009..24e0fa850e 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 04607ac00983705b3b1d4d4ca9834364edd36a01 +Subproject commit 24e0fa850e28300b8fc73a6a082cf884c4f08fd2 diff --git a/modules/EventNotification b/modules/EventNotification index 3223f3dd18..1e200d9cf2 160000 --- a/modules/EventNotification +++ b/modules/EventNotification @@ -1 +1 @@ -Subproject commit 3223f3dd18150c1326390ec61d31a3af6b5d55a7 +Subproject commit 1e200d9cf2726625d93a76657a0094e9eb80ebd6 diff --git a/modules/FileSystem b/modules/FileSystem index faf1f00720..e52da39d61 160000 --- a/modules/FileSystem +++ b/modules/FileSystem @@ -1 +1 @@ -Subproject commit faf1f007208001988d30618eca934481ea61dcda +Subproject commit e52da39d61f086ebf1cb6afb0c603532a2963eab diff --git a/modules/Hosting b/modules/Hosting index f9d1458877..86bfb3ba2c 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit f9d145887773e0c650e66165e0c61886153bcc0b +Subproject commit 86bfb3ba2c3387d1a1b6a2fbfadd99d5d83e69bd diff --git a/modules/HtmlAbstractions b/modules/HtmlAbstractions index 10950eaf9a..163441fd8d 160000 --- a/modules/HtmlAbstractions +++ b/modules/HtmlAbstractions @@ -1 +1 @@ -Subproject commit 10950eaf9a5e521d61f2f5d171045377f934b3d6 +Subproject commit 163441fd8de1e7a5662ad1ad6c853521b354f158 diff --git a/modules/HttpAbstractions b/modules/HttpAbstractions index 07d115400e..b141c676ca 160000 --- a/modules/HttpAbstractions +++ b/modules/HttpAbstractions @@ -1 +1 @@ -Subproject commit 07d115400e4f8c7a66ba239f230805f03a14ee3d +Subproject commit b141c676cab7b10ea37dd39eb211a1ab0b1ee6e8 diff --git a/modules/HttpClientFactory b/modules/HttpClientFactory index 0677ac9f1e..178217a20e 160000 --- a/modules/HttpClientFactory +++ b/modules/HttpClientFactory @@ -1 +1 @@ -Subproject commit 0677ac9f1e3efeb7557291ed42c726c60bde9c93 +Subproject commit 178217a20e286f2cf5d06ffbb39f8eff639ad407 diff --git a/modules/HttpSysServer b/modules/HttpSysServer index eba2d7e380..dd04840cc0 160000 --- a/modules/HttpSysServer +++ b/modules/HttpSysServer @@ -1 +1 @@ -Subproject commit eba2d7e380fef9f75203bb9a1f4d30827451d512 +Subproject commit dd04840cc0142fd0a325fd50abd85ecff859c624 diff --git a/modules/IISIntegration b/modules/IISIntegration index 655457edd5..7d8599ed5c 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 655457edd5f079fb182dfda0de289e07e50de834 +Subproject commit 7d8599ed5cbb870b1b03921312ff0d2faa8eeecd diff --git a/modules/Identity b/modules/Identity index c7276ce2f7..5c315e3d1f 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit c7276ce2f76312ddd7fccad6e399da96b9f6fae1 +Subproject commit 5c315e3d1fd128faf92ec6a188bb493544d801a2 diff --git a/modules/JavaScriptServices b/modules/JavaScriptServices index 7a04134345..d742bea01e 160000 --- a/modules/JavaScriptServices +++ b/modules/JavaScriptServices @@ -1 +1 @@ -Subproject commit 7a0413434577274666ff72ee790b53cc71b22970 +Subproject commit d742bea01e2d3179e142d708dc5be18ed2784432 diff --git a/modules/JsonPatch b/modules/JsonPatch index 1a1b34194b..a487da3863 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit 1a1b34194b387175ef1bc12d2af6480ae1ba9c0c +Subproject commit a487da3863c6561afd3bc5cc5c21f67bfbb5a58c diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index 2191327b59..041b3e9a2b 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit 2191327b59f87f23f69fff2ac0dba9e58b67141b +Subproject commit 041b3e9a2b4b0058ad8885fdc2cdf5c69d57260a diff --git a/modules/Localization b/modules/Localization index 43b974482c..dc1592b63d 160000 --- a/modules/Localization +++ b/modules/Localization @@ -1 +1 @@ -Subproject commit 43b974482c7b703c92085c6f68b3b23d8fe32720 +Subproject commit dc1592b63d155151ff0bd54baee43cc185ca4f7d diff --git a/modules/Logging b/modules/Logging index d9b34d1c36..77ca2f95a2 160000 --- a/modules/Logging +++ b/modules/Logging @@ -1 +1 @@ -Subproject commit d9b34d1c36fde204bd736d09b89b86451bd82e95 +Subproject commit 77ca2f95a2ceb137c8e0bd90f7d02e6b615fa911 diff --git a/modules/MetaPackages b/modules/MetaPackages index 1974ad2ccd..405c10499a 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 1974ad2ccd18e45b63c31ce648205e1428959e93 +Subproject commit 405c10499aa870efff1fc2ae5ac672ab019549ba diff --git a/modules/Microsoft.Data.Sqlite b/modules/Microsoft.Data.Sqlite index 2f09c6b414..46ddbfb2bf 160000 --- a/modules/Microsoft.Data.Sqlite +++ b/modules/Microsoft.Data.Sqlite @@ -1 +1 @@ -Subproject commit 2f09c6b41405b84e8aca81be5eca378a6bd78a8c +Subproject commit 46ddbfb2bf6da6a7d2617b7f0d6f051dc541bd25 diff --git a/modules/MusicStore b/modules/MusicStore index fb78b5ae3e..113a0e7135 160000 --- a/modules/MusicStore +++ b/modules/MusicStore @@ -1 +1 @@ -Subproject commit fb78b5ae3e156ab45d687ff0a0ef41d4753e2925 +Subproject commit 113a0e713552ec1e0edb110dd01aa0594154eead diff --git a/modules/Mvc b/modules/Mvc index 4f1f97b5d5..4aed4adf83 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 4f1f97b5d524b344c34a25a7031691626d50ec68 +Subproject commit 4aed4adf83407a1613807ede5edd1d0f3950867d diff --git a/modules/MvcPrecompilation b/modules/MvcPrecompilation index 0e54b2488b..31f2c88b9d 160000 --- a/modules/MvcPrecompilation +++ b/modules/MvcPrecompilation @@ -1 +1 @@ -Subproject commit 0e54b2488b62176070a522acb3cc51768b41f0d6 +Subproject commit 31f2c88b9d7af01641d755428f9d211822ee92bb diff --git a/modules/Options b/modules/Options index 5b2e45db05..0c11054422 160000 --- a/modules/Options +++ b/modules/Options @@ -1 +1 @@ -Subproject commit 5b2e45db05b006364872961dc2a6589131d16388 +Subproject commit 0c11054422dd1bf6619a05b704bb3bdbe3ca5b38 diff --git a/modules/Proxy b/modules/Proxy index 3015029f51..b7c26d3598 160000 --- a/modules/Proxy +++ b/modules/Proxy @@ -1 +1 @@ -Subproject commit 3015029f5169b699dfa16bcf85cfc7ca0aaddae7 +Subproject commit b7c26d35980fdbb5286d6106a3dc28304abc2d03 diff --git a/modules/Razor b/modules/Razor index e49de3ea57..57fbd1c499 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit e49de3ea57df8c29a27c338cb2d8546406cd4572 +Subproject commit 57fbd1c499bf38310305fa7b08814a61b6400c1b diff --git a/modules/ResponseCaching b/modules/ResponseCaching index c1cb7576a0..3b73126137 160000 --- a/modules/ResponseCaching +++ b/modules/ResponseCaching @@ -1 +1 @@ -Subproject commit c1cb7576a0b86e32aec990c22df29c780af29ca5 +Subproject commit 3b731261372cfec3b4ad36cd103ede9096e95d82 diff --git a/modules/Routing b/modules/Routing index fa47f6b92a..57ff9d0b48 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit fa47f6b92a8dff8dc6835634d2d9b541b90bac3f +Subproject commit 57ff9d0b480f0ab6619c98599896822f3a28b9ce diff --git a/modules/Scaffolding b/modules/Scaffolding index 9efe0f7e05..79fb2146f0 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit 9efe0f7e05e51bb43c878be49087bdba7456e36d +Subproject commit 79fb2146f0e9ca267687d5204d3c3722f9ff3eb9 diff --git a/modules/Security b/modules/Security index beaa2b443d..238f461488 160000 --- a/modules/Security +++ b/modules/Security @@ -1 +1 @@ -Subproject commit beaa2b443d46ef8adaf5c2a89eb475e1893037c2 +Subproject commit 238f461488746608108d2358a2a3ad3a1117ee9f diff --git a/modules/ServerTests b/modules/ServerTests index 221e959fc9..df96f13440 160000 --- a/modules/ServerTests +++ b/modules/ServerTests @@ -1 +1 @@ -Subproject commit 221e959fc9a608ae1bbab8a12d30e039ec9848e1 +Subproject commit df96f1344076fe0561c42833d69d579c79d1c9e8 diff --git a/modules/Session b/modules/Session index 1869bd09fa..e43c6177fc 160000 --- a/modules/Session +++ b/modules/Session @@ -1 +1 @@ -Subproject commit 1869bd09fabb7ba2b9cdf457fbd5f7eaf6592bea +Subproject commit e43c6177fc7abcea846f16238846eb69a71a22c2 diff --git a/modules/SignalR b/modules/SignalR index 9f79c83159..422997a59a 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 9f79c831598a807aa301b8a0413a535edb1c20f1 +Subproject commit 422997a59a272e8c7826520c0c1a97e8b714d601 diff --git a/modules/StaticFiles b/modules/StaticFiles index ebb70807f9..768ae44788 160000 --- a/modules/StaticFiles +++ b/modules/StaticFiles @@ -1 +1 @@ -Subproject commit ebb70807f978cd24b1b71813bfc0e77624e879ff +Subproject commit 768ae44788e4dbfb00432108578a8a1fa1b08491 diff --git a/modules/Templating b/modules/Templating index 1f2e966454..5273e4e7e8 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit 1f2e966454d34aa823d667658a399e3162ca50f8 +Subproject commit 5273e4e7e843672b3379ce08c4c61e3e7b9b4912 diff --git a/modules/WebHooks b/modules/WebHooks index e889d84a31..b70430bbe9 160000 --- a/modules/WebHooks +++ b/modules/WebHooks @@ -1 +1 @@ -Subproject commit e889d84a31f5a0523dfdb0739cf41e522794fedb +Subproject commit b70430bbe9d5abc5595d5d52324ebc4fbdcd8596 diff --git a/modules/WebSockets b/modules/WebSockets index 56c5600b20..41f28dc07a 160000 --- a/modules/WebSockets +++ b/modules/WebSockets @@ -1 +1 @@ -Subproject commit 56c5600b20342386de467bb02b7117a785518458 +Subproject commit 41f28dc07a0cf621cf7218e02976bbc648df9005 From f90a3c8dce499f8efddedd3eec1e36cd7d9560c7 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 2 Jul 2018 22:27:36 +0000 Subject: [PATCH 14/55] Updating submodule(s) SignalR => 125d0e1cd371b076d726dfadc5892a7a769dd560 [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index 422997a59a..125d0e1cd3 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 422997a59a272e8c7826520c0c1a97e8b714d601 +Subproject commit 125d0e1cd371b076d726dfadc5892a7a769dd560 From bdfe59c785d48c47d4804120c0d883dbc07b774d Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 2 Jul 2018 16:18:14 -0700 Subject: [PATCH 15/55] Updating submodule(s) Templating => 6296f4fdab9433f78fbf17d9bfbf1f836d0754a1 [auto-updated: submodules] --- modules/Templating | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Templating b/modules/Templating index 5273e4e7e8..6296f4fdab 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit 5273e4e7e843672b3379ce08c4c61e3e7b9b4912 +Subproject commit 6296f4fdab9433f78fbf17d9bfbf1f836d0754a1 From fc444d7548c1da0396e22add9d01442eb27e0e5c Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 09:37:55 -0700 Subject: [PATCH 16/55] Updating submodule(s) AADIntegration => 8610901960d1a2627480fe5c81b793c8a493fdec Antiforgery => dfea4213e7a1b0545d59e8f817aab0e4bf9124f4 AuthSamples => 3644624307c36fbc222e61b9eb173e9b8c07d080 AzureIntegration => 0397209bb9b70e832d28e40728f65168d90fc88e BasicMiddleware => 675d624144f8bba105333e89a80a7625bc9b26a9 BrowserLink => 92cfa5bf14e15ab04c0178e6dae476ed08173dc5 Caching => 19fc0c0209c3b611d3dd2d50ec40d6bd44300d1d Common => 70f2a2595f8af9f050905cccc6b19334fd593ba2 Configuration => 5831d96651c52a0642685961a784f006764099b1 CORS => ca92227ac3e5ddd27cd1ab5da0368243a85dc488 DataProtection => 19629672cad27a41cb095591872aeb123411592a DependencyInjection => 6a127917905805937e6d5ddb3ed91b0f365fd543 Diagnostics => 769da62e40ee693b079597a3d6f6863e48a56ee8 DotNetTools => 5b5c587943ae33d3658826ca9b62dd05ea675790 EntityFrameworkCore => e1b15ad76b5e18fc224e50f5a227854c7d26a81f EventNotification => 5fe7039ebb411bfee15fac7aefaffd514bdcb73a FileSystem => 28920c37d228f392ccb89c66c2adb667502eda39 Hosting => 97c9510a95e676324ed8fa03d8b6dcf3b1c19ccf HtmlAbstractions => e60d98aa7658c5d9c91324e58a5bb600a4a9db23 HttpAbstractions => d5041b9a333ea355266d0e142aa3cccc87aaaa0b HttpClientFactory => 719b29d8e39698338f6c968a56306d2763f05822 HttpSysServer => 7f14fd15e32d7bbdc74485264cba56dbc6790395 Identity => 6bf092a4605580472820674bd33e4de13281ebb6 IISIntegration => c291d80c19ea66b3afd2d0e7926987274e03d4e2 JavaScriptServices => b1d04c99c98ab0db27cdd5e0b585a8532a576479 JsonPatch => 37d83280198fd7b99ebd149fa23868128d10744b KestrelHttpServer => f7d459326c7ff5120c725e5da57c9d5cb30cd00c Localization => 6fcfe10f5c4138400d3d6e75ca38143e2e8946fe Logging => 4141ae624c713ffde67dd05f5fdeeb9797e8ebab MetaPackages => 622bdeec84fe502e441f296a9af10bc896848167 Microsoft.Data.Sqlite => e63f9482d2d84dd906d7057b82af593f62565506 MusicStore => 3088bf04fbd2aa8e7a8dec49019ba022862dd8c1 Mvc => da556a41b7b21c4f3eb83233fcfe540ed9239eb7 MvcPrecompilation => 5e68c00b9e3fff6fb95e619500e72abd792e84be Options => 406a331bd3dd198e6902e11ba2d42d8809441b2f Proxy => 4bd20c7764335ed2b0b34708f7af583d585f961e Razor => d4c652a7d57b4d4e19949550f06118f3d966230c ResponseCaching => 28ef6fdd2646d4b631e9f7ae323117bd179292d2 Routing => 11ff2b27de244504dc39419f197f0cab405c3dd8 Scaffolding => fcaeaef22a134069202dea5893e0330f8d96287c Security => d0d72782745edc41c79c501ff2210058a4eadb46 ServerTests => 8f9a5409025806581a5e9922704ebe99ea35d59a Session => 2dec6a281c326c5a4f411603d43c94feac38e171 SignalR => e8cc38f8878dc12b9b7574177d78c2160fcc8551 StaticFiles => 8a9db9ace355143424f59b653c141c2b8afd1a39 Templating => ddd01c229cacc240e4c7a6e9bb24f6dfdd8bdb5a WebHooks => 9cc2c2fc04df5c86af7073b7fd32cf817a887c12 WebSockets => e2dd797a996e3c6cd618d7cff6cc6fc7826c3358 [auto-updated: submodules] --- modules/AADIntegration | 2 +- modules/Antiforgery | 2 +- modules/AuthSamples | 2 +- modules/AzureIntegration | 2 +- modules/BasicMiddleware | 2 +- modules/BrowserLink | 2 +- modules/CORS | 2 +- modules/Caching | 2 +- modules/Common | 2 +- modules/Configuration | 2 +- modules/DataProtection | 2 +- modules/DependencyInjection | 2 +- modules/Diagnostics | 2 +- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- modules/EventNotification | 2 +- modules/FileSystem | 2 +- modules/Hosting | 2 +- modules/HtmlAbstractions | 2 +- modules/HttpAbstractions | 2 +- modules/HttpClientFactory | 2 +- modules/HttpSysServer | 2 +- modules/IISIntegration | 2 +- modules/Identity | 2 +- modules/JavaScriptServices | 2 +- modules/JsonPatch | 2 +- modules/KestrelHttpServer | 2 +- modules/Localization | 2 +- modules/Logging | 2 +- modules/MetaPackages | 2 +- modules/Microsoft.Data.Sqlite | 2 +- modules/MusicStore | 2 +- modules/Mvc | 2 +- modules/MvcPrecompilation | 2 +- modules/Options | 2 +- modules/Proxy | 2 +- modules/Razor | 2 +- modules/ResponseCaching | 2 +- modules/Routing | 2 +- modules/Scaffolding | 2 +- modules/Security | 2 +- modules/ServerTests | 2 +- modules/Session | 2 +- modules/SignalR | 2 +- modules/StaticFiles | 2 +- modules/Templating | 2 +- modules/WebHooks | 2 +- modules/WebSockets | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/modules/AADIntegration b/modules/AADIntegration index 566f38d7e8..8610901960 160000 --- a/modules/AADIntegration +++ b/modules/AADIntegration @@ -1 +1 @@ -Subproject commit 566f38d7e8cfdfc4ecef40125a72fd8f5a72f0f6 +Subproject commit 8610901960d1a2627480fe5c81b793c8a493fdec diff --git a/modules/Antiforgery b/modules/Antiforgery index 8873a5387e..dfea4213e7 160000 --- a/modules/Antiforgery +++ b/modules/Antiforgery @@ -1 +1 @@ -Subproject commit 8873a5387ef224fa50e523a340e4da7e1a7158aa +Subproject commit dfea4213e7a1b0545d59e8f817aab0e4bf9124f4 diff --git a/modules/AuthSamples b/modules/AuthSamples index b81183aa18..3644624307 160000 --- a/modules/AuthSamples +++ b/modules/AuthSamples @@ -1 +1 @@ -Subproject commit b81183aa181939a2c3b0cf236237a682475dbb08 +Subproject commit 3644624307c36fbc222e61b9eb173e9b8c07d080 diff --git a/modules/AzureIntegration b/modules/AzureIntegration index 03b42ccbe8..0397209bb9 160000 --- a/modules/AzureIntegration +++ b/modules/AzureIntegration @@ -1 +1 @@ -Subproject commit 03b42ccbe83eedaa0a98913aef66785a266480d0 +Subproject commit 0397209bb9b70e832d28e40728f65168d90fc88e diff --git a/modules/BasicMiddleware b/modules/BasicMiddleware index e2ad5d8903..675d624144 160000 --- a/modules/BasicMiddleware +++ b/modules/BasicMiddleware @@ -1 +1 @@ -Subproject commit e2ad5d8903e7232a203e488cd659385d73331761 +Subproject commit 675d624144f8bba105333e89a80a7625bc9b26a9 diff --git a/modules/BrowserLink b/modules/BrowserLink index 00534cc76d..92cfa5bf14 160000 --- a/modules/BrowserLink +++ b/modules/BrowserLink @@ -1 +1 @@ -Subproject commit 00534cc76d3b75bcbec00eaab54e41f00e55595d +Subproject commit 92cfa5bf14e15ab04c0178e6dae476ed08173dc5 diff --git a/modules/CORS b/modules/CORS index 36cfd12cfa..ca92227ac3 160000 --- a/modules/CORS +++ b/modules/CORS @@ -1 +1 @@ -Subproject commit 36cfd12cfaaf8dda66273cab0aaab3dd8e07951f +Subproject commit ca92227ac3e5ddd27cd1ab5da0368243a85dc488 diff --git a/modules/Caching b/modules/Caching index 6a91378b71..19fc0c0209 160000 --- a/modules/Caching +++ b/modules/Caching @@ -1 +1 @@ -Subproject commit 6a91378b71bc4d4eb65fe0a14caab0c2a36d3412 +Subproject commit 19fc0c0209c3b611d3dd2d50ec40d6bd44300d1d diff --git a/modules/Common b/modules/Common index fc86069372..70f2a2595f 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit fc86069372526a9e6cc2fb8e133206f3d4a6730a +Subproject commit 70f2a2595f8af9f050905cccc6b19334fd593ba2 diff --git a/modules/Configuration b/modules/Configuration index 3a005f10d8..5831d96651 160000 --- a/modules/Configuration +++ b/modules/Configuration @@ -1 +1 @@ -Subproject commit 3a005f10d83b3fa9ff92b017e808c4a9c03c9bfb +Subproject commit 5831d96651c52a0642685961a784f006764099b1 diff --git a/modules/DataProtection b/modules/DataProtection index 19aa1bfc8b..19629672ca 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 19aa1bfc8be750271cd1eea179cecfa044a520ac +Subproject commit 19629672cad27a41cb095591872aeb123411592a diff --git a/modules/DependencyInjection b/modules/DependencyInjection index a5ced3ecca..6a12791790 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit a5ced3ecca40d4dc134905ad13745b74df0e8aa2 +Subproject commit 6a127917905805937e6d5ddb3ed91b0f365fd543 diff --git a/modules/Diagnostics b/modules/Diagnostics index d179d26469..769da62e40 160000 --- a/modules/Diagnostics +++ b/modules/Diagnostics @@ -1 +1 @@ -Subproject commit d179d26469b61a861045d78eefd93e17c938b982 +Subproject commit 769da62e40ee693b079597a3d6f6863e48a56ee8 diff --git a/modules/DotNetTools b/modules/DotNetTools index 90c00988bf..5b5c587943 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit 90c00988bfd586acef4c9309609d046b3f897871 +Subproject commit 5b5c587943ae33d3658826ca9b62dd05ea675790 diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 24e0fa850e..e1b15ad76b 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 24e0fa850e28300b8fc73a6a082cf884c4f08fd2 +Subproject commit e1b15ad76b5e18fc224e50f5a227854c7d26a81f diff --git a/modules/EventNotification b/modules/EventNotification index 1e200d9cf2..5fe7039ebb 160000 --- a/modules/EventNotification +++ b/modules/EventNotification @@ -1 +1 @@ -Subproject commit 1e200d9cf2726625d93a76657a0094e9eb80ebd6 +Subproject commit 5fe7039ebb411bfee15fac7aefaffd514bdcb73a diff --git a/modules/FileSystem b/modules/FileSystem index e52da39d61..28920c37d2 160000 --- a/modules/FileSystem +++ b/modules/FileSystem @@ -1 +1 @@ -Subproject commit e52da39d61f086ebf1cb6afb0c603532a2963eab +Subproject commit 28920c37d228f392ccb89c66c2adb667502eda39 diff --git a/modules/Hosting b/modules/Hosting index 86bfb3ba2c..97c9510a95 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 86bfb3ba2c3387d1a1b6a2fbfadd99d5d83e69bd +Subproject commit 97c9510a95e676324ed8fa03d8b6dcf3b1c19ccf diff --git a/modules/HtmlAbstractions b/modules/HtmlAbstractions index 163441fd8d..e60d98aa76 160000 --- a/modules/HtmlAbstractions +++ b/modules/HtmlAbstractions @@ -1 +1 @@ -Subproject commit 163441fd8de1e7a5662ad1ad6c853521b354f158 +Subproject commit e60d98aa7658c5d9c91324e58a5bb600a4a9db23 diff --git a/modules/HttpAbstractions b/modules/HttpAbstractions index b141c676ca..d5041b9a33 160000 --- a/modules/HttpAbstractions +++ b/modules/HttpAbstractions @@ -1 +1 @@ -Subproject commit b141c676cab7b10ea37dd39eb211a1ab0b1ee6e8 +Subproject commit d5041b9a333ea355266d0e142aa3cccc87aaaa0b diff --git a/modules/HttpClientFactory b/modules/HttpClientFactory index 178217a20e..719b29d8e3 160000 --- a/modules/HttpClientFactory +++ b/modules/HttpClientFactory @@ -1 +1 @@ -Subproject commit 178217a20e286f2cf5d06ffbb39f8eff639ad407 +Subproject commit 719b29d8e39698338f6c968a56306d2763f05822 diff --git a/modules/HttpSysServer b/modules/HttpSysServer index dd04840cc0..7f14fd15e3 160000 --- a/modules/HttpSysServer +++ b/modules/HttpSysServer @@ -1 +1 @@ -Subproject commit dd04840cc0142fd0a325fd50abd85ecff859c624 +Subproject commit 7f14fd15e32d7bbdc74485264cba56dbc6790395 diff --git a/modules/IISIntegration b/modules/IISIntegration index 7d8599ed5c..c291d80c19 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 7d8599ed5cbb870b1b03921312ff0d2faa8eeecd +Subproject commit c291d80c19ea66b3afd2d0e7926987274e03d4e2 diff --git a/modules/Identity b/modules/Identity index 5c315e3d1f..6bf092a460 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 5c315e3d1fd128faf92ec6a188bb493544d801a2 +Subproject commit 6bf092a4605580472820674bd33e4de13281ebb6 diff --git a/modules/JavaScriptServices b/modules/JavaScriptServices index d742bea01e..b1d04c99c9 160000 --- a/modules/JavaScriptServices +++ b/modules/JavaScriptServices @@ -1 +1 @@ -Subproject commit d742bea01e2d3179e142d708dc5be18ed2784432 +Subproject commit b1d04c99c98ab0db27cdd5e0b585a8532a576479 diff --git a/modules/JsonPatch b/modules/JsonPatch index a487da3863..37d8328019 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit a487da3863c6561afd3bc5cc5c21f67bfbb5a58c +Subproject commit 37d83280198fd7b99ebd149fa23868128d10744b diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index 041b3e9a2b..f7d459326c 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit 041b3e9a2b4b0058ad8885fdc2cdf5c69d57260a +Subproject commit f7d459326c7ff5120c725e5da57c9d5cb30cd00c diff --git a/modules/Localization b/modules/Localization index dc1592b63d..6fcfe10f5c 160000 --- a/modules/Localization +++ b/modules/Localization @@ -1 +1 @@ -Subproject commit dc1592b63d155151ff0bd54baee43cc185ca4f7d +Subproject commit 6fcfe10f5c4138400d3d6e75ca38143e2e8946fe diff --git a/modules/Logging b/modules/Logging index 77ca2f95a2..4141ae624c 160000 --- a/modules/Logging +++ b/modules/Logging @@ -1 +1 @@ -Subproject commit 77ca2f95a2ceb137c8e0bd90f7d02e6b615fa911 +Subproject commit 4141ae624c713ffde67dd05f5fdeeb9797e8ebab diff --git a/modules/MetaPackages b/modules/MetaPackages index 405c10499a..622bdeec84 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 405c10499aa870efff1fc2ae5ac672ab019549ba +Subproject commit 622bdeec84fe502e441f296a9af10bc896848167 diff --git a/modules/Microsoft.Data.Sqlite b/modules/Microsoft.Data.Sqlite index 46ddbfb2bf..e63f9482d2 160000 --- a/modules/Microsoft.Data.Sqlite +++ b/modules/Microsoft.Data.Sqlite @@ -1 +1 @@ -Subproject commit 46ddbfb2bf6da6a7d2617b7f0d6f051dc541bd25 +Subproject commit e63f9482d2d84dd906d7057b82af593f62565506 diff --git a/modules/MusicStore b/modules/MusicStore index 113a0e7135..3088bf04fb 160000 --- a/modules/MusicStore +++ b/modules/MusicStore @@ -1 +1 @@ -Subproject commit 113a0e713552ec1e0edb110dd01aa0594154eead +Subproject commit 3088bf04fbd2aa8e7a8dec49019ba022862dd8c1 diff --git a/modules/Mvc b/modules/Mvc index 4aed4adf83..da556a41b7 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 4aed4adf83407a1613807ede5edd1d0f3950867d +Subproject commit da556a41b7b21c4f3eb83233fcfe540ed9239eb7 diff --git a/modules/MvcPrecompilation b/modules/MvcPrecompilation index 31f2c88b9d..5e68c00b9e 160000 --- a/modules/MvcPrecompilation +++ b/modules/MvcPrecompilation @@ -1 +1 @@ -Subproject commit 31f2c88b9d7af01641d755428f9d211822ee92bb +Subproject commit 5e68c00b9e3fff6fb95e619500e72abd792e84be diff --git a/modules/Options b/modules/Options index 0c11054422..406a331bd3 160000 --- a/modules/Options +++ b/modules/Options @@ -1 +1 @@ -Subproject commit 0c11054422dd1bf6619a05b704bb3bdbe3ca5b38 +Subproject commit 406a331bd3dd198e6902e11ba2d42d8809441b2f diff --git a/modules/Proxy b/modules/Proxy index b7c26d3598..4bd20c7764 160000 --- a/modules/Proxy +++ b/modules/Proxy @@ -1 +1 @@ -Subproject commit b7c26d35980fdbb5286d6106a3dc28304abc2d03 +Subproject commit 4bd20c7764335ed2b0b34708f7af583d585f961e diff --git a/modules/Razor b/modules/Razor index 57fbd1c499..d4c652a7d5 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit 57fbd1c499bf38310305fa7b08814a61b6400c1b +Subproject commit d4c652a7d57b4d4e19949550f06118f3d966230c diff --git a/modules/ResponseCaching b/modules/ResponseCaching index 3b73126137..28ef6fdd26 160000 --- a/modules/ResponseCaching +++ b/modules/ResponseCaching @@ -1 +1 @@ -Subproject commit 3b731261372cfec3b4ad36cd103ede9096e95d82 +Subproject commit 28ef6fdd2646d4b631e9f7ae323117bd179292d2 diff --git a/modules/Routing b/modules/Routing index 57ff9d0b48..11ff2b27de 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit 57ff9d0b480f0ab6619c98599896822f3a28b9ce +Subproject commit 11ff2b27de244504dc39419f197f0cab405c3dd8 diff --git a/modules/Scaffolding b/modules/Scaffolding index 79fb2146f0..fcaeaef22a 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit 79fb2146f0e9ca267687d5204d3c3722f9ff3eb9 +Subproject commit fcaeaef22a134069202dea5893e0330f8d96287c diff --git a/modules/Security b/modules/Security index 238f461488..d0d7278274 160000 --- a/modules/Security +++ b/modules/Security @@ -1 +1 @@ -Subproject commit 238f461488746608108d2358a2a3ad3a1117ee9f +Subproject commit d0d72782745edc41c79c501ff2210058a4eadb46 diff --git a/modules/ServerTests b/modules/ServerTests index df96f13440..8f9a540902 160000 --- a/modules/ServerTests +++ b/modules/ServerTests @@ -1 +1 @@ -Subproject commit df96f1344076fe0561c42833d69d579c79d1c9e8 +Subproject commit 8f9a5409025806581a5e9922704ebe99ea35d59a diff --git a/modules/Session b/modules/Session index e43c6177fc..2dec6a281c 160000 --- a/modules/Session +++ b/modules/Session @@ -1 +1 @@ -Subproject commit e43c6177fc7abcea846f16238846eb69a71a22c2 +Subproject commit 2dec6a281c326c5a4f411603d43c94feac38e171 diff --git a/modules/SignalR b/modules/SignalR index 125d0e1cd3..e8cc38f887 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 125d0e1cd371b076d726dfadc5892a7a769dd560 +Subproject commit e8cc38f8878dc12b9b7574177d78c2160fcc8551 diff --git a/modules/StaticFiles b/modules/StaticFiles index 768ae44788..8a9db9ace3 160000 --- a/modules/StaticFiles +++ b/modules/StaticFiles @@ -1 +1 @@ -Subproject commit 768ae44788e4dbfb00432108578a8a1fa1b08491 +Subproject commit 8a9db9ace355143424f59b653c141c2b8afd1a39 diff --git a/modules/Templating b/modules/Templating index 6296f4fdab..ddd01c229c 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit 6296f4fdab9433f78fbf17d9bfbf1f836d0754a1 +Subproject commit ddd01c229cacc240e4c7a6e9bb24f6dfdd8bdb5a diff --git a/modules/WebHooks b/modules/WebHooks index b70430bbe9..9cc2c2fc04 160000 --- a/modules/WebHooks +++ b/modules/WebHooks @@ -1 +1 @@ -Subproject commit b70430bbe9d5abc5595d5d52324ebc4fbdcd8596 +Subproject commit 9cc2c2fc04df5c86af7073b7fd32cf817a887c12 diff --git a/modules/WebSockets b/modules/WebSockets index 41f28dc07a..e2dd797a99 160000 --- a/modules/WebSockets +++ b/modules/WebSockets @@ -1 +1 @@ -Subproject commit 41f28dc07a0cf621cf7218e02976bbc648df9005 +Subproject commit e2dd797a996e3c6cd618d7cff6cc6fc7826c3358 From fd04ad527f0c1ca021bdffad6d2d24a0752024de Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 11:17:43 -0700 Subject: [PATCH 17/55] Updating submodule(s) SignalR => c526f489ce836f715aadbf40b93e4c88cdcc962b [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index e8cc38f887..c526f489ce 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit e8cc38f8878dc12b9b7574177d78c2160fcc8551 +Subproject commit c526f489ce836f715aadbf40b93e4c88cdcc962b From b30499262b00e583ee85f24d151997424715844a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 12:27:57 -0700 Subject: [PATCH 18/55] Updating submodule(s) SignalR => a312c56a58440de1ad33c72946f372b4c9298ed1 [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index c526f489ce..a312c56a58 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit c526f489ce836f715aadbf40b93e4c88cdcc962b +Subproject commit a312c56a58440de1ad33c72946f372b4c9298ed1 From 584245d978f1f4fa8075756d3bcfb142cbfb6cd8 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 21:33:23 +0000 Subject: [PATCH 19/55] Updating submodule(s) SignalR => 896c6692b4fdaee16e2fbbb26b86821091c32f71 [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index a312c56a58..896c6692b4 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit a312c56a58440de1ad33c72946f372b4c9298ed1 +Subproject commit 896c6692b4fdaee16e2fbbb26b86821091c32f71 From 39091bca6b0c8348b7075786f0eeab59dd479708 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 15:05:24 -0700 Subject: [PATCH 20/55] Updating submodule(s) EntityFrameworkCore => 3c904d6dae45e6f0f2f45f7adebed6bb47187ab0 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index e1b15ad76b..3c904d6dae 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit e1b15ad76b5e18fc224e50f5a227854c7d26a81f +Subproject commit 3c904d6dae45e6f0f2f45f7adebed6bb47187ab0 From 846fec9c8efee71d8b90f935701d12bfd17ebd13 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 23:05:33 +0000 Subject: [PATCH 21/55] Updating submodule(s) DotNetTools => 26d9ef2ad7cebeeb8fe8e5bcf62420e9c3fd4038 EntityFrameworkCore => 2f0bcce306f6d85563e58b4912604237882921ef [auto-updated: submodules] --- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/DotNetTools b/modules/DotNetTools index 5b5c587943..26d9ef2ad7 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit 5b5c587943ae33d3658826ca9b62dd05ea675790 +Subproject commit 26d9ef2ad7cebeeb8fe8e5bcf62420e9c3fd4038 diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 3c904d6dae..2f0bcce306 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 3c904d6dae45e6f0f2f45f7adebed6bb47187ab0 +Subproject commit 2f0bcce306f6d85563e58b4912604237882921ef From 19dc972f42df0b1704d2efa41fc9be88727160bc Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 18:21:32 -0700 Subject: [PATCH 22/55] Updating BuildTools from 3.0.0-alpha1-10000 to 3.0.0-alpha1-10001 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index f0b76184fd..5c3b057bf4 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10000 -commithash:b7b88d08d55abc8b71de9abf16e26fc713e332cd +version:3.0.0-alpha1-10001 +commithash:e37abdb9e95f3e9cf4e3d01a5b439540d5227c17 From d33468de81abcfd6e3cfa59887d1f740b84def62 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 3 Jul 2018 18:51:28 -0700 Subject: [PATCH 23/55] Updating submodule(s) Templating => 4ca00f6b1b16f0461e91cc7ba5028898b25f1b33 [auto-updated: submodules] --- modules/Templating | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Templating b/modules/Templating index ddd01c229c..4ca00f6b1b 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit ddd01c229cacc240e4c7a6e9bb24f6dfdd8bdb5a +Subproject commit 4ca00f6b1b16f0461e91cc7ba5028898b25f1b33 From b39e726d983f0be9c1aa8f8da49c0878c2e5de30 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 5 Jul 2018 10:17:10 -0700 Subject: [PATCH 24/55] Updating submodule(s) EntityFrameworkCore => d434462411772007c4ef621ff537310de2ee8931 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 2f0bcce306..d434462411 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 2f0bcce306f6d85563e58b4912604237882921ef +Subproject commit d434462411772007c4ef621ff537310de2ee8931 From 55e4cdc384ae02f280641715590765b050958a4b Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 5 Jul 2018 11:13:13 -0700 Subject: [PATCH 25/55] Updating submodule(s) EntityFrameworkCore => 08cfe7ca1c5d513f3be37b0cb7ae211956afb31e [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index d434462411..08cfe7ca1c 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit d434462411772007c4ef621ff537310de2ee8931 +Subproject commit 08cfe7ca1c5d513f3be37b0cb7ae211956afb31e From 9839171b597778213b68fbea67268c5dddc38dd1 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 5 Jul 2018 18:50:41 +0000 Subject: [PATCH 26/55] Updating submodule(s) DataProtection => 3c558069f4daffcfde4f675cd63d61a7be6963a3 [auto-updated: submodules] --- modules/DataProtection | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/DataProtection b/modules/DataProtection index 19629672ca..3c558069f4 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 19629672cad27a41cb095591872aeb123411592a +Subproject commit 3c558069f4daffcfde4f675cd63d61a7be6963a3 From 838f4024b4edc672260eef7f3025bcbb971f08b8 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 5 Jul 2018 16:48:10 -0700 Subject: [PATCH 27/55] Updating submodule(s) SignalR => 748e9928651e047d5e9e1e7020f3cd3985496b3d [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index 896c6692b4..748e992865 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 896c6692b4fdaee16e2fbbb26b86821091c32f71 +Subproject commit 748e9928651e047d5e9e1e7020f3cd3985496b3d From fa8ab588c34d5ed9470b77af7e97f8f3b4fcb079 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 10:10:13 -0700 Subject: [PATCH 28/55] Updating submodule(s) SignalR => 856ac6cb8d8d55be2620d80eee0bf1db8539c4c9 [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index 748e992865..856ac6cb8d 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 748e9928651e047d5e9e1e7020f3cd3985496b3d +Subproject commit 856ac6cb8d8d55be2620d80eee0bf1db8539c4c9 From cf049da65a878a00da37e51913dddaf1bf8e7623 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 10:40:12 -0700 Subject: [PATCH 29/55] Updating submodule(s) MetaPackages => 67959ad853947d6ffef1916d02979753c0fd59e3 SignalR => 2dfc560b53ef801ccf1203fd26cd5ad97ee8efbc [auto-updated: submodules] --- modules/MetaPackages | 2 +- modules/SignalR | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/MetaPackages b/modules/MetaPackages index 622bdeec84..67959ad853 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 622bdeec84fe502e441f296a9af10bc896848167 +Subproject commit 67959ad853947d6ffef1916d02979753c0fd59e3 diff --git a/modules/SignalR b/modules/SignalR index 856ac6cb8d..2dfc560b53 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 856ac6cb8d8d55be2620d80eee0bf1db8539c4c9 +Subproject commit 2dfc560b53ef801ccf1203fd26cd5ad97ee8efbc From d851f683e40f8d2974caeca0ccd6a54e3a15bab5 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 18:29:49 +0000 Subject: [PATCH 30/55] Updating BuildTools from 3.0.0-alpha1-10001 to 3.0.0-alpha1-10002 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index 5c3b057bf4..0d2a6cfb9f 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10001 -commithash:e37abdb9e95f3e9cf4e3d01a5b439540d5227c17 +version:3.0.0-alpha1-10002 +commithash:1009b78ae91ea1c1efef45d9a1a334ff86f70721 From 6c081aa2a81081a8a0b9a357b8436ced44a7b285 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 19:00:24 +0000 Subject: [PATCH 31/55] Updating submodule(s) IISIntegration => 690a95dc09ac0a081347cde9effed36ce47495ca [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index c291d80c19..690a95dc09 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit c291d80c19ea66b3afd2d0e7926987274e03d4e2 +Subproject commit 690a95dc09ac0a081347cde9effed36ce47495ca From c95913a88122824e417a3540c82050cf4c3ef78e Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 19:00:26 +0000 Subject: [PATCH 32/55] Updating BuildTools from 3.0.0-alpha1-10002 to 3.0.0-alpha1-10003 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index 0d2a6cfb9f..a090ef70cb 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10002 -commithash:1009b78ae91ea1c1efef45d9a1a334ff86f70721 +version:3.0.0-alpha1-10003 +commithash:e061142f20e886a3ac708c91c85ae4a322203126 From c47cf68048634dd78a833bfedc7c4c5d34da7d2a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 19:31:42 +0000 Subject: [PATCH 33/55] Updating submodule(s) Mvc => 23cf9643a2efbeb7a626370d6574d95b8caee89b [auto-updated: submodules] --- modules/Mvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Mvc b/modules/Mvc index da556a41b7..23cf9643a2 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit da556a41b7b21c4f3eb83233fcfe540ed9239eb7 +Subproject commit 23cf9643a2efbeb7a626370d6574d95b8caee89b From d7ecc54e8fe3afa1a7c92807d0ddcc8ad058d3dd Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 13:29:40 -0700 Subject: [PATCH 34/55] Updating submodule(s) Hosting => 3e0b689ac2ea72a8dee81f8ae3a349610ac1fb0c [auto-updated: submodules] --- modules/Hosting | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Hosting b/modules/Hosting index 97c9510a95..3e0b689ac2 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 97c9510a95e676324ed8fa03d8b6dcf3b1c19ccf +Subproject commit 3e0b689ac2ea72a8dee81f8ae3a349610ac1fb0c From eacc01411186b41509c28d04db4b904965a8e5ca Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 14:04:45 -0700 Subject: [PATCH 35/55] Updating submodule(s) DataProtection => 80a2a6289563f5aa8bd193dda0fd3f0efe4d2ac2 [auto-updated: submodules] --- modules/DataProtection | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/DataProtection b/modules/DataProtection index 3c558069f4..80a2a62895 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 3c558069f4daffcfde4f675cd63d61a7be6963a3 +Subproject commit 80a2a6289563f5aa8bd193dda0fd3f0efe4d2ac2 From f5cae100389cb2f9bd009f7b967caac96889f817 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 14:46:51 -0700 Subject: [PATCH 36/55] Updating submodule(s) Identity => add0b0755d3d6ef50883b6e441706da1366f6118 [auto-updated: submodules] --- modules/Identity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Identity b/modules/Identity index 6bf092a460..add0b0755d 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 6bf092a4605580472820674bd33e4de13281ebb6 +Subproject commit add0b0755d3d6ef50883b6e441706da1366f6118 From 16b127ee558aca5fe9a8270a077f6318a48fbd02 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 22:51:16 +0000 Subject: [PATCH 37/55] Updating submodule(s) Scaffolding => 6f5bdc23df58939dad79dc439430bdf22c198c36 [auto-updated: submodules] --- modules/Scaffolding | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Scaffolding b/modules/Scaffolding index fcaeaef22a..6f5bdc23df 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit fcaeaef22a134069202dea5893e0330f8d96287c +Subproject commit 6f5bdc23df58939dad79dc439430bdf22c198c36 From 1ed3ad62c3ab7ff79c0e91e7b6a7f4fc19738cf3 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 16:38:37 -0700 Subject: [PATCH 38/55] Updating submodule(s) Razor => c8cc82c735599990705f9dd7ce15f65551158c84 [auto-updated: submodules] --- modules/Razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Razor b/modules/Razor index d4c652a7d5..c8cc82c735 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit d4c652a7d57b4d4e19949550f06118f3d966230c +Subproject commit c8cc82c735599990705f9dd7ce15f65551158c84 From 388cb40a4db6f97d99f12941895eb3f50edfe3f9 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 17:08:46 -0700 Subject: [PATCH 39/55] Updating BuildTools from 3.0.0-alpha1-10003 to 3.0.0-alpha1-10004 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index a090ef70cb..c4702722e9 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10003 -commithash:e061142f20e886a3ac708c91c85ae4a322203126 +version:3.0.0-alpha1-10004 +commithash:968a9e5081c8d13ae206f8439be6fefa7547474f From 301427e7256433f4c03429d2ce599f5d08f2e9b7 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 00:40:05 +0000 Subject: [PATCH 40/55] Updating submodule(s) Razor => 8901549095f2114b514ad76572ad543f00aabcbc [auto-updated: submodules] --- modules/Razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Razor b/modules/Razor index c8cc82c735..8901549095 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit c8cc82c735599990705f9dd7ce15f65551158c84 +Subproject commit 8901549095f2114b514ad76572ad543f00aabcbc From 2d1a780280ba50d212d344d454d7a9f80f1c7efe Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 01:12:16 +0000 Subject: [PATCH 41/55] Updating BuildTools from 3.0.0-alpha1-10004 to 3.0.0-alpha1-10005 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index c4702722e9..f357ac9f7d 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10004 -commithash:968a9e5081c8d13ae206f8439be6fefa7547474f +version:3.0.0-alpha1-10005 +commithash:05570853de976a526462ca140a55b1ac59d9a351 From f934e0ecee81fb8a120b34f875dd1796fbd70310 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 11:35:52 -0700 Subject: [PATCH 42/55] Updating submodule(s) IISIntegration => 4774700e758d3bdc25020c01128d195ad215f197 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index 690a95dc09..4774700e75 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 690a95dc09ac0a081347cde9effed36ce47495ca +Subproject commit 4774700e758d3bdc25020c01128d195ad215f197 From a53b9a6df722a698af2c43e44524de0c1752d62f Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 13:39:23 -0700 Subject: [PATCH 43/55] Updating submodule(s) EntityFrameworkCore => 7b40294849f0f6e972193ea1b48e0a31cba6bc64 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 08cfe7ca1c..7b40294849 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 08cfe7ca1c5d513f3be37b0cb7ae211956afb31e +Subproject commit 7b40294849f0f6e972193ea1b48e0a31cba6bc64 From c65b86bf6e12ffa410864aa18cd2668c3e473779 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sun, 8 Jul 2018 20:20:26 +0000 Subject: [PATCH 44/55] Updating submodule(s) AADIntegration => e8e600b25b11a20c105ae68616da9f68b2fcf8cc Antiforgery => a35d30c7b2a6023fb2af112d01c0d1f80e6b03fa AuthSamples => 8d579cebe0408ab49ef7bc69a62a2cd97321e94d AzureIntegration => c7d7732a0ef255390070ac8fa3155cb187bf0399 BasicMiddleware => 2b93e7432ddfb7570bbbb99901955d4c624e106b BrowserLink => b217d8888e120c3eec5c96096606b79fecbc1aa0 Caching => 01d72c6d0e7c094ca794f655ebb9d6e67a6bdea1 Common => d7a3ef5d126c2d767a26879db9ebc3d805b89014 Configuration => ebd11c2fe5e1cedc9a125a2d3f6646d5f272b66c CORS => ca41e0ace3f4117f78d9a3bf4ef546c9305d1de8 DataProtection => 8037e756cbdf4af95cc4d912afb9a34c3c5480e3 DependencyInjection => 58ec1e822f0fc19c32b16bc78ca280a71987fcf6 Diagnostics => 17d69d94e3bceb98f1118981e0d3c5398934304c DotNetTools => 7f627772a2171e9447c4e5cd5114b0e37933045b EntityFrameworkCore => 8d0209a4f490554e54917f71f14dba8037d6e0d4 EventNotification => 4d99b1e60d70490c18891127987395c6d895680f FileSystem => 18c48642973acef48e81739a921e8e0017766cd9 Hosting => a5b083a39bae974e95ff1a9437468a103e72f6ea HtmlAbstractions => 1fe94914452c0af5998f25f8e0053628f79ddf71 HttpAbstractions => 405fdc3c1e9a935f294562fef3ec91edfd6c3c60 HttpClientFactory => f2af73b1eaf770e1cb537160754d793d39bb588f HttpSysServer => 91c518e13d7ede44e6cb88df895d9a242b07726e Identity => c60b4d8784550ea868af0c2d08cc14217ae2e940 IISIntegration => 4a7d15b9e5500ec1d1bf8feccef632bbb07b8a59 JavaScriptServices => 0dc570a0c8725e3031ce5a884d7df3cfb75545ba JsonPatch => 40dfd77fd025d74cfe831bd79f261f548a61a2bb KestrelHttpServer => 6c9d9f2b0c3193b5bb4c7f7182f116c0073f195f Localization => 1d24b7a325a25ead3b1ee9c2ff1cf7c0806ec39b Logging => e9f9ad7379c3bf1707fa35bced6bdeadd409ba72 MetaPackages => f115404d64d288ba916f43bd4c5ff0b8f55b434e Microsoft.Data.Sqlite => 31b4c6a6df50758558af729f54f95928c4baf657 MusicStore => 58175b540bc40dc50a56b9cbc050d5c57931c448 Mvc => 432e11f2862b1c231497e57f0052bae4ca213869 MvcPrecompilation => e65092b711a7a2121055915ca9a57a361bf93900 Options => aea8ecb3967f4928608169681cfce1e6e5bb5ec9 Proxy => 7746356662cd1a90748da3360173aca3f2842549 Razor => 61aeae10233e52025090e836f3cbf70a13a2679f ResponseCaching => ffd7583db83ec57b70a2702343424dace805c889 Routing => d339b2b256f448946cd0da1ebb106e46408be333 Scaffolding => f0f0f727f0ff721dbe30f50627c0e439b3383ea3 Security => 36276e737842267ebb88a2cacb7c6223e117da6d ServerTests => 6a2b3b9645cefd276bacbb5ec400dde55189737b Session => dce34d356386074937be317f2a38e2bec0a7596c SignalR => 76afa07c702f77729335f709625942c06ff0b3f0 StaticFiles => a527fc1cb1e736449b060a3f75d5b59f2d67c95e Templating => e472c17533434285f62affa25a4d544cc463b168 WebHooks => 3aeedfa117306d10329b9ae6704da1a931cff2d3 WebSockets => 85fd36f14337e939e37257c558f737967f5820af [auto-updated: submodules] --- modules/AADIntegration | 2 +- modules/Antiforgery | 2 +- modules/AuthSamples | 2 +- modules/AzureIntegration | 2 +- modules/BasicMiddleware | 2 +- modules/BrowserLink | 2 +- modules/CORS | 2 +- modules/Caching | 2 +- modules/Common | 2 +- modules/Configuration | 2 +- modules/DataProtection | 2 +- modules/DependencyInjection | 2 +- modules/Diagnostics | 2 +- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- modules/EventNotification | 2 +- modules/FileSystem | 2 +- modules/Hosting | 2 +- modules/HtmlAbstractions | 2 +- modules/HttpAbstractions | 2 +- modules/HttpClientFactory | 2 +- modules/HttpSysServer | 2 +- modules/IISIntegration | 2 +- modules/Identity | 2 +- modules/JavaScriptServices | 2 +- modules/JsonPatch | 2 +- modules/KestrelHttpServer | 2 +- modules/Localization | 2 +- modules/Logging | 2 +- modules/MetaPackages | 2 +- modules/Microsoft.Data.Sqlite | 2 +- modules/MusicStore | 2 +- modules/Mvc | 2 +- modules/MvcPrecompilation | 2 +- modules/Options | 2 +- modules/Proxy | 2 +- modules/Razor | 2 +- modules/ResponseCaching | 2 +- modules/Routing | 2 +- modules/Scaffolding | 2 +- modules/Security | 2 +- modules/ServerTests | 2 +- modules/Session | 2 +- modules/SignalR | 2 +- modules/StaticFiles | 2 +- modules/Templating | 2 +- modules/WebHooks | 2 +- modules/WebSockets | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/modules/AADIntegration b/modules/AADIntegration index 8610901960..e8e600b25b 160000 --- a/modules/AADIntegration +++ b/modules/AADIntegration @@ -1 +1 @@ -Subproject commit 8610901960d1a2627480fe5c81b793c8a493fdec +Subproject commit e8e600b25b11a20c105ae68616da9f68b2fcf8cc diff --git a/modules/Antiforgery b/modules/Antiforgery index dfea4213e7..a35d30c7b2 160000 --- a/modules/Antiforgery +++ b/modules/Antiforgery @@ -1 +1 @@ -Subproject commit dfea4213e7a1b0545d59e8f817aab0e4bf9124f4 +Subproject commit a35d30c7b2a6023fb2af112d01c0d1f80e6b03fa diff --git a/modules/AuthSamples b/modules/AuthSamples index 3644624307..8d579cebe0 160000 --- a/modules/AuthSamples +++ b/modules/AuthSamples @@ -1 +1 @@ -Subproject commit 3644624307c36fbc222e61b9eb173e9b8c07d080 +Subproject commit 8d579cebe0408ab49ef7bc69a62a2cd97321e94d diff --git a/modules/AzureIntegration b/modules/AzureIntegration index 0397209bb9..c7d7732a0e 160000 --- a/modules/AzureIntegration +++ b/modules/AzureIntegration @@ -1 +1 @@ -Subproject commit 0397209bb9b70e832d28e40728f65168d90fc88e +Subproject commit c7d7732a0ef255390070ac8fa3155cb187bf0399 diff --git a/modules/BasicMiddleware b/modules/BasicMiddleware index 675d624144..2b93e7432d 160000 --- a/modules/BasicMiddleware +++ b/modules/BasicMiddleware @@ -1 +1 @@ -Subproject commit 675d624144f8bba105333e89a80a7625bc9b26a9 +Subproject commit 2b93e7432ddfb7570bbbb99901955d4c624e106b diff --git a/modules/BrowserLink b/modules/BrowserLink index 92cfa5bf14..b217d8888e 160000 --- a/modules/BrowserLink +++ b/modules/BrowserLink @@ -1 +1 @@ -Subproject commit 92cfa5bf14e15ab04c0178e6dae476ed08173dc5 +Subproject commit b217d8888e120c3eec5c96096606b79fecbc1aa0 diff --git a/modules/CORS b/modules/CORS index ca92227ac3..ca41e0ace3 160000 --- a/modules/CORS +++ b/modules/CORS @@ -1 +1 @@ -Subproject commit ca92227ac3e5ddd27cd1ab5da0368243a85dc488 +Subproject commit ca41e0ace3f4117f78d9a3bf4ef546c9305d1de8 diff --git a/modules/Caching b/modules/Caching index 19fc0c0209..01d72c6d0e 160000 --- a/modules/Caching +++ b/modules/Caching @@ -1 +1 @@ -Subproject commit 19fc0c0209c3b611d3dd2d50ec40d6bd44300d1d +Subproject commit 01d72c6d0e7c094ca794f655ebb9d6e67a6bdea1 diff --git a/modules/Common b/modules/Common index 70f2a2595f..d7a3ef5d12 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit 70f2a2595f8af9f050905cccc6b19334fd593ba2 +Subproject commit d7a3ef5d126c2d767a26879db9ebc3d805b89014 diff --git a/modules/Configuration b/modules/Configuration index 5831d96651..ebd11c2fe5 160000 --- a/modules/Configuration +++ b/modules/Configuration @@ -1 +1 @@ -Subproject commit 5831d96651c52a0642685961a784f006764099b1 +Subproject commit ebd11c2fe5e1cedc9a125a2d3f6646d5f272b66c diff --git a/modules/DataProtection b/modules/DataProtection index 80a2a62895..8037e756cb 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 80a2a6289563f5aa8bd193dda0fd3f0efe4d2ac2 +Subproject commit 8037e756cbdf4af95cc4d912afb9a34c3c5480e3 diff --git a/modules/DependencyInjection b/modules/DependencyInjection index 6a12791790..58ec1e822f 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit 6a127917905805937e6d5ddb3ed91b0f365fd543 +Subproject commit 58ec1e822f0fc19c32b16bc78ca280a71987fcf6 diff --git a/modules/Diagnostics b/modules/Diagnostics index 769da62e40..17d69d94e3 160000 --- a/modules/Diagnostics +++ b/modules/Diagnostics @@ -1 +1 @@ -Subproject commit 769da62e40ee693b079597a3d6f6863e48a56ee8 +Subproject commit 17d69d94e3bceb98f1118981e0d3c5398934304c diff --git a/modules/DotNetTools b/modules/DotNetTools index 26d9ef2ad7..7f627772a2 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit 26d9ef2ad7cebeeb8fe8e5bcf62420e9c3fd4038 +Subproject commit 7f627772a2171e9447c4e5cd5114b0e37933045b diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 7b40294849..8d0209a4f4 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 7b40294849f0f6e972193ea1b48e0a31cba6bc64 +Subproject commit 8d0209a4f490554e54917f71f14dba8037d6e0d4 diff --git a/modules/EventNotification b/modules/EventNotification index 5fe7039ebb..4d99b1e60d 160000 --- a/modules/EventNotification +++ b/modules/EventNotification @@ -1 +1 @@ -Subproject commit 5fe7039ebb411bfee15fac7aefaffd514bdcb73a +Subproject commit 4d99b1e60d70490c18891127987395c6d895680f diff --git a/modules/FileSystem b/modules/FileSystem index 28920c37d2..18c4864297 160000 --- a/modules/FileSystem +++ b/modules/FileSystem @@ -1 +1 @@ -Subproject commit 28920c37d228f392ccb89c66c2adb667502eda39 +Subproject commit 18c48642973acef48e81739a921e8e0017766cd9 diff --git a/modules/Hosting b/modules/Hosting index 3e0b689ac2..a5b083a39b 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 3e0b689ac2ea72a8dee81f8ae3a349610ac1fb0c +Subproject commit a5b083a39bae974e95ff1a9437468a103e72f6ea diff --git a/modules/HtmlAbstractions b/modules/HtmlAbstractions index e60d98aa76..1fe9491445 160000 --- a/modules/HtmlAbstractions +++ b/modules/HtmlAbstractions @@ -1 +1 @@ -Subproject commit e60d98aa7658c5d9c91324e58a5bb600a4a9db23 +Subproject commit 1fe94914452c0af5998f25f8e0053628f79ddf71 diff --git a/modules/HttpAbstractions b/modules/HttpAbstractions index d5041b9a33..405fdc3c1e 160000 --- a/modules/HttpAbstractions +++ b/modules/HttpAbstractions @@ -1 +1 @@ -Subproject commit d5041b9a333ea355266d0e142aa3cccc87aaaa0b +Subproject commit 405fdc3c1e9a935f294562fef3ec91edfd6c3c60 diff --git a/modules/HttpClientFactory b/modules/HttpClientFactory index 719b29d8e3..f2af73b1ea 160000 --- a/modules/HttpClientFactory +++ b/modules/HttpClientFactory @@ -1 +1 @@ -Subproject commit 719b29d8e39698338f6c968a56306d2763f05822 +Subproject commit f2af73b1eaf770e1cb537160754d793d39bb588f diff --git a/modules/HttpSysServer b/modules/HttpSysServer index 7f14fd15e3..91c518e13d 160000 --- a/modules/HttpSysServer +++ b/modules/HttpSysServer @@ -1 +1 @@ -Subproject commit 7f14fd15e32d7bbdc74485264cba56dbc6790395 +Subproject commit 91c518e13d7ede44e6cb88df895d9a242b07726e diff --git a/modules/IISIntegration b/modules/IISIntegration index 4774700e75..4a7d15b9e5 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 4774700e758d3bdc25020c01128d195ad215f197 +Subproject commit 4a7d15b9e5500ec1d1bf8feccef632bbb07b8a59 diff --git a/modules/Identity b/modules/Identity index add0b0755d..c60b4d8784 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit add0b0755d3d6ef50883b6e441706da1366f6118 +Subproject commit c60b4d8784550ea868af0c2d08cc14217ae2e940 diff --git a/modules/JavaScriptServices b/modules/JavaScriptServices index b1d04c99c9..0dc570a0c8 160000 --- a/modules/JavaScriptServices +++ b/modules/JavaScriptServices @@ -1 +1 @@ -Subproject commit b1d04c99c98ab0db27cdd5e0b585a8532a576479 +Subproject commit 0dc570a0c8725e3031ce5a884d7df3cfb75545ba diff --git a/modules/JsonPatch b/modules/JsonPatch index 37d8328019..40dfd77fd0 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit 37d83280198fd7b99ebd149fa23868128d10744b +Subproject commit 40dfd77fd025d74cfe831bd79f261f548a61a2bb diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index f7d459326c..6c9d9f2b0c 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit f7d459326c7ff5120c725e5da57c9d5cb30cd00c +Subproject commit 6c9d9f2b0c3193b5bb4c7f7182f116c0073f195f diff --git a/modules/Localization b/modules/Localization index 6fcfe10f5c..1d24b7a325 160000 --- a/modules/Localization +++ b/modules/Localization @@ -1 +1 @@ -Subproject commit 6fcfe10f5c4138400d3d6e75ca38143e2e8946fe +Subproject commit 1d24b7a325a25ead3b1ee9c2ff1cf7c0806ec39b diff --git a/modules/Logging b/modules/Logging index 4141ae624c..e9f9ad7379 160000 --- a/modules/Logging +++ b/modules/Logging @@ -1 +1 @@ -Subproject commit 4141ae624c713ffde67dd05f5fdeeb9797e8ebab +Subproject commit e9f9ad7379c3bf1707fa35bced6bdeadd409ba72 diff --git a/modules/MetaPackages b/modules/MetaPackages index 67959ad853..f115404d64 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 67959ad853947d6ffef1916d02979753c0fd59e3 +Subproject commit f115404d64d288ba916f43bd4c5ff0b8f55b434e diff --git a/modules/Microsoft.Data.Sqlite b/modules/Microsoft.Data.Sqlite index e63f9482d2..31b4c6a6df 160000 --- a/modules/Microsoft.Data.Sqlite +++ b/modules/Microsoft.Data.Sqlite @@ -1 +1 @@ -Subproject commit e63f9482d2d84dd906d7057b82af593f62565506 +Subproject commit 31b4c6a6df50758558af729f54f95928c4baf657 diff --git a/modules/MusicStore b/modules/MusicStore index 3088bf04fb..58175b540b 160000 --- a/modules/MusicStore +++ b/modules/MusicStore @@ -1 +1 @@ -Subproject commit 3088bf04fbd2aa8e7a8dec49019ba022862dd8c1 +Subproject commit 58175b540bc40dc50a56b9cbc050d5c57931c448 diff --git a/modules/Mvc b/modules/Mvc index 23cf9643a2..432e11f286 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 23cf9643a2efbeb7a626370d6574d95b8caee89b +Subproject commit 432e11f2862b1c231497e57f0052bae4ca213869 diff --git a/modules/MvcPrecompilation b/modules/MvcPrecompilation index 5e68c00b9e..e65092b711 160000 --- a/modules/MvcPrecompilation +++ b/modules/MvcPrecompilation @@ -1 +1 @@ -Subproject commit 5e68c00b9e3fff6fb95e619500e72abd792e84be +Subproject commit e65092b711a7a2121055915ca9a57a361bf93900 diff --git a/modules/Options b/modules/Options index 406a331bd3..aea8ecb396 160000 --- a/modules/Options +++ b/modules/Options @@ -1 +1 @@ -Subproject commit 406a331bd3dd198e6902e11ba2d42d8809441b2f +Subproject commit aea8ecb3967f4928608169681cfce1e6e5bb5ec9 diff --git a/modules/Proxy b/modules/Proxy index 4bd20c7764..7746356662 160000 --- a/modules/Proxy +++ b/modules/Proxy @@ -1 +1 @@ -Subproject commit 4bd20c7764335ed2b0b34708f7af583d585f961e +Subproject commit 7746356662cd1a90748da3360173aca3f2842549 diff --git a/modules/Razor b/modules/Razor index 8901549095..61aeae1023 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit 8901549095f2114b514ad76572ad543f00aabcbc +Subproject commit 61aeae10233e52025090e836f3cbf70a13a2679f diff --git a/modules/ResponseCaching b/modules/ResponseCaching index 28ef6fdd26..ffd7583db8 160000 --- a/modules/ResponseCaching +++ b/modules/ResponseCaching @@ -1 +1 @@ -Subproject commit 28ef6fdd2646d4b631e9f7ae323117bd179292d2 +Subproject commit ffd7583db83ec57b70a2702343424dace805c889 diff --git a/modules/Routing b/modules/Routing index 11ff2b27de..d339b2b256 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit 11ff2b27de244504dc39419f197f0cab405c3dd8 +Subproject commit d339b2b256f448946cd0da1ebb106e46408be333 diff --git a/modules/Scaffolding b/modules/Scaffolding index 6f5bdc23df..f0f0f727f0 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit 6f5bdc23df58939dad79dc439430bdf22c198c36 +Subproject commit f0f0f727f0ff721dbe30f50627c0e439b3383ea3 diff --git a/modules/Security b/modules/Security index d0d7278274..36276e7378 160000 --- a/modules/Security +++ b/modules/Security @@ -1 +1 @@ -Subproject commit d0d72782745edc41c79c501ff2210058a4eadb46 +Subproject commit 36276e737842267ebb88a2cacb7c6223e117da6d diff --git a/modules/ServerTests b/modules/ServerTests index 8f9a540902..6a2b3b9645 160000 --- a/modules/ServerTests +++ b/modules/ServerTests @@ -1 +1 @@ -Subproject commit 8f9a5409025806581a5e9922704ebe99ea35d59a +Subproject commit 6a2b3b9645cefd276bacbb5ec400dde55189737b diff --git a/modules/Session b/modules/Session index 2dec6a281c..dce34d3563 160000 --- a/modules/Session +++ b/modules/Session @@ -1 +1 @@ -Subproject commit 2dec6a281c326c5a4f411603d43c94feac38e171 +Subproject commit dce34d356386074937be317f2a38e2bec0a7596c diff --git a/modules/SignalR b/modules/SignalR index 2dfc560b53..76afa07c70 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 2dfc560b53ef801ccf1203fd26cd5ad97ee8efbc +Subproject commit 76afa07c702f77729335f709625942c06ff0b3f0 diff --git a/modules/StaticFiles b/modules/StaticFiles index 8a9db9ace3..a527fc1cb1 160000 --- a/modules/StaticFiles +++ b/modules/StaticFiles @@ -1 +1 @@ -Subproject commit 8a9db9ace355143424f59b653c141c2b8afd1a39 +Subproject commit a527fc1cb1e736449b060a3f75d5b59f2d67c95e diff --git a/modules/Templating b/modules/Templating index 4ca00f6b1b..e472c17533 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit 4ca00f6b1b16f0461e91cc7ba5028898b25f1b33 +Subproject commit e472c17533434285f62affa25a4d544cc463b168 diff --git a/modules/WebHooks b/modules/WebHooks index 9cc2c2fc04..3aeedfa117 160000 --- a/modules/WebHooks +++ b/modules/WebHooks @@ -1 +1 @@ -Subproject commit 9cc2c2fc04df5c86af7073b7fd32cf817a887c12 +Subproject commit 3aeedfa117306d10329b9ae6704da1a931cff2d3 diff --git a/modules/WebSockets b/modules/WebSockets index e2dd797a99..85fd36f143 160000 --- a/modules/WebSockets +++ b/modules/WebSockets @@ -1 +1 @@ -Subproject commit e2dd797a996e3c6cd618d7cff6cc6fc7826c3358 +Subproject commit 85fd36f14337e939e37257c558f737967f5820af From 265fbff7fc9bd1bfb1a5aa6f038544ee72b09d25 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 10:11:28 -0700 Subject: [PATCH 45/55] Updating BuildTools from 3.0.0-alpha1-10005 to 3.0.0-alpha1-10006 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index f357ac9f7d..753cfe1746 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10005 -commithash:05570853de976a526462ca140a55b1ac59d9a351 +version:3.0.0-alpha1-10006 +commithash:d9713bf9c261f58051ea4953448451bf9aad8f1f From 3831e2bb90a61a6beebabce2cb9486f313ac8c5a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 10:42:33 -0700 Subject: [PATCH 46/55] Updating BuildTools from 3.0.0-alpha1-10006 to 3.0.0-alpha1-10007 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index 753cfe1746..fe16f750f5 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10006 -commithash:d9713bf9c261f58051ea4953448451bf9aad8f1f +version:3.0.0-alpha1-10007 +commithash:cf98b00a7a655d8c6e23fa2336e091d64fc8be28 From 8e71a05fa702cba39f3618517c5fe7a17898e580 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 11:13:52 -0700 Subject: [PATCH 47/55] Updating submodule(s) IISIntegration => 13251ce5b777a3d47e475acf3ce4ba07ea949144 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index 4a7d15b9e5..13251ce5b7 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 4a7d15b9e5500ec1d1bf8feccef632bbb07b8a59 +Subproject commit 13251ce5b777a3d47e475acf3ce4ba07ea949144 From 28a1309681a725612c642ce851f033aabaf98cde Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 19:58:52 +0000 Subject: [PATCH 48/55] Updating submodule(s) EntityFrameworkCore => 1891f87ad99344dcfab0d268c7656f89671319aa [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 8d0209a4f4..1891f87ad9 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 8d0209a4f490554e54917f71f14dba8037d6e0d4 +Subproject commit 1891f87ad99344dcfab0d268c7656f89671319aa From 9c215d5d1a5934b1c3139b9365fe831c1d1e8c5a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 14:24:14 -0700 Subject: [PATCH 49/55] Updating submodule(s) Scaffolding => 52914b548a8d390192e47e075ffc63e0952ecaae [auto-updated: submodules] --- modules/Scaffolding | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Scaffolding b/modules/Scaffolding index f0f0f727f0..52914b548a 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit f0f0f727f0ff721dbe30f50627c0e439b3383ea3 +Subproject commit 52914b548a8d390192e47e075ffc63e0952ecaae From d5dbeb08c575d87ee2e9785c76403edf22f47379 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 22:27:42 +0000 Subject: [PATCH 50/55] Updating submodule(s) SignalR => 46c8ba5fdc881f19a0384613510e71290719503d [auto-updated: submodules] --- modules/SignalR | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/SignalR b/modules/SignalR index 76afa07c70..46c8ba5fdc 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 76afa07c702f77729335f709625942c06ff0b3f0 +Subproject commit 46c8ba5fdc881f19a0384613510e71290719503d From 8801c476695018831d385e08b94b0f7cd84946f8 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 16:24:51 -0700 Subject: [PATCH 51/55] Updating BuildTools from 3.0.0-alpha1-10007 to 3.0.0-alpha1-10008 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index fe16f750f5..65be0f3d8e 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:3.0.0-alpha1-10007 -commithash:cf98b00a7a655d8c6e23fa2336e091d64fc8be28 +version:3.0.0-alpha1-10008 +commithash:62b1d90d52185db39173f383a2b820d2c2b45c07 From 867ce87140d91e6ffc9b13dff784d4f7d86c5ffa Mon Sep 17 00:00:00 2001 From: dotnet-maestro-bot Date: Mon, 9 Jul 2018 18:23:31 -0700 Subject: [PATCH 52/55] Upgrade to .NET Core 3.0.0-preview1-26709-03 (#1241) --- build/dependencies.props | 58 ++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 9d911eefc3..0266802455 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,36 +1,36 @@ - + - 4.6.0-preview1-26617-01 - 2.2.0-preview1-26618-02 + 4.6.0-preview1-26704-05 + 3.0.0-preview1-26709-03 - 3.0.0-preview1-26629-04 - 3.0.0-preview1-26629-04 - 4.6.0-preview1-26617-01 + 3.0.0-preview1-26709-03 + 3.0.0-preview1-26709-03 + 4.6.0-preview1-26704-05 4.8.0-preview1.5116 - 4.6.0-preview1-26617-01 - 1.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 1.7.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.10.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 + 4.6.0-preview1-26704-05 + 1.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 1.7.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.10.0-preview1-26704-05 + 4.6.0-preview1-26704-05 + 4.6.0-preview1-26704-05 From 14349be5277ff9f39fc585e72a1e00c8e37b9546 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 01:29:58 +0000 Subject: [PATCH 53/55] Updating submodule(s) EntityFrameworkCore => 8b28c8860b0a83bcb3ec4a71c457d7e09af7d238 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 1891f87ad9..8b28c8860b 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 1891f87ad99344dcfab0d268c7656f89671319aa +Subproject commit 8b28c8860b0a83bcb3ec4a71c457d7e09af7d238 From dc5b38285300b2f3c8d205ee7fe46359f8de4a09 Mon Sep 17 00:00:00 2001 From: dotnet-maestro-bot Date: Tue, 10 Jul 2018 12:04:46 -0700 Subject: [PATCH 54/55] Upgrade to .NET Core 3.0.0-preview1-26710-03 (#1248) --- build/dependencies.props | 56 ++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 0266802455..cb249f0c93 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,36 +1,36 @@  - 4.6.0-preview1-26704-05 - 3.0.0-preview1-26709-03 + 4.6.0-preview1-26708-04 + 3.0.0-preview1-26710-03 - 3.0.0-preview1-26709-03 - 3.0.0-preview1-26709-03 - 4.6.0-preview1-26704-05 + 3.0.0-preview1-26710-03 + 3.0.0-preview1-26710-03 + 4.6.0-preview1-26708-04 4.8.0-preview1.5116 - 4.6.0-preview1-26704-05 - 1.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 1.7.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.10.0-preview1-26704-05 - 4.6.0-preview1-26704-05 - 4.6.0-preview1-26704-05 + 4.6.0-preview1-26708-04 + 1.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 1.7.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.10.0-preview1-26708-04 + 4.6.0-preview1-26708-04 + 4.6.0-preview1-26708-04 From 4b0925bd72fb505088f2ce19940742d1ce19f229 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 10 Jul 2018 16:23:49 -0700 Subject: [PATCH 55/55] Update LZMA cache to netcoreapp3.0 --- src/PackageArchive/Archive.props | 4 +++- .../Scenario.ConsoleApp/Scenario.ConsoleApp.csproj | 6 +++--- src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/PackageArchive/Archive.props b/src/PackageArchive/Archive.props index 8d888cf505..81c2c200b0 100644 --- a/src/PackageArchive/Archive.props +++ b/src/PackageArchive/Archive.props @@ -6,6 +6,8 @@ - netcoreapp2.1 + netcoreapp3.0 + + 99.9 diff --git a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj index e1ef3cfe40..a83925d7df 100644 --- a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj +++ b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj @@ -1,12 +1,12 @@ - netcoreapp2.2 + netcoreapp3.0 99.9 - 2.2.0 + 3.0.0 - $(MicrosoftNETCoreApp22PackageVersion) + $(MicrosoftNETCoreApp30PackageVersion) $([MSbuild]::ValueOrDefault('$(MicrosoftNETCoreAppPackageVersion)','$(MaxImplicitVersion)')) diff --git a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj index e20e8d3b93..7b6e555ae0 100644 --- a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj +++ b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj @@ -1,7 +1,7 @@ - netcoreapp2.2 + netcoreapp3.0 99.9