From c0862c1e31fff543e2f63c8547294d56304298ba Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 15 Jul 2020 16:17:30 -0700 Subject: [PATCH 001/183] Update to rc1 branding (#7995) --- eng/Versions.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index aa5878007..e4906b6d8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -10,8 +10,8 @@ 1 00 $(VersionMajor).$(VersionMinor).$(VersionSDKMinor)$(VersionFeature) - preview - 8 + rc + 1 $(VersionMajor).$(VersionMinor) $(MajorMinorVersion).$(VersionSDKMinor) From 02be16eae66fea4234925240459170b77a08ff74 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2020 02:58:19 +0000 Subject: [PATCH 002/183] Update dependencies from https://github.com/dotnet/arcade build 20200714.3 (#7996) Microsoft.DotNet.Arcade.Sdk From Version 5.0.0-beta.20330.3 -> To Version 5.0.0-beta.20364.3 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 4 +- eng/common/SetupNugetSources.ps1 | 12 +-- eng/common/SetupNugetSources.sh | 49 ++++++------ eng/common/performance/performance-setup.ps1 | 5 ++ eng/common/performance/performance-setup.sh | 4 + eng/common/post-build/symbols-validation.ps1 | 2 +- eng/common/templates/job/job.yml | 12 +++ .../channels/generic-internal-channel.yml | 4 + .../templates/post-build/post-build.yml | 76 +++++++++++-------- eng/common/tools.ps1 | 2 +- global.json | 2 +- 11 files changed, 105 insertions(+), 67 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4fcaf18b1..b8406fb9f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -104,9 +104,9 @@ - + https://github.com/dotnet/arcade - 243cc92161ad44c2a07464425892daee19121c99 + ff5d4b6c8dbdaeacb6e6159d3f8185118dffd915 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index c3c473eb8..dc2217812 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -128,16 +128,16 @@ $userName = "dn-bot" # Insert credential nodes for Maestro's private feeds InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -Password $Password -$dotnet3Source = $sources.SelectSingleNode("add[@key='dotnet3']") -if ($dotnet3Source -ne $null) { - AddPackageSource -Sources $sources -SourceName "dotnet3-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password - AddPackageSource -Sources $sources -SourceName "dotnet3-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password -} - $dotnet31Source = $sources.SelectSingleNode("add[@key='dotnet3.1']") if ($dotnet31Source -ne $null) { AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password } +$dotnet5Source = $sources.SelectSingleNode("add[@key='dotnet5']") +if ($dotnet5Source -ne $null) { + AddPackageSource -Sources $sources -SourceName "dotnet5-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password + AddPackageSource -Sources $sources -SourceName "dotnet5-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password +} + $doc.Save($filename) diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index 7d6fef27f..f33e37711 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -79,31 +79,6 @@ fi PackageSources=() -# Ensure dotnet3-internal and dotnet3-internal-transport are in the packageSources if the public dotnet3 feeds are present -grep -i "" $ConfigFile - if [ "$?" != "0" ]; then - echo "Adding dotnet3-internal to the packageSources." - PackageSourcesNodeFooter="" - PackageSourceTemplate="${TB}" - - sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourceTemplate${NL}$PackageSourcesNodeFooter|" $ConfigFile - fi - PackageSources+=('dotnet3-internal') - - grep -i "" - - sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourceTemplate${NL}$PackageSourcesNodeFooter|" $ConfigFile - fi - PackageSources+=('dotnet3-internal-transport') -fi - # Ensure dotnet3.1-internal and dotnet3.1-internal-transport are in the packageSources if the public dotnet3.1 feeds are present grep -i "" + + sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourceTemplate${NL}$PackageSourcesNodeFooter|" $ConfigFile + fi + PackageSources+=('dotnet5-internal') + + grep -i "" $ConfigFile + if [ "$?" != "0" ]; then + echo "Adding dotnet5-internal-transport to the packageSources." + PackageSourcesNodeFooter="" + PackageSourceTemplate="${TB}" + + sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourceTemplate${NL}$PackageSourcesNodeFooter|" $ConfigFile + fi + PackageSources+=('dotnet5-internal-transport') +fi + # I want things split line by line PrevIFS=$IFS IFS=$'\n' diff --git a/eng/common/performance/performance-setup.ps1 b/eng/common/performance/performance-setup.ps1 index 31a99e490..656c0bd90 100644 --- a/eng/common/performance/performance-setup.ps1 +++ b/eng/common/performance/performance-setup.ps1 @@ -54,6 +54,11 @@ if ($Internal) { $HelixSourcePrefix = "official" } +if($MonoInterpreter) +{ + $ExtraBenchmarkDotNetArguments = "--category-exclusion-filter NoInterpreter" +} + if($MonoDotnet -ne "") { $Configurations += " LLVM=$LLVM MonoInterpreter=$MonoInterpreter MonoAOT=$MonoAOT" diff --git a/eng/common/performance/performance-setup.sh b/eng/common/performance/performance-setup.sh index 9409e4d85..c87cbf0fc 100755 --- a/eng/common/performance/performance-setup.sh +++ b/eng/common/performance/performance-setup.sh @@ -191,6 +191,10 @@ if [[ "$mono_dotnet" != "" ]]; then configurations="$configurations LLVM=$llvm MonoInterpreter=$monointerpreter MonoAOT=$monoaot" fi +if [[ "$monointerpreter" == "true" ]]; then + extra_benchmark_dotnet_arguments="--category-exclusion-filter NoInterpreter" +fi + common_setup_arguments="--channel master --queue $queue --build-number $build_number --build-configs $configurations --architecture $architecture" setup_arguments="--repository https://github.com/$repository --branch $branch --get-perf-hash --commit-sha $commit_sha $common_setup_arguments" diff --git a/eng/common/post-build/symbols-validation.ps1 b/eng/common/post-build/symbols-validation.ps1 index 495428ea2..a36fa6f26 100644 --- a/eng/common/post-build/symbols-validation.ps1 +++ b/eng/common/post-build/symbols-validation.ps1 @@ -144,7 +144,7 @@ $CountMissingSymbols = { if ($MissingSymbols -ne 0) { - Write-PipelineTelemetryError -Category 'CheckSymbols' -Message "Missing symbols for $MissingSymbols modules in the package $FileName" + Write-PipelineTelemetryError -Category 'CheckSymbols' -Message "Missing symbols for $MissingSymbols modules in the package $PackagePath" } Pop-Location diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index c08bb416d..e78ed9a1c 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -65,6 +65,9 @@ jobs: - ${{ if ne(parameters.enableTelemetry, 'false') }}: - name: DOTNET_CLI_TELEMETRY_PROFILE value: '$(Build.Repository.Uri)' + - ${{ if eq(parameters.enableRichCodeNavigation, 'true') }}: + - name: EnableRichCodeNavigation + value: 'true' - ${{ each variable in parameters.variables }}: # handle name-value variable syntax # example: @@ -124,6 +127,15 @@ jobs: - ${{ each step in parameters.steps }}: - ${{ step }} + - ${{ if eq(parameters.enableRichCodeNavigation, true) }}: + - task: RichCodeNavIndexer@0 + displayName: RichCodeNav Upload + inputs: + languages: 'csharp' + environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'prod') }} + richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + continueOnError: true + - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - task: MicroBuildCleanup@1 diff --git a/eng/common/templates/post-build/channels/generic-internal-channel.yml b/eng/common/templates/post-build/channels/generic-internal-channel.yml index 258ba4b77..12db36ebe 100644 --- a/eng/common/templates/post-build/channels/generic-internal-channel.yml +++ b/eng/common/templates/post-build/channels/generic-internal-channel.yml @@ -35,6 +35,10 @@ stages: pool: vmImage: 'windows-2019' steps: + # This is necessary whenever we want to publish/restore to an AzDO private feed + - task: NuGetAuthenticate@0 + displayName: 'Authenticate to AzDO Feeds' + - task: DownloadBuildArtifacts@0 displayName: Download Build Assets continueOnError: true diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 07fc2e982..0e79a546b 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -46,15 +46,16 @@ parameters: NETCoreExperimentalChannelId: 562 NetEngServicesIntChannelId: 678 NetEngServicesProdChannelId: 679 - Net5Preview5ChannelId: 857 - Net5Preview6ChannelId: 1013 Net5Preview7ChannelId: 1065 + Net5Preview8ChannelId: 1155 + Net5RC1ChannelId: 1157 NetCoreSDK313xxChannelId: 759 NetCoreSDK313xxInternalChannelId: 760 NetCoreSDK314xxChannelId: 921 NetCoreSDK314xxInternalChannelId: 922 VS166ChannelId: 1010 VS167ChannelId: 1011 + VS168ChannelId: 1154 VSMasterChannelId: 1012 stages: @@ -114,7 +115,7 @@ stages: inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/check-channel-consistency.ps1 arguments: -PromoteToChannels "$(TargetChannels)" - -AvailableChannelIds ${{parameters.NetEngLatestChannelId}},${{parameters.NetEngValidationChannelId}},${{parameters.NetDev5ChannelId}},${{parameters.GeneralTestingChannelId}},${{parameters.NETCoreToolingDevChannelId}},${{parameters.NETCoreToolingReleaseChannelId}},${{parameters.NETInternalToolingChannelId}},${{parameters.NETCoreExperimentalChannelId}},${{parameters.NetEngServicesIntChannelId}},${{parameters.NetEngServicesProdChannelId}},${{parameters.Net5Preview5ChannelId}},${{parameters.Net5Preview6ChannelId}},${{parameters.Net5Preview7ChannelId}},${{parameters.NetCoreSDK313xxChannelId}},${{parameters.NetCoreSDK313xxInternalChannelId}},${{parameters.NetCoreSDK314xxChannelId}},${{parameters.NetCoreSDK314xxInternalChannelId}},${{parameters.VS166ChannelId}},${{parameters.VS167ChannelId}},${{parameters.VSMasterChannelId}} + -AvailableChannelIds ${{parameters.NetEngLatestChannelId}},${{parameters.NetEngValidationChannelId}},${{parameters.NetDev5ChannelId}},${{parameters.GeneralTestingChannelId}},${{parameters.NETCoreToolingDevChannelId}},${{parameters.NETCoreToolingReleaseChannelId}},${{parameters.NETInternalToolingChannelId}},${{parameters.NETCoreExperimentalChannelId}},${{parameters.NetEngServicesIntChannelId}},${{parameters.NetEngServicesProdChannelId}},${{parameters.Net5Preview7ChannelId}},${{parameters.Net5Preview8ChannelId}},${{parameters.Net5RC1ChannelId}},${{parameters.NetCoreSDK313xxChannelId}},${{parameters.NetCoreSDK313xxInternalChannelId}},${{parameters.NetCoreSDK314xxChannelId}},${{parameters.NetCoreSDK314xxInternalChannelId}},${{parameters.VS166ChannelId}},${{parameters.VS167ChannelId}},${{parameters.VS168ChannelId}},${{parameters.VSMasterChannelId}} - job: displayName: NuGet Validation @@ -269,34 +270,6 @@ stages: shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' - - template: \eng\common\templates\post-build\channels\generic-public-channel.yml - parameters: - artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} - dependsOn: ${{ parameters.publishDependsOn }} - publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} - symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} - stageName: 'Net5_Preview5_Publish' - channelName: '.NET 5 Preview 5' - akaMSChannelName: 'net5/preview5' - channelId: ${{ parameters.Net5Preview5ChannelId }} - transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json' - shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' - symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' - - - template: \eng\common\templates\post-build\channels\generic-public-channel.yml - parameters: - artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} - dependsOn: ${{ parameters.publishDependsOn }} - publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} - symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} - stageName: 'Net5_Preview6_Publish' - channelName: '.NET 5 Preview 6' - akaMSChannelName: 'net5/preview6' - channelId: ${{ parameters.Net5Preview6ChannelId }} - transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json' - shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' - symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' - - template: \eng\common\templates\post-build\channels\generic-public-channel.yml parameters: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} @@ -311,6 +284,34 @@ stages: shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' + - template: \eng\common\templates\post-build\channels\generic-internal-channel.yml + parameters: + artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} + dependsOn: ${{ parameters.publishDependsOn }} + publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} + symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} + stageName: 'Net5_Preview8_Publish' + channelName: '.NET 5 Preview 8' + akaMSChannelName: 'net5/preview8' + channelId: ${{ parameters.Net5Preview8ChannelId }} + transportFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v3/index.json' + shippingFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal/nuget/v3/index.json' + symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-symbols/nuget/v3/index.json' + + - template: \eng\common\templates\post-build\channels\generic-internal-channel.yml + parameters: + artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} + dependsOn: ${{ parameters.publishDependsOn }} + publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} + symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} + stageName: 'Net5_RC1_Publish' + channelName: '.NET 5 RC 1' + akaMSChannelName: 'net5/rc1' + channelId: ${{ parameters.Net5RC1ChannelId }} + transportFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v3/index.json' + shippingFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal/nuget/v3/index.json' + symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-symbols/nuget/v3/index.json' + - template: \eng\common\templates\post-build\channels\generic-public-channel.yml parameters: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} @@ -509,6 +510,19 @@ stages: shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json' symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json' + - template: \eng\common\templates\post-build\channels\generic-public-channel.yml + parameters: + artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} + dependsOn: ${{ parameters.publishDependsOn }} + publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} + symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} + stageName: 'VS16_8_Publishing' + channelName: 'VS 16.8' + channelId: ${{ parameters.VS168ChannelId }} + transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-transport/nuget/v3/index.json' + shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json' + symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json' + - template: \eng\common\templates\post-build\channels\generic-public-channel.yml parameters: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index d68684e2a..6f8bc4111 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -385,7 +385,7 @@ function InitializeXCopyMSBuild([string]$packageVersion, [bool]$install) { Create-Directory $packageDir Write-Host "Downloading $packageName $packageVersion" $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit - Invoke-WebRequest "https://dotnet.myget.org/F/roslyn-tools/api/v2/package/$packageName/$packageVersion/" -OutFile $packagePath + Invoke-WebRequest "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/flat2/$packageName/$packageVersion/$packageName.$packageVersion.nupkg" -OutFile $packagePath Unzip $packagePath $packageDir } diff --git a/global.json b/global.json index f634d1018..05e261d5f 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20330.3" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20364.3" } } From 95bf720dc0b594f95b71235508912e092ddd2def Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 16 Jul 2020 10:19:51 -0700 Subject: [PATCH 003/183] Pass some other variables to dockerrun (#8009) These are used in publishing to populate manifest metadata. Arcade now requires that the metadata is consistent across each manifest. --- eng/dockerrun.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/dockerrun.sh b/eng/dockerrun.sh index 819858ea2..f2ef9f914 100755 --- a/eng/dockerrun.sh +++ b/eng/dockerrun.sh @@ -162,8 +162,11 @@ docker run $INTERACTIVE -t --rm --sig-proxy=true \ -e BUILD_REPOSITORY_URI \ -e BUILD_SOURCEBRANCH \ -e BUILD_BUILDNUMBER \ + -e BUILD_BUILDID \ -e BUILD_SOURCEVERSION \ -e SYSTEM_TEAMPROJECT \ + -e SYSTEM_DEFINITIONID \ + -e SYSTEM_TEAMFOUNDATIONCOLLECTIONURI \ -e DOTNETCLIMSRC_READ_SAS_TOKEN \ -e AGENT_JOBNAME \ -e AGENT_OS \ From c68bf8e60af55229561f40363a0831a8169cd639 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 16 Jul 2020 13:38:34 -0700 Subject: [PATCH 004/183] Publish the SDK sentinel package as a package (#8012) --- eng/Publishing.props | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/eng/Publishing.props b/eng/Publishing.props index 568312d2e..de5617d4f 100644 --- a/eng/Publishing.props +++ b/eng/Publishing.props @@ -50,9 +50,11 @@ $(AssetManifestFileName)-$(AGENT_JOBNAME) $(AssetManifestFileName)-$(Architecture) $(AssetManifestFileName)-checksums + $(AssetManifestFileName)-packages $(ArtifactsLogDir)AssetManifest\$(AssetManifestFileName).xml $(ArtifactsLogDir)AssetManifest\$(ChecksumsAssetManifestFileName).xml + $(ArtifactsLogDir)AssetManifest\$(PackagesManifestFileName).xml $(ArtifactsDir)..\DotnetAssetsTmpDir\$([System.Guid]::NewGuid()) $(ArtifactsDir)..\ChecksumAssetsTmpDir\$([System.Guid]::NewGuid()) @@ -74,6 +76,7 @@ Condition=" '$(PublishBinariesAndBadge)' == 'true' and '$(OS)' == 'Windows_NT' and '$(Architecture)' == 'x64'" /> + @@ -84,6 +87,7 @@ + $(BlobStoragePartialRelativePath)/$(FullNugetVersion)/$([System.String]::Copy('%(Filename)%(Extension)')) NonShipping=true + + + NonShipping=true + $(BlobStoragePartialRelativePath)/$(FullNugetVersion)/$([System.String]::Copy('%(Filename)%(Extension)')) @@ -165,5 +173,16 @@ ManifestCommit="$(BUILD_SOURCEVERSION)" AssetManifestPath="$(ChecksumsAssetManifestFilePath)" PublishFlatContainer="true" /> + + + From 0dd3ff77c73203e2caf5a22ac37b5f81b622dffb Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Fri, 17 Jul 2020 08:44:45 -0700 Subject: [PATCH 005/183] Only publish Microsoft.DotNet.Sdk.Internal once (#8016) Otherwise we run into a publishing check that ensures that there are no duplicates. Also don't push if the packages itemgroup is empty --- eng/Publishing.props | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eng/Publishing.props b/eng/Publishing.props index de5617d4f..9999c71ee 100644 --- a/eng/Publishing.props +++ b/eng/Publishing.props @@ -87,7 +87,7 @@ - + + PublishFlatContainer="false" + Condition="'@(SdkPackagesToPush)' != ''" /> From 2c7f5c199fda0df348aba1618630ea88cc814225 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2020 16:12:41 +0000 Subject: [PATCH 006/183] [master] Update dependencies from dotnet/sdk (#7984) * Update dependencies from https://github.com/dotnet/sdk build 20200713.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.1 * Update dependencies from https://github.com/dotnet/sdk build 20200713.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.2 * Update dependencies from https://github.com/dotnet/sdk build 20200713.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.3 * Update dependencies from https://github.com/dotnet/sdk build 20200713.4 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.4 * Update dependencies from https://github.com/dotnet/sdk build 20200713.5 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.5 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20363.2 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200713.6 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20363.6 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20363.2 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200714.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20364.2 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.3 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200714.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20364.3 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.8 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200714.4 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20364.4 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.8 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20365.1 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.16 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20365.3 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.16 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.8 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20365.8 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.16 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.11 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-preview.8.20365.11 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-preview.8.20364.16 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.14 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20365.14 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.8 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.15 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20365.15 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.8 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.16 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20365.16 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.11 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.17 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20365.17 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.11 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200715.19 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20365.19 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.12 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.2 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20365.18 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.4 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.4 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.1 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.8 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.8 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.2 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.13 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.13 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.3 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.16 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.16 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.4 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.17 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.17 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.5 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.19 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.19 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.16 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200716.21 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20366.21 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.24 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200717.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20367.1 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.25 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200717.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20367.2 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20360.11 -> To Version 5.0.0-rc.1.20366.25 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200717.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20367.3 Dependency coherency updates Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-preview.8.20361.2 -> To Version 5.0.0-rc.1.20366.14 (parent: Microsoft.NET.Sdk * Update dependencies from https://github.com/dotnet/sdk build 20200717.4 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-preview.8.20362.2 -> To Version 5.0.100-rc.1.20367.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,Microsoft.WindowsDesktop.App,Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates From Version 5.0.0-preview.8.20361.2 -> To Version 5.0.0-preview.8.20365.2 (parent: Microsoft.NET.Sdk * Use dnceng agent Co-authored-by: dotnet-maestro[bot] Co-authored-by: William Li --- .vsts-ci.yml | 6 ++- eng/Version.Details.xml | 80 +++++++++++++++--------------- eng/Versions.props | 40 +++++++-------- eng/common/templates/jobs/jobs.yml | 6 ++- 4 files changed, 68 insertions(+), 64 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index a8a0ca6e4..fc6579578 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -41,7 +41,8 @@ stages: agentOs: Windows_NT pool: ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - vmImage: vs2017-win2016 + name: NetCorePublic-Pool + queue: buildpool.windows.10.amd64.vs2017.open ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: name: NetCoreInternal-Pool queue: buildpool.windows.10.amd64.vs2017 @@ -255,7 +256,8 @@ stages: - Darwin publishUsingPipelines: true pool: - vmImage: vs2017-win2016 + name: NetCorePublic-Pool + queue: buildpool.windows.10.amd64.vs2017.open - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - template: eng\common\templates\post-build\post-build.yml diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b8406fb9f..07279d372 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,37 +1,37 @@ - + https://github.com/dotnet/windowsdesktop - 0f0a20ef103bd864b48bbb44ea55bccbecc450c7 + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/windowsdesktop - 0f0a20ef103bd864b48bbb44ea55bccbecc450c7 + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/windowsdesktop - 0f0a20ef103bd864b48bbb44ea55bccbecc450c7 + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 @@ -39,33 +39,33 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - f37dd6fc8595e130909dcb3085a56342d04aa20c + fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee - + https://github.com/dotnet/aspnetcore - fae3dd12aeba7c9995f69bfaa1c9b74d82307ef1 + 71327921ed3afde65358a10517d6a108aaa068ee https://github.com/dotnet/test-templates @@ -75,26 +75,26 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - 6bb0326ac089950ead3b19fc83e34444c084e8f5 + a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 9be071d41da311b89b65399b5ae930fd7ebe8155 + 86e2c2b0839af47d7d958040cceb8d0ab31718d7 - + https://github.com/dotnet/sdk - 9be071d41da311b89b65399b5ae930fd7ebe8155 + 86e2c2b0839af47d7d958040cceb8d0ab31718d7 - + https://github.com/dotnet/winforms - f40d9752f45385616d55c6e82b672506951353fa + 7804e088b9dfc54adfb781bba118467cdb5ed0df - + https://github.com/dotnet/wpf - abb96f98a8f4f94a08744404ce3a2cf0c784ed6d + 7a26b532499cfef8ac96400ce3c27286a1f922e2 diff --git a/eng/Versions.props b/eng/Versions.props index e4906b6d8..76eaa1612 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,15 +17,15 @@ - 5.0.0-preview.8.20361.2 + 5.0.0-preview.8.20365.1 - 5.0.0-preview.8.20361.2 + 5.0.0-preview.8.20365.1 - 5.0.0-preview.8.20322.2 + 5.0.0-rc.1.20365.5 @@ -37,41 +37,41 @@ - 5.0.0-preview.8.20360.11 - 5.0.0-preview.8.20360.11 - 5.0.0-preview.8.20360.11 - 5.0.0-preview.8.20360.11 - 5.0.0-preview.8.20360.11 - 5.0.0-preview.8.20360.11 + 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20366.25 0.2.0 - 5.0.100-preview.8.20362.2 - 5.0.100-preview.8.20362.2 + 5.0.100-rc.1.20367.4 + 5.0.100-rc.1.20367.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-preview.8.20361.2 + 5.0.0-rc.1.20366.14 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 + 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20366.14 2.1.0 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 - 5.0.0-preview.8.20361.2 + 5.0.0-preview.8.20365.2 + 5.0.0-preview.8.20365.2 + 5.0.0-preview.8.20365.2 diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index c08225a9a..83d316b26 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -56,7 +56,8 @@ jobs: - ${{ each job in parameters.jobs }}: - ${{ job.job }} pool: - vmImage: vs2017-win2016 + name: NetCorePublic-Pool + queue: buildpool.windows.10.amd64.vs2017.open runAsPublic: ${{ parameters.runAsPublic }} publishUsingPipelines: ${{ parameters.enablePublishUsingPipelines }} enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} @@ -69,4 +70,5 @@ jobs: dependsOn: - Asset_Registry_Publish pool: - vmImage: vs2017-win2016 + name: NetCorePublic-Pool + queue: buildpool.windows.10.amd64.vs2017.open From 1761f1c4d168704e6a6e9d806dada6c5df402456 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2020 19:39:46 +0000 Subject: [PATCH 007/183] Update dependencies from https://github.com/dotnet/sdk build 20200717.5 (#8019) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.4 -> To Version 5.0.100-rc.1.20367.5 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20366.25 -> To Version 5.0.0-rc.1.20367.3 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 07279d372..14a980cd4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 - + https://github.com/dotnet/aspnetcore - 71327921ed3afde65358a10517d6a108aaa068ee + 4b943417a7d3e266d3ac998b3ec7e8ffff429910 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 86e2c2b0839af47d7d958040cceb8d0ab31718d7 + 18aea7ed4e355425657ed4034958df70d45c1db6 - + https://github.com/dotnet/sdk - 86e2c2b0839af47d7d958040cceb8d0ab31718d7 + 18aea7ed4e355425657ed4034958df70d45c1db6 diff --git a/eng/Versions.props b/eng/Versions.props index 76eaa1612..2e92e780b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20366.25 - 5.0.0-rc.1.20366.25 - 5.0.0-rc.1.20366.25 - 5.0.0-rc.1.20366.25 - 5.0.0-rc.1.20366.25 - 5.0.0-rc.1.20366.25 + 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.3 0.2.0 - 5.0.100-rc.1.20367.4 - 5.0.100-rc.1.20367.4 + 5.0.100-rc.1.20367.5 + 5.0.100-rc.1.20367.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 89365e9fa4d1977d5c9fdaec975c62b6db9339b7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2020 20:45:04 +0000 Subject: [PATCH 008/183] Update dependencies from https://github.com/dotnet/sdk build 20200717.7 (#8020) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.5 -> To Version 5.0.100-rc.1.20367.7 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 14a980cd4..05bf01b7a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 18aea7ed4e355425657ed4034958df70d45c1db6 + e053f40806bf1e50b01271cbddc57759d24f0b0b - + https://github.com/dotnet/sdk - 18aea7ed4e355425657ed4034958df70d45c1db6 + e053f40806bf1e50b01271cbddc57759d24f0b0b diff --git a/eng/Versions.props b/eng/Versions.props index 2e92e780b..e2e5c8e3b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20367.5 - 5.0.100-rc.1.20367.5 + 5.0.100-rc.1.20367.7 + 5.0.100-rc.1.20367.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ca7902a03f66293cf27691add7c51ec5cd8127f4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2020 02:43:57 +0000 Subject: [PATCH 009/183] [master] Update dependencies from dotnet/sdk (#8021) * Update dependencies from https://github.com/dotnet/sdk build 20200717.8 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.7 -> To Version 5.0.100-rc.1.20367.8 * Update dependencies from https://github.com/dotnet/sdk build 20200717.9 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.7 -> To Version 5.0.100-rc.1.20367.9 * Update dependencies from https://github.com/dotnet/sdk build 20200717.12 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.7 -> To Version 5.0.100-rc.1.20367.12 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20367.3 -> To Version 5.0.0-rc.1.20367.13 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 05bf01b7a..8d8f1d5e1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f - + https://github.com/dotnet/aspnetcore - 4b943417a7d3e266d3ac998b3ec7e8ffff429910 + a8bc7ba612402cca7b5db6687510b2315a3d383f https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - e053f40806bf1e50b01271cbddc57759d24f0b0b + 121fc4c19bd4e8f127e75f21892e96b4619bbab8 - + https://github.com/dotnet/sdk - e053f40806bf1e50b01271cbddc57759d24f0b0b + 121fc4c19bd4e8f127e75f21892e96b4619bbab8 diff --git a/eng/Versions.props b/eng/Versions.props index e2e5c8e3b..33d1d2f9a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20367.3 - 5.0.0-rc.1.20367.3 - 5.0.0-rc.1.20367.3 - 5.0.0-rc.1.20367.3 - 5.0.0-rc.1.20367.3 - 5.0.0-rc.1.20367.3 + 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.13 0.2.0 - 5.0.100-rc.1.20367.7 - 5.0.100-rc.1.20367.7 + 5.0.100-rc.1.20367.12 + 5.0.100-rc.1.20367.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f824138519ab33c7f211572da41a22f0561418a2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2020 04:58:02 +0000 Subject: [PATCH 010/183] Update dependencies from https://github.com/dotnet/sdk build 20200717.14 (#8022) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.12 -> To Version 5.0.100-rc.1.20367.14 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20367.13 -> To Version 5.0.0-rc.1.20367.15 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8d8f1d5e1..b491f078e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 - + https://github.com/dotnet/aspnetcore - a8bc7ba612402cca7b5db6687510b2315a3d383f + 39859c0c183d033e9a5c5b2e739250ebd6787965 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 121fc4c19bd4e8f127e75f21892e96b4619bbab8 + 72d3792bb1e5ee56841408009a8638d51acd948b - + https://github.com/dotnet/sdk - 121fc4c19bd4e8f127e75f21892e96b4619bbab8 + 72d3792bb1e5ee56841408009a8638d51acd948b diff --git a/eng/Versions.props b/eng/Versions.props index 33d1d2f9a..fa9976a49 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20367.13 - 5.0.0-rc.1.20367.13 - 5.0.0-rc.1.20367.13 - 5.0.0-rc.1.20367.13 - 5.0.0-rc.1.20367.13 - 5.0.0-rc.1.20367.13 + 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.15 0.2.0 - 5.0.100-rc.1.20367.12 - 5.0.100-rc.1.20367.12 + 5.0.100-rc.1.20367.14 + 5.0.100-rc.1.20367.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7bc397e4f596536d8c968e1f09670a706505edd0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2020 07:08:27 +0000 Subject: [PATCH 011/183] Update dependencies from https://github.com/dotnet/sdk build 20200717.17 (#8023) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.14 -> To Version 5.0.100-rc.1.20367.17 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20367.15 -> To Version 5.0.0-rc.1.20367.16 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b491f078e..b26350f5d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime fd45f7302018ff35405c9e14ca1cf6270efacfe3 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 - + https://github.com/dotnet/aspnetcore - 39859c0c183d033e9a5c5b2e739250ebd6787965 + 0889a62250e56066055d45a6fce99413d3f48d56 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 72d3792bb1e5ee56841408009a8638d51acd948b + af98c3e739901341a3b7d1babb2ea5f36ef06656 - + https://github.com/dotnet/sdk - 72d3792bb1e5ee56841408009a8638d51acd948b + af98c3e739901341a3b7d1babb2ea5f36ef06656 diff --git a/eng/Versions.props b/eng/Versions.props index fa9976a49..8cafcd1a4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20367.15 - 5.0.0-rc.1.20367.15 - 5.0.0-rc.1.20367.15 - 5.0.0-rc.1.20367.15 - 5.0.0-rc.1.20367.15 - 5.0.0-rc.1.20367.15 + 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20367.16 0.2.0 - 5.0.100-rc.1.20367.14 - 5.0.100-rc.1.20367.14 + 5.0.100-rc.1.20367.17 + 5.0.100-rc.1.20367.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 82b0ded6aff5804ce8a001d81292572ad318c8b7 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Mon, 20 Jul 2020 11:48:37 -0700 Subject: [PATCH 012/183] Fixup pools (#8024) * Fixup pools and move to 2019 queues * Fixup queues * Revert publish build assets to hosted --- .vsts-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index fc6579578..461be33bb 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -40,10 +40,10 @@ stages: parameters: agentOs: Windows_NT pool: - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: + ${{ if eq(variables['System.TeamProject'], 'public') }}: name: NetCorePublic-Pool queue: buildpool.windows.10.amd64.vs2017.open - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: NetCoreInternal-Pool queue: buildpool.windows.10.amd64.vs2017 timeoutInMinutes: 180 @@ -256,8 +256,7 @@ stages: - Darwin publishUsingPipelines: true pool: - name: NetCorePublic-Pool - queue: buildpool.windows.10.amd64.vs2017.open + vmImage: vs2017-win2016 - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - template: eng\common\templates\post-build\post-build.yml From d24cc8a10ace6ee0698936b5fc181cabb8fa9bc4 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Tue, 21 Jul 2020 07:55:52 -0700 Subject: [PATCH 013/183] Enable builds of internal branches (#8006) --- .vsts-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 461be33bb..05e608cd5 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -5,6 +5,7 @@ trigger: - master - release/* - internal/release/3.* + - internal/release/5.* variables: # These two variables are used by CopyToLatest. From 935b166ebd502d86369982978ed0a834cbbdcfb5 Mon Sep 17 00:00:00 2001 From: William Li Date: Tue, 21 Jul 2020 16:12:39 -0700 Subject: [PATCH 014/183] Revert "disable test It_generates_a_single_file_for_self_contained_apps" --- test/SdkTests/TestConfig.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/SdkTests/TestConfig.xml b/test/SdkTests/TestConfig.xml index ff25a0cba..794dd1478 100644 --- a/test/SdkTests/TestConfig.xml +++ b/test/SdkTests/TestConfig.xml @@ -141,11 +141,5 @@ Skip="true" Issue="" Reason="Need all .NET core runtime"/> - - - From 2707682d08e4638515c77c79e45228087fa5fa14 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2020 02:52:12 +0000 Subject: [PATCH 015/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.10 (#8027) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20367.17 -> To Version 5.0.100-rc.1.20371.10 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,Microsoft.WindowsDesktop.App,Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates From Version 5.0.0-preview.8.20365.2 -> To Version 5.0.0-rc.1.20370.3 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 52 ++++++++++++++++++++--------------------- eng/Versions.props | 26 ++++++++++----------- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b26350f5d..b23ff03bb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,37 +1,37 @@ - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + 854151533f7300898e9650a1e900d2fa1e4fb2dd - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + 854151533f7300898e9650a1e900d2fa1e4fb2dd - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + 854151533f7300898e9650a1e900d2fa1e4fb2dd - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - fd45f7302018ff35405c9e14ca1cf6270efacfe3 + 0e0e648770e54b12c2fa81a77538ce1a72fca8af https://github.com/dotnet/aspnetcore @@ -79,22 +79,22 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - af98c3e739901341a3b7d1babb2ea5f36ef06656 + 72f64767c3bc66c21b39913f4c5547141bae7e06 - + https://github.com/dotnet/sdk - af98c3e739901341a3b7d1babb2ea5f36ef06656 + 72f64767c3bc66c21b39913f4c5547141bae7e06 - + https://github.com/dotnet/winforms - 7804e088b9dfc54adfb781bba118467cdb5ed0df + dec24b8994ced3461036d3fb15ecd16459184ecb - + https://github.com/dotnet/wpf - 7a26b532499cfef8ac96400ce3c27286a1f922e2 + 53812c590c5f140297ed96ee2a78d05dffa7be35 diff --git a/eng/Versions.props b/eng/Versions.props index 8cafcd1a4..9840dc037 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,11 +17,11 @@ - 5.0.0-preview.8.20365.1 + 5.0.0-rc.1.20366.1 - 5.0.0-preview.8.20365.1 + 5.0.0-preview.8.20367.2 @@ -49,29 +49,29 @@ - 5.0.100-rc.1.20367.17 - 5.0.100-rc.1.20367.17 + 5.0.100-rc.1.20371.10 + 5.0.100-rc.1.20371.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20370.4 - 5.0.0-rc.1.20366.14 - 5.0.0-rc.1.20366.14 - 5.0.0-rc.1.20366.14 - 5.0.0-rc.1.20366.14 - 5.0.0-rc.1.20366.14 + 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20370.4 2.1.0 - 5.0.0-preview.8.20365.2 - 5.0.0-preview.8.20365.2 - 5.0.0-preview.8.20365.2 + 5.0.0-rc.1.20370.3 + 5.0.0-rc.1.20370.3 + 5.0.0-rc.1.20370.3 From 233109973b4e95ae40a7a5f6e0ae39cd8cdffed0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:36:19 +0000 Subject: [PATCH 016/183] Update dependencies from https://github.com/dotnet/sdk build 20200718.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20368.1 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,Microsoft.WindowsDesktop.App,Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates From Version 5.0.0-rc.1.20370.3 -> To Version 5.0.0-preview.8.20365.2 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 52 ++++++++++++++++++++--------------------- eng/Versions.props | 26 ++++++++++----------- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b23ff03bb..5bac1ae50 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,37 +1,37 @@ - + https://github.com/dotnet/windowsdesktop - 854151533f7300898e9650a1e900d2fa1e4fb2dd + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/windowsdesktop - 854151533f7300898e9650a1e900d2fa1e4fb2dd + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/windowsdesktop - 854151533f7300898e9650a1e900d2fa1e4fb2dd + bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 0e0e648770e54b12c2fa81a77538ce1a72fca8af + f6dc87f43df543bdc761ded7c578ecedc5b39668 https://github.com/dotnet/aspnetcore @@ -79,22 +79,22 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 72f64767c3bc66c21b39913f4c5547141bae7e06 + ade7883cb5e6aef2bc157590fe9a96adb34c364c - + https://github.com/dotnet/sdk - 72f64767c3bc66c21b39913f4c5547141bae7e06 + ade7883cb5e6aef2bc157590fe9a96adb34c364c - + https://github.com/dotnet/winforms - dec24b8994ced3461036d3fb15ecd16459184ecb + 7804e088b9dfc54adfb781bba118467cdb5ed0df - + https://github.com/dotnet/wpf - 53812c590c5f140297ed96ee2a78d05dffa7be35 + 7a26b532499cfef8ac96400ce3c27286a1f922e2 diff --git a/eng/Versions.props b/eng/Versions.props index 9840dc037..d77f5a868 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,11 +17,11 @@ - 5.0.0-rc.1.20366.1 + 5.0.0-preview.8.20365.1 - 5.0.0-preview.8.20367.2 + 5.0.0-preview.8.20365.1 @@ -49,29 +49,29 @@ - 5.0.100-rc.1.20371.10 - 5.0.100-rc.1.20371.10 + 5.0.100-rc.1.20368.1 + 5.0.100-rc.1.20368.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20367.23 - 5.0.0-rc.1.20370.4 - 5.0.0-rc.1.20370.4 - 5.0.0-rc.1.20370.4 - 5.0.0-rc.1.20370.4 - 5.0.0-rc.1.20370.4 + 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20367.23 2.1.0 - 5.0.0-rc.1.20370.3 - 5.0.0-rc.1.20370.3 - 5.0.0-rc.1.20370.3 + 5.0.0-preview.8.20365.2 + 5.0.0-preview.8.20365.2 + 5.0.0-preview.8.20365.2 From 3a4e9f0167235ca974cc0a33c42d9e30b8fd2f90 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:57:45 +0000 Subject: [PATCH 017/183] Update dependencies from https://github.com/dotnet/sdk build 20200718.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20368.2 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5bac1ae50..a95a3ee5a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - ade7883cb5e6aef2bc157590fe9a96adb34c364c + c45b6794452a6cdb4a26dc632f884b50b7fb079b - + https://github.com/dotnet/sdk - ade7883cb5e6aef2bc157590fe9a96adb34c364c + c45b6794452a6cdb4a26dc632f884b50b7fb079b diff --git a/eng/Versions.props b/eng/Versions.props index d77f5a868..ea8dcb73a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20368.1 - 5.0.100-rc.1.20368.1 + 5.0.100-rc.1.20368.2 + 5.0.100-rc.1.20368.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 18a6b78176472fa42548a4ba797277de1625289e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:57:53 +0000 Subject: [PATCH 018/183] Update dependencies from https://github.com/dotnet/sdk build 20200720.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20368.2 -> To Version 5.0.100-rc.1.20370.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a95a3ee5a..b94e035f9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - c45b6794452a6cdb4a26dc632f884b50b7fb079b + 53ae7219a422130e2c94d7841921c1afb600015b - + https://github.com/dotnet/sdk - c45b6794452a6cdb4a26dc632f884b50b7fb079b + 53ae7219a422130e2c94d7841921c1afb600015b diff --git a/eng/Versions.props b/eng/Versions.props index ea8dcb73a..b9e974bcf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20368.2 - 5.0.100-rc.1.20368.2 + 5.0.100-rc.1.20370.1 + 5.0.100-rc.1.20370.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From de4967720caebbdbd5cd1550a2cfd5c203c7fae2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:01 +0000 Subject: [PATCH 019/183] Update dependencies from https://github.com/dotnet/sdk build 20200720.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20370.1 -> To Version 5.0.100-rc.1.20370.2 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b94e035f9..7b16f6513 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 53ae7219a422130e2c94d7841921c1afb600015b + 93dbee004557809d66d34c92d8808bf26b1fd3a9 - + https://github.com/dotnet/sdk - 53ae7219a422130e2c94d7841921c1afb600015b + 93dbee004557809d66d34c92d8808bf26b1fd3a9 diff --git a/eng/Versions.props b/eng/Versions.props index b9e974bcf..6d74cee63 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20370.1 - 5.0.100-rc.1.20370.1 + 5.0.100-rc.1.20370.2 + 5.0.100-rc.1.20370.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8e7b2f71b895df696e6be2d3d5b38e38b6d96161 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:09 +0000 Subject: [PATCH 020/183] Update dependencies from https://github.com/dotnet/sdk build 20200720.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20370.2 -> To Version 5.0.100-rc.1.20370.3 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7b16f6513..ad8de51dc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 93dbee004557809d66d34c92d8808bf26b1fd3a9 + fb52d59026a13682ffae81ec5719b8e5b80e91db - + https://github.com/dotnet/sdk - 93dbee004557809d66d34c92d8808bf26b1fd3a9 + fb52d59026a13682ffae81ec5719b8e5b80e91db diff --git a/eng/Versions.props b/eng/Versions.props index 6d74cee63..1974beddd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20370.2 - 5.0.100-rc.1.20370.2 + 5.0.100-rc.1.20370.3 + 5.0.100-rc.1.20370.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 4b41cb284988a4aa61a4b286538940fd986e62e6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:17 +0000 Subject: [PATCH 021/183] Update dependencies from https://github.com/dotnet/sdk build 20200720.7 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20370.3 -> To Version 5.0.100-rc.1.20370.7 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ad8de51dc..4d0aed481 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - fb52d59026a13682ffae81ec5719b8e5b80e91db + 2e1238421641e145b3db8d95985df948c79a1b95 - + https://github.com/dotnet/sdk - fb52d59026a13682ffae81ec5719b8e5b80e91db + 2e1238421641e145b3db8d95985df948c79a1b95 diff --git a/eng/Versions.props b/eng/Versions.props index 1974beddd..539734f7c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20370.3 - 5.0.100-rc.1.20370.3 + 5.0.100-rc.1.20370.7 + 5.0.100-rc.1.20370.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From a0d19ce8858feb2304020f461fe46f92f9d4b6af Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:25 +0000 Subject: [PATCH 022/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20370.7 -> To Version 5.0.100-rc.1.20371.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4d0aed481..b7421cdc2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 2e1238421641e145b3db8d95985df948c79a1b95 + 4ba1a57c295ec521ae407c6f33fa0b6baaf4acd9 - + https://github.com/dotnet/sdk - 2e1238421641e145b3db8d95985df948c79a1b95 + 4ba1a57c295ec521ae407c6f33fa0b6baaf4acd9 diff --git a/eng/Versions.props b/eng/Versions.props index 539734f7c..6b4d55b8e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20370.7 - 5.0.100-rc.1.20370.7 + 5.0.100-rc.1.20371.1 + 5.0.100-rc.1.20371.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 62e379f7823a00acda53a589ee843d2f682c8771 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:32 +0000 Subject: [PATCH 023/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.4 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.1 -> To Version 5.0.100-rc.1.20371.4 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b7421cdc2..990d57cd2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 4ba1a57c295ec521ae407c6f33fa0b6baaf4acd9 + 73ef1594070b4fa7620a689fe016cd82cc6f031f - + https://github.com/dotnet/sdk - 4ba1a57c295ec521ae407c6f33fa0b6baaf4acd9 + 73ef1594070b4fa7620a689fe016cd82cc6f031f diff --git a/eng/Versions.props b/eng/Versions.props index 6b4d55b8e..ceb0e96f8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20371.1 - 5.0.100-rc.1.20371.1 + 5.0.100-rc.1.20371.4 + 5.0.100-rc.1.20371.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From dae7b725a891bf8a60d009e0f2b4cb9d997a41dd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 17:58:40 +0000 Subject: [PATCH 024/183] Dependency coherency updates Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms From Version 5.0.0-rc.1.20370.4 -> To Version 5.0.0-rc.1.20368.6 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 990d57cd2..3232c2d0a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - f6dc87f43df543bdc761ded7c578ecedc5b39668 + f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 https://github.com/dotnet/aspnetcore diff --git a/eng/Versions.props b/eng/Versions.props index ceb0e96f8..fb20d38a0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -56,15 +56,15 @@ - 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20368.6 - 5.0.0-rc.1.20367.23 - 5.0.0-rc.1.20367.23 - 5.0.0-rc.1.20367.23 - 5.0.0-rc.1.20367.23 - 5.0.0-rc.1.20367.23 + 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20368.6 2.1.0 From 9cec0e390f48fe18b8af9d90701b836cb7acb096 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 18:30:35 +0000 Subject: [PATCH 025/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.13 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20371.13 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3232c2d0a..da78af655 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 73ef1594070b4fa7620a689fe016cd82cc6f031f + 24c6496b166f996583ac29f51a1b52237df7b6e9 - + https://github.com/dotnet/sdk - 73ef1594070b4fa7620a689fe016cd82cc6f031f + 24c6496b166f996583ac29f51a1b52237df7b6e9 diff --git a/eng/Versions.props b/eng/Versions.props index fb20d38a0..71923b09f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20371.4 - 5.0.100-rc.1.20371.4 + 5.0.100-rc.1.20371.13 + 5.0.100-rc.1.20371.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 96276a7cfe646bfe85299524b96e5584205576bf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 18:30:43 +0000 Subject: [PATCH 026/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.18 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.13 -> To Version 5.0.100-rc.1.20371.18 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index da78af655..14e5379d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 24c6496b166f996583ac29f51a1b52237df7b6e9 + 16d1862b84629edfd6c85d160511c7e7369d53b2 - + https://github.com/dotnet/sdk - 24c6496b166f996583ac29f51a1b52237df7b6e9 + 16d1862b84629edfd6c85d160511c7e7369d53b2 diff --git a/eng/Versions.props b/eng/Versions.props index 71923b09f..3b641ed0e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20371.13 - 5.0.100-rc.1.20371.13 + 5.0.100-rc.1.20371.18 + 5.0.100-rc.1.20371.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 682c30571ee645ae225e3c07919f499fb23a3ade Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 18:30:51 +0000 Subject: [PATCH 027/183] Update dependencies from https://github.com/dotnet/sdk build 20200721.22 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.18 -> To Version 5.0.100-rc.1.20371.22 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 14e5379d2..3026d756c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 16d1862b84629edfd6c85d160511c7e7369d53b2 + 9648f7449b485ee999469f7bf57e2cf70723b04e - + https://github.com/dotnet/sdk - 16d1862b84629edfd6c85d160511c7e7369d53b2 + 9648f7449b485ee999469f7bf57e2cf70723b04e diff --git a/eng/Versions.props b/eng/Versions.props index 3b641ed0e..ffebd2ff4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20371.18 - 5.0.100-rc.1.20371.18 + 5.0.100-rc.1.20371.22 + 5.0.100-rc.1.20371.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From fb8c0c39e0ab31e90854011e3424c5dbdb1ce1b0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 19:08:16 +0000 Subject: [PATCH 028/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.3 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3026d756c..b64c8c78c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 9648f7449b485ee999469f7bf57e2cf70723b04e + 6323c913714cc7a1cba632475aa1e1553779cefc - + https://github.com/dotnet/sdk - 9648f7449b485ee999469f7bf57e2cf70723b04e + 6323c913714cc7a1cba632475aa1e1553779cefc diff --git a/eng/Versions.props b/eng/Versions.props index ffebd2ff4..fe2f578a3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20371.22 - 5.0.100-rc.1.20371.22 + 5.0.100-rc.1.20372.3 + 5.0.100-rc.1.20372.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From df4691036ee4b57c1f06f9481835a3240135ac44 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 22:24:53 +0000 Subject: [PATCH 029/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.9 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.9 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20371.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b64c8c78c..ec00d2ce5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 - + https://github.com/dotnet/aspnetcore - 0889a62250e56066055d45a6fce99413d3f48d56 + 088380b45cad29f48635867526b954d8c86b84f7 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating a02ce3bcd7aea517e903886d0cc9761be225e18a - + https://github.com/dotnet/sdk - 6323c913714cc7a1cba632475aa1e1553779cefc + 1f54cc4270ed7bb850b58d03130054509c1fff04 - + https://github.com/dotnet/sdk - 6323c913714cc7a1cba632475aa1e1553779cefc + 1f54cc4270ed7bb850b58d03130054509c1fff04 diff --git a/eng/Versions.props b/eng/Versions.props index fe2f578a3..9c73ce2f5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20367.16 - 5.0.0-rc.1.20367.16 - 5.0.0-rc.1.20367.16 - 5.0.0-rc.1.20367.16 - 5.0.0-rc.1.20367.16 - 5.0.0-rc.1.20367.16 + 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20371.1 0.2.0 - 5.0.100-rc.1.20372.3 - 5.0.100-rc.1.20372.3 + 5.0.100-rc.1.20372.9 + 5.0.100-rc.1.20372.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3c40282b0833899e2b738f70740787942167aeaa Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 22 Jul 2020 23:36:51 +0000 Subject: [PATCH 030/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.14 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.14 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.2 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 18 +++++++++--------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ec00d2ce5..383185f02 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 - + https://github.com/dotnet/aspnetcore - 088380b45cad29f48635867526b954d8c86b84f7 + 113805aba8162ba7bac42943bcb1324801c20f46 https://github.com/dotnet/test-templates @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - a02ce3bcd7aea517e903886d0cc9761be225e18a + d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 1f54cc4270ed7bb850b58d03130054509c1fff04 + 5219cad2a8ba0a90f6deed60bc3ef7adb365036f - + https://github.com/dotnet/sdk - 1f54cc4270ed7bb850b58d03130054509c1fff04 + 5219cad2a8ba0a90f6deed60bc3ef7adb365036f diff --git a/eng/Versions.props b/eng/Versions.props index 9c73ce2f5..62aec8bff 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20365.5 + 5.0.0-rc.1.20371.1 @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20371.1 - 5.0.0-rc.1.20371.1 - 5.0.0-rc.1.20371.1 - 5.0.0-rc.1.20371.1 - 5.0.0-rc.1.20371.1 - 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.2 0.2.0 - 5.0.100-rc.1.20372.9 - 5.0.100-rc.1.20372.9 + 5.0.100-rc.1.20372.14 + 5.0.100-rc.1.20372.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 17c0e7d1b15f3a8cd2307e39bbef293307149824 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Jul 2020 00:48:36 +0000 Subject: [PATCH 031/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.17 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.17 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.2 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 383185f02..468f38d20 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 5219cad2a8ba0a90f6deed60bc3ef7adb365036f + 2fe4a6855666b80d826c073f48d97e0d84270db4 - + https://github.com/dotnet/sdk - 5219cad2a8ba0a90f6deed60bc3ef7adb365036f + 2fe4a6855666b80d826c073f48d97e0d84270db4 diff --git a/eng/Versions.props b/eng/Versions.props index 62aec8bff..d1f4866a6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20372.14 - 5.0.100-rc.1.20372.14 + 5.0.100-rc.1.20372.17 + 5.0.100-rc.1.20372.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From fa25a4392207b196d4b8f97e984d812e08dbaa36 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Jul 2020 02:16:15 +0000 Subject: [PATCH 032/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.18 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.18 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.11 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 468f38d20..843519712 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 - + https://github.com/dotnet/aspnetcore - 113805aba8162ba7bac42943bcb1324801c20f46 + 95c3bd542629ddd4400622db6d71f09e7f911bd1 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 2fe4a6855666b80d826c073f48d97e0d84270db4 + e3fbb4889e03d0c5f869df0a581d97d6b5960683 - + https://github.com/dotnet/sdk - 2fe4a6855666b80d826c073f48d97e0d84270db4 + e3fbb4889e03d0c5f869df0a581d97d6b5960683 diff --git a/eng/Versions.props b/eng/Versions.props index d1f4866a6..1108cbcc0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20372.2 - 5.0.0-rc.1.20372.2 - 5.0.0-rc.1.20372.2 - 5.0.0-rc.1.20372.2 - 5.0.0-rc.1.20372.2 - 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.11 0.2.0 - 5.0.100-rc.1.20372.17 - 5.0.100-rc.1.20372.17 + 5.0.100-rc.1.20372.18 + 5.0.100-rc.1.20372.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2e138b650f5eebeed638b7b728cc83921ba7894e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Jul 2020 06:31:46 +0000 Subject: [PATCH 033/183] Update dependencies from https://github.com/dotnet/sdk build 20200722.22 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20372.22 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.16 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 843519712..2aeb4cda8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 - + https://github.com/dotnet/aspnetcore - 95c3bd542629ddd4400622db6d71f09e7f911bd1 + a8c39e9cc5dafbb64f29780a0575df46ab9b7714 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - e3fbb4889e03d0c5f869df0a581d97d6b5960683 + eb16540d47a194a89ddfa6486145c1a40ab9f843 - + https://github.com/dotnet/sdk - e3fbb4889e03d0c5f869df0a581d97d6b5960683 + eb16540d47a194a89ddfa6486145c1a40ab9f843 diff --git a/eng/Versions.props b/eng/Versions.props index 1108cbcc0..1a51b36e9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20372.11 - 5.0.0-rc.1.20372.11 - 5.0.0-rc.1.20372.11 - 5.0.0-rc.1.20372.11 - 5.0.0-rc.1.20372.11 - 5.0.0-rc.1.20372.11 + 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.16 0.2.0 - 5.0.100-rc.1.20372.18 - 5.0.100-rc.1.20372.18 + 5.0.100-rc.1.20372.22 + 5.0.100-rc.1.20372.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2b8adc595ecf8f4142cf56df1e91e7c8fe2b29a5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Jul 2020 09:08:23 +0000 Subject: [PATCH 034/183] Update dependencies from https://github.com/dotnet/sdk build 20200723.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20373.1 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.17 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2aeb4cda8..e17a625ff 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 - + https://github.com/dotnet/aspnetcore - a8c39e9cc5dafbb64f29780a0575df46ab9b7714 + 8b7972064f068f76452eff7994263a5e4ee3ca46 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - eb16540d47a194a89ddfa6486145c1a40ab9f843 + 80c26b3bf9640108099d65781c4bd81d2d11bfd9 - + https://github.com/dotnet/sdk - eb16540d47a194a89ddfa6486145c1a40ab9f843 + 80c26b3bf9640108099d65781c4bd81d2d11bfd9 diff --git a/eng/Versions.props b/eng/Versions.props index 1a51b36e9..dc138c858 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20372.16 - 5.0.0-rc.1.20372.16 - 5.0.0-rc.1.20372.16 - 5.0.0-rc.1.20372.16 - 5.0.0-rc.1.20372.16 - 5.0.0-rc.1.20372.16 + 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20372.17 0.2.0 - 5.0.100-rc.1.20372.22 - 5.0.100-rc.1.20372.22 + 5.0.100-rc.1.20373.1 + 5.0.100-rc.1.20373.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 62120c86f1622f7457d48fcb26be9819b9ec3e60 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 23 Jul 2020 21:35:12 +0000 Subject: [PATCH 035/183] Update dependencies from https://github.com/dotnet/sdk build 20200723.14 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20373.14 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20372.17 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e17a625ff..6569bcb64 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 80c26b3bf9640108099d65781c4bd81d2d11bfd9 + bf9f38adfdb536e112250315413fed58371ecac3 - + https://github.com/dotnet/sdk - 80c26b3bf9640108099d65781c4bd81d2d11bfd9 + bf9f38adfdb536e112250315413fed58371ecac3 diff --git a/eng/Versions.props b/eng/Versions.props index dc138c858..d779fd414 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20373.1 - 5.0.100-rc.1.20373.1 + 5.0.100-rc.1.20373.14 + 5.0.100-rc.1.20373.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 091d1e88aa3d6f139b6f320e230a28c7076b9253 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 02:35:33 +0000 Subject: [PATCH 036/183] Update dependencies from https://github.com/dotnet/sdk build 20200723.19 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20373.19 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20373.9 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6569bcb64..3497af3a8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b - + https://github.com/dotnet/aspnetcore - 8b7972064f068f76452eff7994263a5e4ee3ca46 + c27dcc4b39d8345c255cdb7e12a68225f36ded3b https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - bf9f38adfdb536e112250315413fed58371ecac3 + 0584e71eefc592f3c0edea7fc34d22abc8cfaa8f - + https://github.com/dotnet/sdk - bf9f38adfdb536e112250315413fed58371ecac3 + 0584e71eefc592f3c0edea7fc34d22abc8cfaa8f diff --git a/eng/Versions.props b/eng/Versions.props index d779fd414..889e956d7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20372.17 - 5.0.0-rc.1.20372.17 - 5.0.0-rc.1.20372.17 - 5.0.0-rc.1.20372.17 - 5.0.0-rc.1.20372.17 - 5.0.0-rc.1.20372.17 + 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.9 0.2.0 - 5.0.100-rc.1.20373.14 - 5.0.100-rc.1.20373.14 + 5.0.100-rc.1.20373.19 + 5.0.100-rc.1.20373.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From dbb4b44c260295bc27f337af7041953745ddbae2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 02:59:58 +0000 Subject: [PATCH 037/183] Update dependencies from https://github.com/dotnet/sdk build 20200723.22 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20373.22 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20373.9 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3497af3a8..adaa67047 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 0584e71eefc592f3c0edea7fc34d22abc8cfaa8f + 03f37e49117eeab2db11ed7c3dec00e5f3962017 - + https://github.com/dotnet/sdk - 0584e71eefc592f3c0edea7fc34d22abc8cfaa8f + 03f37e49117eeab2db11ed7c3dec00e5f3962017 diff --git a/eng/Versions.props b/eng/Versions.props index 889e956d7..83b7cd3a9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20373.19 - 5.0.100-rc.1.20373.19 + 5.0.100-rc.1.20373.22 + 5.0.100-rc.1.20373.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2aff902b7fe48d733fbbb9c58d5a93b992281127 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 04:34:04 +0000 Subject: [PATCH 038/183] Update dependencies from https://github.com/dotnet/sdk build 20200723.25 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20373.25 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20373.12 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index adaa67047..95228c5ec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 - + https://github.com/dotnet/aspnetcore - c27dcc4b39d8345c255cdb7e12a68225f36ded3b + d9049eca9ced2ea65e21c137ccbff38c51351062 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 03f37e49117eeab2db11ed7c3dec00e5f3962017 + ebf99db3056c4df14495e85ba6f426deec6297b4 - + https://github.com/dotnet/sdk - 03f37e49117eeab2db11ed7c3dec00e5f3962017 + ebf99db3056c4df14495e85ba6f426deec6297b4 diff --git a/eng/Versions.props b/eng/Versions.props index 83b7cd3a9..dcb104df6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20373.9 - 5.0.0-rc.1.20373.9 - 5.0.0-rc.1.20373.9 - 5.0.0-rc.1.20373.9 - 5.0.0-rc.1.20373.9 - 5.0.0-rc.1.20373.9 + 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20373.12 0.2.0 - 5.0.100-rc.1.20373.22 - 5.0.100-rc.1.20373.22 + 5.0.100-rc.1.20373.25 + 5.0.100-rc.1.20373.25 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 6226b0d42eaee7b510f9d348a381b83510768619 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 12:18:27 +0000 Subject: [PATCH 039/183] Update dependencies from https://github.com/dotnet/sdk build 20200724.1 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20374.1 Dependency coherency updates Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates From Version 5.0.0-rc.1.20367.16 -> To Version 5.0.0-rc.1.20374.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 95228c5ec..086d105ec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 - + https://github.com/dotnet/aspnetcore - d9049eca9ced2ea65e21c137ccbff38c51351062 + 3a819929a7fb969ac260d55c003944d1d9dbac27 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - ebf99db3056c4df14495e85ba6f426deec6297b4 + 2a5976c8f5e4717813d880e3754429dae3c1ec1a - + https://github.com/dotnet/sdk - ebf99db3056c4df14495e85ba6f426deec6297b4 + 2a5976c8f5e4717813d880e3754429dae3c1ec1a diff --git a/eng/Versions.props b/eng/Versions.props index dcb104df6..9e8fc5f04 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20373.12 - 5.0.0-rc.1.20373.12 - 5.0.0-rc.1.20373.12 - 5.0.0-rc.1.20373.12 - 5.0.0-rc.1.20373.12 - 5.0.0-rc.1.20373.12 + 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20374.1 0.2.0 - 5.0.100-rc.1.20373.25 - 5.0.100-rc.1.20373.25 + 5.0.100-rc.1.20374.1 + 5.0.100-rc.1.20374.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 4bb021526ec0cc759b70eb1d2cb3cc1d6f5c2dd5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 15:16:01 +0000 Subject: [PATCH 040/183] Update dependencies from https://github.com/dotnet/sdk build 20200724.2 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20374.2 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,Microsoft.WindowsDesktop.App,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates From Version 5.0.0-rc.1.20370.3 -> To Version 5.0.0-rc.1.20372.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 086d105ec..51ef73843 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + e0c53c38b065bb6b88e280adc142060c53356795 - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + e0c53c38b065bb6b88e280adc142060c53356795 - + https://github.com/dotnet/windowsdesktop - bb32c617a0b0a1f8ea73935f9e1c474b3de2e3b6 + e0c53c38b065bb6b88e280adc142060c53356795 https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 2a5976c8f5e4717813d880e3754429dae3c1ec1a + b1e1dd04d5598bc5bad49fea9a2ef06bd92c891f - + https://github.com/dotnet/sdk - 2a5976c8f5e4717813d880e3754429dae3c1ec1a + b1e1dd04d5598bc5bad49fea9a2ef06bd92c891f https://github.com/dotnet/winforms 7804e088b9dfc54adfb781bba118467cdb5ed0df - + https://github.com/dotnet/wpf - 7a26b532499cfef8ac96400ce3c27286a1f922e2 + 917538415b23b55ae220bd993a5951c7cfb27d08 diff --git a/eng/Versions.props b/eng/Versions.props index 9e8fc5f04..1ad69df1d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-preview.8.20365.1 + 5.0.0-rc.1.20372.2 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20374.1 - 5.0.100-rc.1.20374.1 + 5.0.100-rc.1.20374.2 + 5.0.100-rc.1.20374.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-preview.8.20365.2 - 5.0.0-preview.8.20365.2 - 5.0.0-preview.8.20365.2 + 5.0.0-rc.1.20372.3 + 5.0.0-rc.1.20372.3 + 5.0.0-rc.1.20372.3 From 5718746fc51dc800a438d271f9d4e27e058ace72 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 24 Jul 2020 15:47:35 +0000 Subject: [PATCH 041/183] Update dependencies from https://github.com/dotnet/sdk build 20200724.3 Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20371.10 -> To Version 5.0.100-rc.1.20374.3 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,Microsoft.WindowsDesktop.App,Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch,Microsoft.DotNet.Common.ItemTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates From Version 5.0.0-rc.1.20370.3 -> To Version 5.0.0-rc.1.20372.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 51ef73843..cfbd34655 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop e0c53c38b065bb6b88e280adc142060c53356795 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - f4e9146d1d2ba7cf48ab59022658619fc9dbaec3 + d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - b1e1dd04d5598bc5bad49fea9a2ef06bd92c891f + 91c0b6f2acac010515ef91bb413e2c374bcad6e2 - + https://github.com/dotnet/sdk - b1e1dd04d5598bc5bad49fea9a2ef06bd92c891f + 91c0b6f2acac010515ef91bb413e2c374bcad6e2 diff --git a/eng/Versions.props b/eng/Versions.props index 1ad69df1d..9cc1c9060 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,22 +49,22 @@ - 5.0.100-rc.1.20374.2 - 5.0.100-rc.1.20374.2 + 5.0.100-rc.1.20374.3 + 5.0.100-rc.1.20374.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20371.13 - 5.0.0-rc.1.20368.6 - 5.0.0-rc.1.20368.6 - 5.0.0-rc.1.20368.6 - 5.0.0-rc.1.20368.6 - 5.0.0-rc.1.20368.6 + 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20371.13 2.1.0 From 7cbf691ef3410512d15a4c27ab6bdb2752e99344 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2020 16:10:29 +0000 Subject: [PATCH 042/183] Update dependencies from https://github.com/dotnet/sdk build 20200726.1 (#8038) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-preview.8.20365.1 to 5.0.0-rc.1.20366.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20374.3 to 5.0.100-rc.1.20376.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20374.3 to 5.0.100-rc.1.20376.1 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-preview.8.20365.1 to 5.0.0-rc.1.20366.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cfbd34655..817f0ae03 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,18 +79,18 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 91c0b6f2acac010515ef91bb413e2c374bcad6e2 + fa69aa6f0fd95f09ed4bdf787268aeea322a4577 - + https://github.com/dotnet/sdk - 91c0b6f2acac010515ef91bb413e2c374bcad6e2 + fa69aa6f0fd95f09ed4bdf787268aeea322a4577 - + https://github.com/dotnet/winforms - 7804e088b9dfc54adfb781bba118467cdb5ed0df + dec24b8994ced3461036d3fb15ecd16459184ecb https://github.com/dotnet/wpf diff --git a/eng/Versions.props b/eng/Versions.props index 9cc1c9060..503df7635 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,7 +17,7 @@ - 5.0.0-preview.8.20365.1 + 5.0.0-rc.1.20366.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20374.3 - 5.0.100-rc.1.20374.3 + 5.0.100-rc.1.20376.1 + 5.0.100-rc.1.20376.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From cb52e0a09f60baa8404f434e73acde27ab77ab49 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2020 11:24:00 +0000 Subject: [PATCH 043/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.1 (#8039) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20376.1 to 5.0.100-rc.1.20377.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20376.1 to 5.0.100-rc.1.20377.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 817f0ae03..3436c450a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - fa69aa6f0fd95f09ed4bdf787268aeea322a4577 + 82071dbe440fbfb53e3d10b598ad7d7d566bf94c - + https://github.com/dotnet/sdk - fa69aa6f0fd95f09ed4bdf787268aeea322a4577 + 82071dbe440fbfb53e3d10b598ad7d7d566bf94c diff --git a/eng/Versions.props b/eng/Versions.props index 503df7635..2328be2ce 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20376.1 - 5.0.100-rc.1.20376.1 + 5.0.100-rc.1.20377.1 + 5.0.100-rc.1.20377.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 042b6585fd0754feb7407b6ca06c655a872a2d16 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2020 12:50:28 +0000 Subject: [PATCH 044/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.2 (#8040) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.1 to 5.0.100-rc.1.20377.2 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.1 to 5.0.100-rc.1.20377.2 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3436c450a..68e997b18 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 82071dbe440fbfb53e3d10b598ad7d7d566bf94c + 5734242453cd80894d75fb4c20bbd9bd2f77588d - + https://github.com/dotnet/sdk - 82071dbe440fbfb53e3d10b598ad7d7d566bf94c + 5734242453cd80894d75fb4c20bbd9bd2f77588d diff --git a/eng/Versions.props b/eng/Versions.props index 2328be2ce..9bf69c6b6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20377.1 - 5.0.100-rc.1.20377.1 + 5.0.100-rc.1.20377.2 + 5.0.100-rc.1.20377.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e5625ba6a444deecd06c3f4b73318c7f9d030671 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 01:08:25 +0000 Subject: [PATCH 045/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.5 (#8041) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 (parent: Microsoft.NET.Sdk) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20366.1 to 5.0.0-rc.1.20370.3 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20372.2 to 5.0.0-rc.1.20374.2 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.2 to 5.0.100-rc.1.20377.5 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.2 to 5.0.100-rc.1.20377.5 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20366.1 to 5.0.0-rc.1.20370.3 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20372.3 to 5.0.0-rc.1.20374.2 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20372.2 to 5.0.0-rc.1.20374.2 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 68e997b18..0d84b7e74 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - e0c53c38b065bb6b88e280adc142060c53356795 + 002c870338ef415aa3907309bdebdfb36ef4b420 - + https://github.com/dotnet/windowsdesktop - e0c53c38b065bb6b88e280adc142060c53356795 + 002c870338ef415aa3907309bdebdfb36ef4b420 - + https://github.com/dotnet/windowsdesktop - e0c53c38b065bb6b88e280adc142060c53356795 + 002c870338ef415aa3907309bdebdfb36ef4b420 https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 5734242453cd80894d75fb4c20bbd9bd2f77588d + a8b9dbba01e64cf9036d397b3bf0adf63e9ef3e9 - + https://github.com/dotnet/sdk - 5734242453cd80894d75fb4c20bbd9bd2f77588d + a8b9dbba01e64cf9036d397b3bf0adf63e9ef3e9 - + https://github.com/dotnet/winforms - dec24b8994ced3461036d3fb15ecd16459184ecb + 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 917538415b23b55ae220bd993a5951c7cfb27d08 + 719c85e9671b47b3b953709e62aad0ac13b410a7 diff --git a/eng/Versions.props b/eng/Versions.props index 9bf69c6b6..f6a425798 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -17,11 +17,11 @@ - 5.0.0-rc.1.20366.1 + 5.0.0-rc.1.20370.3 - 5.0.0-rc.1.20372.2 + 5.0.0-rc.1.20374.2 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20377.2 - 5.0.100-rc.1.20377.2 + 5.0.100-rc.1.20377.5 + 5.0.100-rc.1.20377.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20372.3 - 5.0.0-rc.1.20372.3 - 5.0.0-rc.1.20372.3 + 5.0.0-rc.1.20374.2 + 5.0.0-rc.1.20374.2 + 5.0.0-rc.1.20374.2 From a05a5a0b79d42e813aea2d73c02bb9ce3c7223de Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 01:34:59 +0000 Subject: [PATCH 046/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.6 (#8042) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.5 to 5.0.100-rc.1.20377.6 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.5 to 5.0.100-rc.1.20377.6 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 - dotnet-dev-certs: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 - dotnet-user-secrets: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 - dotnet-watch: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20377.3 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d84b7e74..38741087c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 - + https://github.com/dotnet/aspnetcore - 3a819929a7fb969ac260d55c003944d1d9dbac27 + 780d527f0b9df4594672c1a699eb2fc955de3d58 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - a8b9dbba01e64cf9036d397b3bf0adf63e9ef3e9 + eef5e356e0f3f6ddd426a7d343bdf9da88c7d01b - + https://github.com/dotnet/sdk - a8b9dbba01e64cf9036d397b3bf0adf63e9ef3e9 + eef5e356e0f3f6ddd426a7d343bdf9da88c7d01b diff --git a/eng/Versions.props b/eng/Versions.props index f6a425798..be010ccbb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20374.1 - 5.0.0-rc.1.20374.1 - 5.0.0-rc.1.20374.1 - 5.0.0-rc.1.20374.1 - 5.0.0-rc.1.20374.1 - 5.0.0-rc.1.20374.1 + 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.3 0.2.0 - 5.0.100-rc.1.20377.5 - 5.0.100-rc.1.20377.5 + 5.0.100-rc.1.20377.6 + 5.0.100-rc.1.20377.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8f3afa1b21ab9ee770de964a334278ce7f5a9693 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 04:21:13 +0000 Subject: [PATCH 047/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.7 (#8043) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.6 to 5.0.100-rc.1.20377.7 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.6 to 5.0.100-rc.1.20377.7 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 38741087c..910eb017f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - eef5e356e0f3f6ddd426a7d343bdf9da88c7d01b + f40026baa92e81b61674729ad82f78a153080b40 - + https://github.com/dotnet/sdk - eef5e356e0f3f6ddd426a7d343bdf9da88c7d01b + f40026baa92e81b61674729ad82f78a153080b40 diff --git a/eng/Versions.props b/eng/Versions.props index be010ccbb..930220d28 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20377.6 - 5.0.100-rc.1.20377.6 + 5.0.100-rc.1.20377.7 + 5.0.100-rc.1.20377.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 1765c20be43a48e9bf2595265980b7d67e795e1a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 05:09:19 +0000 Subject: [PATCH 048/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.10 (#8044) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.7 to 5.0.100-rc.1.20377.10 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.7 to 5.0.100-rc.1.20377.10 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 - dotnet-dev-certs: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 - dotnet-user-secrets: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 - dotnet-watch: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20377.4 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 910eb017f..a11ef66ef 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 - + https://github.com/dotnet/aspnetcore - 780d527f0b9df4594672c1a699eb2fc955de3d58 + 97ced4e7c9b061579d40a656435cbe275f0bfc67 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - f40026baa92e81b61674729ad82f78a153080b40 + 6e92aca74fcd62a0464c3a7a6b0deb98ac31514b - + https://github.com/dotnet/sdk - f40026baa92e81b61674729ad82f78a153080b40 + 6e92aca74fcd62a0464c3a7a6b0deb98ac31514b diff --git a/eng/Versions.props b/eng/Versions.props index 930220d28..5336b01ea 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20377.3 - 5.0.0-rc.1.20377.3 - 5.0.0-rc.1.20377.3 - 5.0.0-rc.1.20377.3 - 5.0.0-rc.1.20377.3 - 5.0.0-rc.1.20377.3 + 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.4 0.2.0 - 5.0.100-rc.1.20377.7 - 5.0.100-rc.1.20377.7 + 5.0.100-rc.1.20377.10 + 5.0.100-rc.1.20377.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 0f852eaedf5fa794b87351604f8d45d5f37c08cb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 06:03:04 +0000 Subject: [PATCH 049/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.11 (#8045) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.10 to 5.0.100-rc.1.20377.11 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.10 to 5.0.100-rc.1.20377.11 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 - dotnet-dev-certs: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 - dotnet-user-secrets: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 - dotnet-watch: from 5.0.0-rc.1.20377.4 to 5.0.0-rc.1.20377.6 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a11ef66ef..ba5de6a5a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 - + https://github.com/dotnet/aspnetcore - 97ced4e7c9b061579d40a656435cbe275f0bfc67 + 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 6e92aca74fcd62a0464c3a7a6b0deb98ac31514b + 5dad2c0cade90a977f2b2e3067b38c2b7253ee1c - + https://github.com/dotnet/sdk - 6e92aca74fcd62a0464c3a7a6b0deb98ac31514b + 5dad2c0cade90a977f2b2e3067b38c2b7253ee1c diff --git a/eng/Versions.props b/eng/Versions.props index 5336b01ea..37e63a612 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20377.4 - 5.0.0-rc.1.20377.4 - 5.0.0-rc.1.20377.4 - 5.0.0-rc.1.20377.4 - 5.0.0-rc.1.20377.4 - 5.0.0-rc.1.20377.4 + 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.6 0.2.0 - 5.0.100-rc.1.20377.10 - 5.0.100-rc.1.20377.10 + 5.0.100-rc.1.20377.11 + 5.0.100-rc.1.20377.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d495db15787d46d3cb2c57ad73df0d8254f12260 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 08:06:50 +0000 Subject: [PATCH 050/183] Update dependencies from https://github.com/dotnet/sdk build 20200727.12 (#8046) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.11 to 5.0.100-rc.1.20377.12 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.11 to 5.0.100-rc.1.20377.12 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ba5de6a5a..414c31970 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 5dad2c0cade90a977f2b2e3067b38c2b7253ee1c + b3835234ca8634d56edeea6d165d38ff1d5a3f8a - + https://github.com/dotnet/sdk - 5dad2c0cade90a977f2b2e3067b38c2b7253ee1c + b3835234ca8634d56edeea6d165d38ff1d5a3f8a diff --git a/eng/Versions.props b/eng/Versions.props index 37e63a612..470c6713e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20377.11 - 5.0.100-rc.1.20377.11 + 5.0.100-rc.1.20377.12 + 5.0.100-rc.1.20377.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8f2c482193779bda8dcc69fdc65d5b63f1137c12 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 08:38:49 +0000 Subject: [PATCH 051/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.1 (#8047) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20377.12 to 5.0.100-rc.1.20378.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20377.12 to 5.0.100-rc.1.20378.1 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 - dotnet-dev-certs: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 - dotnet-user-secrets: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 - dotnet-watch: from 5.0.0-rc.1.20377.6 to 5.0.0-rc.1.20377.7 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 414c31970..2355d4b81 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 - + https://github.com/dotnet/aspnetcore - 747957bb40ce238d2ff72bb8cbf122eb2577c0e8 + 2243f3f1719e424f4024daefeb3e1d6120a44bf4 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - b3835234ca8634d56edeea6d165d38ff1d5a3f8a + 050250b54f9a1fde02ebff9ea4be25c4fddc0a16 - + https://github.com/dotnet/sdk - b3835234ca8634d56edeea6d165d38ff1d5a3f8a + 050250b54f9a1fde02ebff9ea4be25c4fddc0a16 diff --git a/eng/Versions.props b/eng/Versions.props index 470c6713e..30bf5e809 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20377.6 - 5.0.0-rc.1.20377.6 - 5.0.0-rc.1.20377.6 - 5.0.0-rc.1.20377.6 - 5.0.0-rc.1.20377.6 - 5.0.0-rc.1.20377.6 + 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20377.7 0.2.0 - 5.0.100-rc.1.20377.12 - 5.0.100-rc.1.20377.12 + 5.0.100-rc.1.20378.1 + 5.0.100-rc.1.20378.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From de16eb81b7c818106e0f2910d3fc55d21b67b7a6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 13:35:19 +0000 Subject: [PATCH 052/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.3 (#8048) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.1 to 5.0.100-rc.1.20378.3 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.1 to 5.0.100-rc.1.20378.3 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2355d4b81..7f567a5f1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 050250b54f9a1fde02ebff9ea4be25c4fddc0a16 + 887b2427fe4b423db6f05c1bc4604ab971c474d0 - + https://github.com/dotnet/sdk - 050250b54f9a1fde02ebff9ea4be25c4fddc0a16 + 887b2427fe4b423db6f05c1bc4604ab971c474d0 diff --git a/eng/Versions.props b/eng/Versions.props index 30bf5e809..e9b0dd526 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20378.1 - 5.0.100-rc.1.20378.1 + 5.0.100-rc.1.20378.3 + 5.0.100-rc.1.20378.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c6212067b2b4fd87ce4c4def5051a55a667d71c7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 22:55:15 +0000 Subject: [PATCH 053/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.9 (#8049) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.3 to 5.0.100-rc.1.20378.9 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.3 to 5.0.100-rc.1.20378.9 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 - dotnet-dev-certs: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 - dotnet-user-secrets: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 - dotnet-watch: from 5.0.0-rc.1.20377.7 to 5.0.0-rc.1.20378.6 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7f567a5f1..11f4afa6c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 - + https://github.com/dotnet/aspnetcore - 2243f3f1719e424f4024daefeb3e1d6120a44bf4 + 085921305a64d89d52fdcf100f70d2d5a59e1765 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 887b2427fe4b423db6f05c1bc4604ab971c474d0 + a32f1592e54b9575ca290762db42cbbb9380ac04 - + https://github.com/dotnet/sdk - 887b2427fe4b423db6f05c1bc4604ab971c474d0 + a32f1592e54b9575ca290762db42cbbb9380ac04 diff --git a/eng/Versions.props b/eng/Versions.props index e9b0dd526..3126dbc7f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20377.7 - 5.0.0-rc.1.20377.7 - 5.0.0-rc.1.20377.7 - 5.0.0-rc.1.20377.7 - 5.0.0-rc.1.20377.7 - 5.0.0-rc.1.20377.7 + 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.6 0.2.0 - 5.0.100-rc.1.20378.3 - 5.0.100-rc.1.20378.3 + 5.0.100-rc.1.20378.9 + 5.0.100-rc.1.20378.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From de3523417fa9a82466b4faba6d046c5cba772427 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2020 23:29:51 +0000 Subject: [PATCH 054/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.12 (#8050) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.9 to 5.0.100-rc.1.20378.12 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.9 to 5.0.100-rc.1.20378.12 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 11f4afa6c..2e9147d40 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - a32f1592e54b9575ca290762db42cbbb9380ac04 + 61a29e0db60589c34923c9f344a5f1dbace6b182 - + https://github.com/dotnet/sdk - a32f1592e54b9575ca290762db42cbbb9380ac04 + 61a29e0db60589c34923c9f344a5f1dbace6b182 diff --git a/eng/Versions.props b/eng/Versions.props index 3126dbc7f..cd6d59b7f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20378.9 - 5.0.100-rc.1.20378.9 + 5.0.100-rc.1.20378.12 + 5.0.100-rc.1.20378.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d1c7693a825f2116ce81b9ce9398d8faa8fbe20e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 05:29:40 +0000 Subject: [PATCH 055/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.14 (#8051) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.12 to 5.0.100-rc.1.20378.14 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.12 to 5.0.100-rc.1.20378.14 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 - dotnet-dev-certs: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 - dotnet-user-secrets: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 - dotnet-watch: from 5.0.0-rc.1.20378.6 to 5.0.0-rc.1.20378.7 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2e9147d40..eb6f64e2a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 - + https://github.com/dotnet/aspnetcore - 085921305a64d89d52fdcf100f70d2d5a59e1765 + 4aa5e03207a005d7310ba792c76f5339d74c3364 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 61a29e0db60589c34923c9f344a5f1dbace6b182 + 9d5e86f13903cbeab451c5fc15784af2adbcb34e - + https://github.com/dotnet/sdk - 61a29e0db60589c34923c9f344a5f1dbace6b182 + 9d5e86f13903cbeab451c5fc15784af2adbcb34e diff --git a/eng/Versions.props b/eng/Versions.props index cd6d59b7f..d96cd85ab 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20378.6 - 5.0.0-rc.1.20378.6 - 5.0.0-rc.1.20378.6 - 5.0.0-rc.1.20378.6 - 5.0.0-rc.1.20378.6 - 5.0.0-rc.1.20378.6 + 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20378.7 0.2.0 - 5.0.100-rc.1.20378.12 - 5.0.100-rc.1.20378.12 + 5.0.100-rc.1.20378.14 + 5.0.100-rc.1.20378.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c35c8d2084b81b05191d27c874fad9107b7dd950 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 06:22:42 +0000 Subject: [PATCH 056/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.17 (#8052) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.14 to 5.0.100-rc.1.20378.17 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.14 to 5.0.100-rc.1.20378.17 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eb6f64e2a..74de971ab 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 9d5e86f13903cbeab451c5fc15784af2adbcb34e + 5b9a720f06ad21e4c2e3d3688ad958d36b8aca09 - + https://github.com/dotnet/sdk - 9d5e86f13903cbeab451c5fc15784af2adbcb34e + 5b9a720f06ad21e4c2e3d3688ad958d36b8aca09 diff --git a/eng/Versions.props b/eng/Versions.props index d96cd85ab..28a6db7a0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20378.14 - 5.0.100-rc.1.20378.14 + 5.0.100-rc.1.20378.17 + 5.0.100-rc.1.20378.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c6a06fa80ada5700d7254bd2a7e9f889a3ac974b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 07:05:12 +0000 Subject: [PATCH 057/183] Update dependencies from https://github.com/dotnet/sdk build 20200728.20 (#8053) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.17 to 5.0.100-rc.1.20378.20 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.17 to 5.0.100-rc.1.20378.20 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 74de971ab..84f214fd1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 5b9a720f06ad21e4c2e3d3688ad958d36b8aca09 + 279b0cabf107ef6e1fc8e8efceae1d21b252de34 - + https://github.com/dotnet/sdk - 5b9a720f06ad21e4c2e3d3688ad958d36b8aca09 + 279b0cabf107ef6e1fc8e8efceae1d21b252de34 diff --git a/eng/Versions.props b/eng/Versions.props index 28a6db7a0..cf0fb07b5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20378.17 - 5.0.100-rc.1.20378.17 + 5.0.100-rc.1.20378.20 + 5.0.100-rc.1.20378.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9846b91187e98b4853f7441dbbd7b922dad06f17 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 16:57:31 +0000 Subject: [PATCH 058/183] Update dependencies from https://github.com/dotnet/arcade build 20200724.1 (#8055) [master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20364.3 to 5.0.0-beta.20374.1 --- eng/Version.Details.xml | 4 +-- eng/common/cross/toolchain.cmake | 39 +++++++++++++++++++----------- eng/common/templates/jobs/jobs.yml | 6 ++--- global.json | 2 +- 4 files changed, 30 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 84f214fd1..9def32db8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -104,9 +104,9 @@ - + https://github.com/dotnet/arcade - ff5d4b6c8dbdaeacb6e6159d3f8185118dffd915 + f6192d1e284a08ac05041d05fa6e60dec74b24f5 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index 88a758afb..b9fe796f0 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -127,29 +127,40 @@ endif() # Specify link flags +function(add_toolchain_linker_flag Flag) + set(Config "${ARGV1}") + set(CONFIG_SUFFIX "") + if (NOT Config STREQUAL "") + set(CONFIG_SUFFIX "_${Config}") + endif() + set("CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}" "${CMAKE_EXE_LINKER_FLAGS${CONFIG_SUFFIX}} ${Flag}" PARENT_SCOPE) + set("CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}" "${CMAKE_SHARED_LINKER_FLAGS${CONFIG_SUFFIX}} ${Flag}" PARENT_SCOPE) +endfunction() + + if(TARGET_ARCH_NAME STREQUAL "armel") if(DEFINED TIZEN_TOOLCHAIN) # For Tizen only - add_link_options("-B${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") - add_link_options("-L${CROSS_ROOTFS}/lib") - add_link_options("-L${CROSS_ROOTFS}/usr/lib") - add_link_options("-L${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") endif() elseif(TARGET_ARCH_NAME STREQUAL "arm64") if(DEFINED TIZEN_TOOLCHAIN) # For Tizen only - add_link_options("-B${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") - add_link_options("-L${CROSS_ROOTFS}/lib64") - add_link_options("-L${CROSS_ROOTFS}/usr/lib64") - add_link_options("-L${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib64") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib64") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") - add_link_options("-Wl,--rpath-link=${CROSS_ROOTFS}/lib64") - add_link_options("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64") - add_link_options("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/lib64") + add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64") + add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") endif() elseif(TARGET_ARCH_NAME STREQUAL "x86") - add_link_options(-m32) + add_toolchain_linker_flag(-m32) elseif(ILLUMOS) - add_link_options("-L${CROSS_ROOTFS}/lib/amd64") - add_link_options("-L${CROSS_ROOTFS}/usr/amd64/lib") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib/amd64") + add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/amd64/lib") endif() # Specify compile options diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 83d316b26..c08225a9a 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -56,8 +56,7 @@ jobs: - ${{ each job in parameters.jobs }}: - ${{ job.job }} pool: - name: NetCorePublic-Pool - queue: buildpool.windows.10.amd64.vs2017.open + vmImage: vs2017-win2016 runAsPublic: ${{ parameters.runAsPublic }} publishUsingPipelines: ${{ parameters.enablePublishUsingPipelines }} enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} @@ -70,5 +69,4 @@ jobs: dependsOn: - Asset_Registry_Publish pool: - name: NetCorePublic-Pool - queue: buildpool.windows.10.amd64.vs2017.open + vmImage: vs2017-win2016 diff --git a/global.json b/global.json index 05e261d5f..d0003a9bf 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20364.3" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20374.1" } } From 3f72193bb1838a39f61b0dab03e820e391da418f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 17:45:36 +0000 Subject: [PATCH 059/183] [master] Update dependencies from dotnet/sdk (#8054) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20378.20 to 5.0.100-rc.1.20379.4 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20378.20 to 5.0.100-rc.1.20379.4 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 - dotnet-dev-certs: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 - dotnet-user-secrets: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 - dotnet-watch: from 5.0.0-rc.1.20378.7 to 5.0.0-rc.1.20379.2 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9def32db8..fee0688ea 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 - + https://github.com/dotnet/aspnetcore - 4aa5e03207a005d7310ba792c76f5339d74c3364 + 01e05359d644a1f68c1e26a196fc3370ec9ded49 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 279b0cabf107ef6e1fc8e8efceae1d21b252de34 + 4ee09102da293467636d5c6dc83d6dc67172891c - + https://github.com/dotnet/sdk - 279b0cabf107ef6e1fc8e8efceae1d21b252de34 + 4ee09102da293467636d5c6dc83d6dc67172891c diff --git a/eng/Versions.props b/eng/Versions.props index cf0fb07b5..b8c188d7d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20378.7 - 5.0.0-rc.1.20378.7 - 5.0.0-rc.1.20378.7 - 5.0.0-rc.1.20378.7 - 5.0.0-rc.1.20378.7 - 5.0.0-rc.1.20378.7 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 0.2.0 - 5.0.100-rc.1.20378.20 - 5.0.100-rc.1.20378.20 + 5.0.100-rc.1.20379.4 + 5.0.100-rc.1.20379.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From a87335c7a89de10d2c19ece256cffebb698a19bd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 11:29:47 -0700 Subject: [PATCH 060/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.5 (#8056) Microsoft.NET.Sdk , Microsoft.DotNet.MSBuildSdkResolver From Version 5.0.100-rc.1.20379.4 -> To Version 5.0.100-rc.1.20379.5 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fee0688ea..829e02386 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 4ee09102da293467636d5c6dc83d6dc67172891c + d3a91f6b4b5d1250c5da4af7d7b8487ef7f42923 - + https://github.com/dotnet/sdk - 4ee09102da293467636d5c6dc83d6dc67172891c + d3a91f6b4b5d1250c5da4af7d7b8487ef7f42923 diff --git a/eng/Versions.props b/eng/Versions.props index b8c188d7d..fce27febc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.4 - 5.0.100-rc.1.20379.4 + 5.0.100-rc.1.20379.5 + 5.0.100-rc.1.20379.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 327342d8c684562a74491c1501a79cc3ad25a57f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 19:06:44 +0000 Subject: [PATCH 061/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.6 (#8057) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.5 to 5.0.100-rc.1.20379.6 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.5 to 5.0.100-rc.1.20379.6 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 829e02386..6666326b6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - d3a91f6b4b5d1250c5da4af7d7b8487ef7f42923 + 11ec11a6c28951626362f07b613f0051f0418525 - + https://github.com/dotnet/sdk - d3a91f6b4b5d1250c5da4af7d7b8487ef7f42923 + 11ec11a6c28951626362f07b613f0051f0418525 diff --git a/eng/Versions.props b/eng/Versions.props index fce27febc..b7ba30463 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.5 - 5.0.100-rc.1.20379.5 + 5.0.100-rc.1.20379.6 + 5.0.100-rc.1.20379.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 82886b7115b639f32b19f3b0bdd94c4253ea752c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 19:33:26 +0000 Subject: [PATCH 062/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.9 (#8058) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.6 to 5.0.100-rc.1.20379.9 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.6 to 5.0.100-rc.1.20379.9 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6666326b6..501a64cbc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 11ec11a6c28951626362f07b613f0051f0418525 + 0fef097b0e9f028272554ebdae3880f0447d011e - + https://github.com/dotnet/sdk - 11ec11a6c28951626362f07b613f0051f0418525 + 0fef097b0e9f028272554ebdae3880f0447d011e diff --git a/eng/Versions.props b/eng/Versions.props index b7ba30463..ddf17f01f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.6 - 5.0.100-rc.1.20379.6 + 5.0.100-rc.1.20379.9 + 5.0.100-rc.1.20379.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9e233f505c95c7dc52af703f3812472fe31f3297 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 20:14:17 +0000 Subject: [PATCH 063/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.10 (#8059) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.9 to 5.0.100-rc.1.20379.10 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.9 to 5.0.100-rc.1.20379.10 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 - dotnet-dev-certs: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 - dotnet-user-secrets: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 - dotnet-watch: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20379.4 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 501a64cbc..4fa682f0e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 - + https://github.com/dotnet/aspnetcore - 01e05359d644a1f68c1e26a196fc3370ec9ded49 + 5e49fc336e4464711ff2a8db2e00b9bafb518c78 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 0fef097b0e9f028272554ebdae3880f0447d011e + 0be14afdf8a0eb28c6cb96ce8b62aceb59637623 - + https://github.com/dotnet/sdk - 0fef097b0e9f028272554ebdae3880f0447d011e + 0be14afdf8a0eb28c6cb96ce8b62aceb59637623 diff --git a/eng/Versions.props b/eng/Versions.props index ddf17f01f..d735addba 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.4 0.2.0 - 5.0.100-rc.1.20379.9 - 5.0.100-rc.1.20379.9 + 5.0.100-rc.1.20379.10 + 5.0.100-rc.1.20379.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c6bad18eb72e4b13ab5813f986fc91fdc2bb54df Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2020 20:44:15 +0000 Subject: [PATCH 064/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.14 (#8061) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.10 to 5.0.100-rc.1.20379.14 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.10 to 5.0.100-rc.1.20379.14 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4fa682f0e..4a99ddb76 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 0be14afdf8a0eb28c6cb96ce8b62aceb59637623 + 5361aaaf580ec67c93b4d3d785caf257da199425 - + https://github.com/dotnet/sdk - 0be14afdf8a0eb28c6cb96ce8b62aceb59637623 + 5361aaaf580ec67c93b4d3d785caf257da199425 diff --git a/eng/Versions.props b/eng/Versions.props index d735addba..a182fe041 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.10 - 5.0.100-rc.1.20379.10 + 5.0.100-rc.1.20379.14 + 5.0.100-rc.1.20379.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 777288c7d8e77853443812622299dc499713b0d4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 01:49:44 +0000 Subject: [PATCH 065/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.17 (#8062) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.14 to 5.0.100-rc.1.20379.17 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.14 to 5.0.100-rc.1.20379.17 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4a99ddb76..ef754ccc5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating d3fea50b8720f9a581826da79a7559975982fc19 - + https://github.com/dotnet/sdk - 5361aaaf580ec67c93b4d3d785caf257da199425 + f7631a33fc1ff45e0e88c40a2cbe970f26e71fbe - + https://github.com/dotnet/sdk - 5361aaaf580ec67c93b4d3d785caf257da199425 + f7631a33fc1ff45e0e88c40a2cbe970f26e71fbe diff --git a/eng/Versions.props b/eng/Versions.props index a182fe041..f9d3c4a59 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.14 - 5.0.100-rc.1.20379.14 + 5.0.100-rc.1.20379.17 + 5.0.100-rc.1.20379.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 1a07bc2d195611572142f6213164d14a2ce7be3a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 05:30:06 +0000 Subject: [PATCH 066/183] Update dependencies from https://github.com/dotnet/sdk build 20200729.22 (#8063) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20371.1 to 5.0.0-rc.1.20379.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.17 to 5.0.100-rc.1.20379.22 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.17 to 5.0.100-rc.1.20379.22 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20371.1 to 5.0.0-rc.1.20379.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ef754ccc5..f524725e8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - d3fea50b8720f9a581826da79a7559975982fc19 + 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - f7631a33fc1ff45e0e88c40a2cbe970f26e71fbe + 88497439cdfad1ce0cd7b731d21576aa8bb5d4cf - + https://github.com/dotnet/sdk - f7631a33fc1ff45e0e88c40a2cbe970f26e71fbe + 88497439cdfad1ce0cd7b731d21576aa8bb5d4cf diff --git a/eng/Versions.props b/eng/Versions.props index f9d3c4a59..3718d58ce 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20371.1 + 5.0.0-rc.1.20379.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20379.17 - 5.0.100-rc.1.20379.17 + 5.0.100-rc.1.20379.22 + 5.0.100-rc.1.20379.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3add1188edd16a422265dad19e1caad4506ec958 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 08:34:25 +0000 Subject: [PATCH 067/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.1 (#8064) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20379.22 to 5.0.100-rc.1.20380.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20379.22 to 5.0.100-rc.1.20380.1 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 - dotnet-dev-certs: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 - dotnet-user-secrets: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 - dotnet-watch: from 5.0.0-rc.1.20379.4 to 5.0.0-rc.1.20379.14 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f524725e8..0b9738048 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 - + https://github.com/dotnet/aspnetcore - 5e49fc336e4464711ff2a8db2e00b9bafb518c78 + cf728173d1de6c95ab441dcb86ca7185d4100ec0 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - 88497439cdfad1ce0cd7b731d21576aa8bb5d4cf + 3366cfb1063b579ecd3542ee99a01a9fdf091df4 - + https://github.com/dotnet/sdk - 88497439cdfad1ce0cd7b731d21576aa8bb5d4cf + 3366cfb1063b579ecd3542ee99a01a9fdf091df4 diff --git a/eng/Versions.props b/eng/Versions.props index 3718d58ce..bb822f94c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20379.4 - 5.0.0-rc.1.20379.4 - 5.0.0-rc.1.20379.4 - 5.0.0-rc.1.20379.4 - 5.0.0-rc.1.20379.4 - 5.0.0-rc.1.20379.4 + 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20379.14 0.2.0 - 5.0.100-rc.1.20379.22 - 5.0.100-rc.1.20379.22 + 5.0.100-rc.1.20380.1 + 5.0.100-rc.1.20380.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From cce177d3acc8a81d811c0825bd8575de17cbdc29 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 16:06:14 +0000 Subject: [PATCH 068/183] [master] Update dependencies from dotnet/sdk (#8066) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.1 to 5.0.100-rc.1.20380.8 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.1 to 5.0.100-rc.1.20380.8 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.2 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20374.2 to 5.0.0-rc.1.20379.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0b9738048..9fa0e9268 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 002c870338ef415aa3907309bdebdfb36ef4b420 + a2325e716080375dcb988daea8ab234eb61e7e5e - + https://github.com/dotnet/windowsdesktop - 002c870338ef415aa3907309bdebdfb36ef4b420 + a2325e716080375dcb988daea8ab234eb61e7e5e - + https://github.com/dotnet/windowsdesktop - 002c870338ef415aa3907309bdebdfb36ef4b420 + a2325e716080375dcb988daea8ab234eb61e7e5e https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - 3366cfb1063b579ecd3542ee99a01a9fdf091df4 + 4bdb0601424b456572bd0aa17313f0ca624cd15d - + https://github.com/dotnet/sdk - 3366cfb1063b579ecd3542ee99a01a9fdf091df4 + 4bdb0601424b456572bd0aa17313f0ca624cd15d https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 719c85e9671b47b3b953709e62aad0ac13b410a7 + b763ee6fcfa57295dd457a5cbac5614582e2fb8f diff --git a/eng/Versions.props b/eng/Versions.props index bb822f94c..53301ce79 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-rc.1.20374.2 + 5.0.0-rc.1.20379.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20380.1 - 5.0.100-rc.1.20380.1 + 5.0.100-rc.1.20380.8 + 5.0.100-rc.1.20380.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20374.2 - 5.0.0-rc.1.20374.2 - 5.0.0-rc.1.20374.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20379.2 From 7aac04bdece0b9855f11111cb8d3bb4be092e6fd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 20:46:05 +0000 Subject: [PATCH 069/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.11 (#8067) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.8 to 5.0.100-rc.1.20380.11 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.8 to 5.0.100-rc.1.20380.11 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9fa0e9268..3959aa445 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - 4bdb0601424b456572bd0aa17313f0ca624cd15d + ec52032af77fe41b7d3632cc9449995b955c260f - + https://github.com/dotnet/sdk - 4bdb0601424b456572bd0aa17313f0ca624cd15d + ec52032af77fe41b7d3632cc9449995b955c260f diff --git a/eng/Versions.props b/eng/Versions.props index 53301ce79..570d8b746 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20380.8 - 5.0.100-rc.1.20380.8 + 5.0.100-rc.1.20380.11 + 5.0.100-rc.1.20380.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 828d131b799e4b15767493183e8428af8366fd72 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2020 21:54:01 +0000 Subject: [PATCH 070/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.14 (#8068) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.11 to 5.0.100-rc.1.20380.14 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.11 to 5.0.100-rc.1.20380.14 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3959aa445..7a50e5303 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - ec52032af77fe41b7d3632cc9449995b955c260f + ddbe02c93a1c10d86e019e16f1b6a0e4206f759b - + https://github.com/dotnet/sdk - ec52032af77fe41b7d3632cc9449995b955c260f + ddbe02c93a1c10d86e019e16f1b6a0e4206f759b diff --git a/eng/Versions.props b/eng/Versions.props index 570d8b746..dd4a4347e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20380.11 - 5.0.100-rc.1.20380.11 + 5.0.100-rc.1.20380.14 + 5.0.100-rc.1.20380.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7bc32b214436c057f6cc63ccb7f3d64305bf88d6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2020 02:34:10 +0000 Subject: [PATCH 071/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.17 (#8069) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.14 to 5.0.100-rc.1.20380.17 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.14 to 5.0.100-rc.1.20380.17 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 - dotnet-dev-certs: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 - dotnet-user-secrets: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 - dotnet-watch: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.3 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7a50e5303..331d74cac 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 - + https://github.com/dotnet/aspnetcore - cf728173d1de6c95ab441dcb86ca7185d4100ec0 + e0ef3d224689e54cfeb32de7aca1ec465f767394 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - ddbe02c93a1c10d86e019e16f1b6a0e4206f759b + 61efe0036c411d8a4041d4300147942791d071bb - + https://github.com/dotnet/sdk - ddbe02c93a1c10d86e019e16f1b6a0e4206f759b + 61efe0036c411d8a4041d4300147942791d071bb diff --git a/eng/Versions.props b/eng/Versions.props index dd4a4347e..853582298 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20379.14 - 5.0.0-rc.1.20379.14 - 5.0.0-rc.1.20379.14 - 5.0.0-rc.1.20379.14 - 5.0.0-rc.1.20379.14 - 5.0.0-rc.1.20379.14 + 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.3 0.2.0 - 5.0.100-rc.1.20380.14 - 5.0.100-rc.1.20380.14 + 5.0.100-rc.1.20380.17 + 5.0.100-rc.1.20380.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 25526eda0a91ccc71b91243516991c3c063186f6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2020 05:03:09 +0000 Subject: [PATCH 072/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.19 (#8070) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.17 to 5.0.100-rc.1.20380.19 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.17 to 5.0.100-rc.1.20380.19 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 331d74cac..cc5c4aba4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - 61efe0036c411d8a4041d4300147942791d071bb + aee628d6ddc1445d188104b23705d142e495a0ac - + https://github.com/dotnet/sdk - 61efe0036c411d8a4041d4300147942791d071bb + aee628d6ddc1445d188104b23705d142e495a0ac diff --git a/eng/Versions.props b/eng/Versions.props index 853582298..8997e0cf0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20380.17 - 5.0.100-rc.1.20380.17 + 5.0.100-rc.1.20380.19 + 5.0.100-rc.1.20380.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From dad2da1f4681d0808d8312c86aec6bdda4f9482c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2020 06:27:37 +0000 Subject: [PATCH 073/183] Update dependencies from https://github.com/dotnet/sdk build 20200730.20 (#8071) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.19 to 5.0.100-rc.1.20380.20 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.19 to 5.0.100-rc.1.20380.20 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 - dotnet-dev-certs: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 - dotnet-user-secrets: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 - dotnet-watch: from 5.0.0-rc.1.20380.3 to 5.0.0-rc.1.20380.7 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cc5c4aba4..d06202ec6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 - + https://github.com/dotnet/aspnetcore - e0ef3d224689e54cfeb32de7aca1ec465f767394 + 3e1e69eccef4ea54c46c7e706413a0448abbbec9 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 0278f6502455553fbdc268b01a259f6c649527c5 - + https://github.com/dotnet/sdk - aee628d6ddc1445d188104b23705d142e495a0ac + 44f6af4cd419a446c61d495c2bbc54ee39707e09 - + https://github.com/dotnet/sdk - aee628d6ddc1445d188104b23705d142e495a0ac + 44f6af4cd419a446c61d495c2bbc54ee39707e09 diff --git a/eng/Versions.props b/eng/Versions.props index 8997e0cf0..eb639cc4a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20380.3 - 5.0.0-rc.1.20380.3 - 5.0.0-rc.1.20380.3 - 5.0.0-rc.1.20380.3 - 5.0.0-rc.1.20380.3 - 5.0.0-rc.1.20380.3 + 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20380.7 0.2.0 - 5.0.100-rc.1.20380.19 - 5.0.100-rc.1.20380.19 + 5.0.100-rc.1.20380.20 + 5.0.100-rc.1.20380.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9ca24cd66c47c6916daaa75c7cf3a071e62145ee Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2020 21:45:00 +0000 Subject: [PATCH 074/183] Update dependencies from https://github.com/dotnet/sdk build 20200731.7 (#8072) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20379.1 to 5.0.0-rc.1.20381.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20379.1 to 5.0.0-rc.1.20380.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20380.20 to 5.0.100-rc.1.20381.7 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20380.20 to 5.0.100-rc.1.20381.7 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20379.1 to 5.0.0-rc.1.20381.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20379.2 to 5.0.0-rc.1.20380.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20379.1 to 5.0.0-rc.1.20380.1 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d06202ec6..cea9b1ae5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - a2325e716080375dcb988daea8ab234eb61e7e5e + 84d21bafc7022c27152e86e73dd9cbb509ae86d2 - + https://github.com/dotnet/windowsdesktop - a2325e716080375dcb988daea8ab234eb61e7e5e + 84d21bafc7022c27152e86e73dd9cbb509ae86d2 - + https://github.com/dotnet/windowsdesktop - a2325e716080375dcb988daea8ab234eb61e7e5e + 84d21bafc7022c27152e86e73dd9cbb509ae86d2 https://github.com/dotnet/runtime @@ -75,26 +75,26 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - 0278f6502455553fbdc268b01a259f6c649527c5 + 3ec3eddbce3bf78bfec680be1e3178885bc413a3 - + https://github.com/dotnet/sdk - 44f6af4cd419a446c61d495c2bbc54ee39707e09 + 5525ced7bee39722813b75b0e4df4dcf66fb7a41 - + https://github.com/dotnet/sdk - 44f6af4cd419a446c61d495c2bbc54ee39707e09 + 5525ced7bee39722813b75b0e4df4dcf66fb7a41 https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - b763ee6fcfa57295dd457a5cbac5614582e2fb8f + 0eedcc1faf972433a81d6413adb17f35a827dbd5 diff --git a/eng/Versions.props b/eng/Versions.props index eb639cc4a..7b535f429 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,11 +21,11 @@ - 5.0.0-rc.1.20379.1 + 5.0.0-rc.1.20380.1 - 5.0.0-rc.1.20379.1 + 5.0.0-rc.1.20381.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20380.20 - 5.0.100-rc.1.20380.20 + 5.0.100-rc.1.20381.7 + 5.0.100-rc.1.20381.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 - 5.0.0-rc.1.20379.2 + 5.0.0-rc.1.20380.1 + 5.0.0-rc.1.20380.1 + 5.0.0-rc.1.20380.1 From e6d910744a4fa71cca3cf236e885769c79df45ff Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2020 19:10:50 +0000 Subject: [PATCH 075/183] Update dependencies from https://github.com/dotnet/sdk build 20200801.1 (#8073) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20381.7 to 5.0.100-rc.1.20401.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20381.7 to 5.0.100-rc.1.20401.1 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20401.1 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cea9b1ae5..00ab863e0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 84d21bafc7022c27152e86e73dd9cbb509ae86d2 - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - d8cf13e0ba9b369a15a83472b6b97463c6d07fe2 + 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3ec3eddbce3bf78bfec680be1e3178885bc413a3 - + https://github.com/dotnet/sdk - 5525ced7bee39722813b75b0e4df4dcf66fb7a41 + 8631e56944324f5e85396e5cb15845bfebf78f1e - + https://github.com/dotnet/sdk - 5525ced7bee39722813b75b0e4df4dcf66fb7a41 + 8631e56944324f5e85396e5cb15845bfebf78f1e diff --git a/eng/Versions.props b/eng/Versions.props index 7b535f429..b3018fa79 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,22 +49,22 @@ - 5.0.100-rc.1.20381.7 - 5.0.100-rc.1.20381.7 + 5.0.100-rc.1.20401.1 + 5.0.100-rc.1.20401.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20371.13 - 5.0.0-rc.1.20371.13 - 5.0.0-rc.1.20371.13 - 5.0.0-rc.1.20371.13 - 5.0.0-rc.1.20371.13 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 2.1.0 From 0632549883ab589c960942beebefe3cac1483747 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2020 22:26:27 +0000 Subject: [PATCH 076/183] Update dependencies from https://github.com/dotnet/sdk build 20200801.2 (#8074) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20401.1 to 5.0.100-rc.1.20401.2 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20401.1 to 5.0.100-rc.1.20401.2 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 - dotnet-dev-certs: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 - dotnet-user-secrets: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 - dotnet-watch: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20401.1 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 00ab863e0..8da717a64 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f - + https://github.com/dotnet/aspnetcore - 3e1e69eccef4ea54c46c7e706413a0448abbbec9 + 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3ec3eddbce3bf78bfec680be1e3178885bc413a3 - + https://github.com/dotnet/sdk - 8631e56944324f5e85396e5cb15845bfebf78f1e + 3e74b95c6fb6263b012795321ca1a56ff2c16192 - + https://github.com/dotnet/sdk - 8631e56944324f5e85396e5cb15845bfebf78f1e + 3e74b95c6fb6263b012795321ca1a56ff2c16192 diff --git a/eng/Versions.props b/eng/Versions.props index b3018fa79..2b032906b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20380.7 - 5.0.0-rc.1.20380.7 - 5.0.0-rc.1.20380.7 - 5.0.0-rc.1.20380.7 - 5.0.0-rc.1.20380.7 - 5.0.0-rc.1.20380.7 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 0.2.0 - 5.0.100-rc.1.20401.1 - 5.0.100-rc.1.20401.1 + 5.0.100-rc.1.20401.2 + 5.0.100-rc.1.20401.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e0084f1846819a47d3240f28543b32c30ce7f65e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2020 20:44:56 +0000 Subject: [PATCH 077/183] Update dependencies from https://github.com/dotnet/sdk build 20200802.1 (#8075) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20381.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20401.2 to 5.0.100-rc.1.20402.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20401.2 to 5.0.100-rc.1.20402.1 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20381.1 to 5.0.0-rc.1.20402.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8da717a64..624bdc45d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - 3ec3eddbce3bf78bfec680be1e3178885bc413a3 + 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 3e74b95c6fb6263b012795321ca1a56ff2c16192 + 59da97e804645187e821aa518d30a7e600a46c8b - + https://github.com/dotnet/sdk - 3e74b95c6fb6263b012795321ca1a56ff2c16192 + 59da97e804645187e821aa518d30a7e600a46c8b diff --git a/eng/Versions.props b/eng/Versions.props index 2b032906b..0e87b88c3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20381.1 + 5.0.0-rc.1.20402.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20401.2 - 5.0.100-rc.1.20401.2 + 5.0.100-rc.1.20402.1 + 5.0.100-rc.1.20402.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9cace30892da24c337916f1790539d31c6277eb9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2020 21:54:41 +0000 Subject: [PATCH 078/183] Update dependencies from https://github.com/dotnet/sdk build 20200802.2 (#8076) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20402.1 to 5.0.100-rc.1.20402.2 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20402.1 to 5.0.100-rc.1.20402.2 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 - dotnet-dev-certs: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 - dotnet-user-secrets: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 - dotnet-watch: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.1 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 624bdc45d..1c3fa6649 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 - + https://github.com/dotnet/aspnetcore - 130ec438fd8c5fecdb0d6fcaac4ee52d10b1687f + 4bb01a5a4358a0ba84177b62557469aace6b3019 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 59da97e804645187e821aa518d30a7e600a46c8b + 983f498dfd798cd98f734fe0f1d96e537b7407e4 - + https://github.com/dotnet/sdk - 59da97e804645187e821aa518d30a7e600a46c8b + 983f498dfd798cd98f734fe0f1d96e537b7407e4 diff --git a/eng/Versions.props b/eng/Versions.props index 0e87b88c3..934cf0131 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.1 0.2.0 - 5.0.100-rc.1.20402.1 - 5.0.100-rc.1.20402.1 + 5.0.100-rc.1.20402.2 + 5.0.100-rc.1.20402.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e8d359488f2aeab39ec50b3a7a37657a4a51f4b0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 00:12:47 +0000 Subject: [PATCH 079/183] Update dependencies from https://github.com/dotnet/sdk build 20200802.3 (#8077) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20402.2 to 5.0.100-rc.1.20402.3 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20402.2 to 5.0.100-rc.1.20402.3 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 - dotnet-dev-certs: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 - dotnet-user-secrets: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 - dotnet-watch: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20402.2 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1c3fa6649..fff6348ad 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 - + https://github.com/dotnet/aspnetcore - 4bb01a5a4358a0ba84177b62557469aace6b3019 + b534f925890face10a2f4704dd5ea2acfc19be01 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 983f498dfd798cd98f734fe0f1d96e537b7407e4 + 526636ceb8bdb2c9ddeb97ff783ca088e1c059a5 - + https://github.com/dotnet/sdk - 983f498dfd798cd98f734fe0f1d96e537b7407e4 + 526636ceb8bdb2c9ddeb97ff783ca088e1c059a5 diff --git a/eng/Versions.props b/eng/Versions.props index 934cf0131..1ac6051c7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20402.1 - 5.0.0-rc.1.20402.1 - 5.0.0-rc.1.20402.1 - 5.0.0-rc.1.20402.1 - 5.0.0-rc.1.20402.1 - 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.2 0.2.0 - 5.0.100-rc.1.20402.2 - 5.0.100-rc.1.20402.2 + 5.0.100-rc.1.20402.3 + 5.0.100-rc.1.20402.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8b913ea60aa55a053106706cc3d2dbba52968c7c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 04:01:35 +0000 Subject: [PATCH 080/183] Update dependencies from https://github.com/dotnet/sdk build 20200802.4 (#8078) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20402.3 to 5.0.100-rc.1.20402.4 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20402.3 to 5.0.100-rc.1.20402.4 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fff6348ad..465c97f50 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 526636ceb8bdb2c9ddeb97ff783ca088e1c059a5 + 1952cd80e21b2d8dbfb0aa164ce021b8b844fcf1 - + https://github.com/dotnet/sdk - 526636ceb8bdb2c9ddeb97ff783ca088e1c059a5 + 1952cd80e21b2d8dbfb0aa164ce021b8b844fcf1 diff --git a/eng/Versions.props b/eng/Versions.props index 1ac6051c7..3fedfc8af 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20402.3 - 5.0.100-rc.1.20402.3 + 5.0.100-rc.1.20402.4 + 5.0.100-rc.1.20402.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9efbdd30b0a49f9dffaf6166da2d0530010c28d0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 07:46:44 +0000 Subject: [PATCH 081/183] Update dependencies from https://github.com/dotnet/sdk build 20200802.8 (#8079) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20402.4 to 5.0.100-rc.1.20402.8 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20402.4 to 5.0.100-rc.1.20402.8 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 465c97f50..55cbcfd2a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 1952cd80e21b2d8dbfb0aa164ce021b8b844fcf1 + c259368d9b69ef50efa5b7620df4355ddba9e05a - + https://github.com/dotnet/sdk - 1952cd80e21b2d8dbfb0aa164ce021b8b844fcf1 + c259368d9b69ef50efa5b7620df4355ddba9e05a diff --git a/eng/Versions.props b/eng/Versions.props index 3fedfc8af..be2223e79 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20402.4 - 5.0.100-rc.1.20402.4 + 5.0.100-rc.1.20402.8 + 5.0.100-rc.1.20402.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 07e65d8484d2a25e06ed8c79ad9244426f9d4743 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 10:03:01 +0000 Subject: [PATCH 082/183] Update dependencies from https://github.com/dotnet/sdk build 20200803.4 (#8080) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20402.8 to 5.0.100-rc.1.20403.4 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20402.8 to 5.0.100-rc.1.20403.4 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 - dotnet-dev-certs: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 - dotnet-user-secrets: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 - dotnet-watch: from 5.0.0-rc.1.20402.2 to 5.0.0-rc.1.20402.8 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 55cbcfd2a..121404306 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 - + https://github.com/dotnet/aspnetcore - b534f925890face10a2f4704dd5ea2acfc19be01 + dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - c259368d9b69ef50efa5b7620df4355ddba9e05a + 59c29fe235e834f88cdd922f4f8967817ab4f977 - + https://github.com/dotnet/sdk - c259368d9b69ef50efa5b7620df4355ddba9e05a + 59c29fe235e834f88cdd922f4f8967817ab4f977 diff --git a/eng/Versions.props b/eng/Versions.props index be2223e79..0dd82dcbc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20402.2 - 5.0.0-rc.1.20402.2 - 5.0.0-rc.1.20402.2 - 5.0.0-rc.1.20402.2 - 5.0.0-rc.1.20402.2 - 5.0.0-rc.1.20402.2 + 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20402.8 0.2.0 - 5.0.100-rc.1.20402.8 - 5.0.100-rc.1.20402.8 + 5.0.100-rc.1.20403.4 + 5.0.100-rc.1.20403.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e649de017c1798ea5fec3f680a8bd4e20480538b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 18:38:17 +0000 Subject: [PATCH 083/183] [master] Update dependencies from dotnet/sdk (#8082) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.4 to 5.0.100-rc.1.20403.8 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.4 to 5.0.100-rc.1.20403.8 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20401.1 --- eng/Version.Details.xml | 48 ++++++++++++++++++++--------------------- eng/Versions.props | 24 ++++++++++----------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 121404306..75fcaa8df 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,37 +1,37 @@ - + https://github.com/dotnet/windowsdesktop - 84d21bafc7022c27152e86e73dd9cbb509ae86d2 + 7c86a4795dce429c45424e63d195a34d1dd5f090 - + https://github.com/dotnet/windowsdesktop - 84d21bafc7022c27152e86e73dd9cbb509ae86d2 + 7c86a4795dce429c45424e63d195a34d1dd5f090 - + https://github.com/dotnet/windowsdesktop - 84d21bafc7022c27152e86e73dd9cbb509ae86d2 + 7c86a4795dce429c45424e63d195a34d1dd5f090 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 6822ba3308b2ceb3eb8a88c8e02f460e171bc04a + ca70fc9903e68d36ee16f7d10a9a491251ea8f20 https://github.com/dotnet/aspnetcore @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 - + https://github.com/dotnet/sdk - 59c29fe235e834f88cdd922f4f8967817ab4f977 + 1db814b78544aa4177663b846a06f337d8a89919 - + https://github.com/dotnet/sdk - 59c29fe235e834f88cdd922f4f8967817ab4f977 + 1db814b78544aa4177663b846a06f337d8a89919 https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 0eedcc1faf972433a81d6413adb17f35a827dbd5 + 0b936809e4be9a27c32ad6f322b2e254b1a2ff2c diff --git a/eng/Versions.props b/eng/Versions.props index 0dd82dcbc..5889a3c65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-rc.1.20380.1 + 5.0.0-rc.1.20401.1 @@ -49,29 +49,29 @@ - 5.0.100-rc.1.20403.4 - 5.0.100-rc.1.20403.4 + 5.0.100-rc.1.20403.8 + 5.0.100-rc.1.20403.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20402.3 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20402.3 2.1.0 - 5.0.0-rc.1.20380.1 - 5.0.0-rc.1.20380.1 - 5.0.0-rc.1.20380.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20401.1 From 26ae36f79dc0bcb1aab9e9a80f49b4a85f37c104 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Mon, 3 Aug 2020 12:02:45 -0700 Subject: [PATCH 084/183] Revert "Only publish Microsoft.DotNet.Sdk.Internal once (#8016)" This reverts commit 7e76b75c653b74dd9525bfa7b586a398fa5b4a7d. --- eng/Publishing.props | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eng/Publishing.props b/eng/Publishing.props index 9999c71ee..de5617d4f 100644 --- a/eng/Publishing.props +++ b/eng/Publishing.props @@ -87,7 +87,7 @@ - + + PublishFlatContainer="false" /> From 37448c5edbf68081ff143e15995162b5f17daf72 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Mon, 3 Aug 2020 12:02:52 -0700 Subject: [PATCH 085/183] Revert "Publish the SDK sentinel package as a package (#8012)" This reverts commit a7cf77dd667e4fd560083bc1acbbe02c60c74b89. --- eng/Publishing.props | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/eng/Publishing.props b/eng/Publishing.props index de5617d4f..568312d2e 100644 --- a/eng/Publishing.props +++ b/eng/Publishing.props @@ -50,11 +50,9 @@ $(AssetManifestFileName)-$(AGENT_JOBNAME) $(AssetManifestFileName)-$(Architecture) $(AssetManifestFileName)-checksums - $(AssetManifestFileName)-packages $(ArtifactsLogDir)AssetManifest\$(AssetManifestFileName).xml $(ArtifactsLogDir)AssetManifest\$(ChecksumsAssetManifestFileName).xml - $(ArtifactsLogDir)AssetManifest\$(PackagesManifestFileName).xml $(ArtifactsDir)..\DotnetAssetsTmpDir\$([System.Guid]::NewGuid()) $(ArtifactsDir)..\ChecksumAssetsTmpDir\$([System.Guid]::NewGuid()) @@ -76,7 +74,6 @@ Condition=" '$(PublishBinariesAndBadge)' == 'true' and '$(OS)' == 'Windows_NT' and '$(Architecture)' == 'x64'" /> - @@ -87,7 +84,6 @@ - $(BlobStoragePartialRelativePath)/$(FullNugetVersion)/$([System.String]::Copy('%(Filename)%(Extension)')) NonShipping=true - - - NonShipping=true - $(BlobStoragePartialRelativePath)/$(FullNugetVersion)/$([System.String]::Copy('%(Filename)%(Extension)')) @@ -173,16 +165,5 @@ ManifestCommit="$(BUILD_SOURCEVERSION)" AssetManifestPath="$(ChecksumsAssetManifestFilePath)" PublishFlatContainer="true" /> - - - From dc95de00046550c2a5a053153ca78ef89a114fd7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 19:16:26 +0000 Subject: [PATCH 086/183] Update dependencies from https://github.com/dotnet/sdk build 20200803.9 (#8083) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20403.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.8 to 5.0.100-rc.1.20403.9 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.8 to 5.0.100-rc.1.20403.9 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - dotnet-dev-certs: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - dotnet-user-secrets: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - dotnet-watch: from 5.0.0-rc.1.20402.8 to 5.0.0-rc.1.20403.2 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20402.1 to 5.0.0-rc.1.20403.1 --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 18 +++++++++--------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 75fcaa8df..bcdff4262 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 - + https://github.com/dotnet/aspnetcore - dd25b5f91ad0ba6cad8e4b7b9c27835b11a30e33 + 404d81767784552b0a148cb8c437332ebe726ae9 https://github.com/dotnet/test-templates @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - 2ddcd7b5dd226b47fd4b7ffa8189f96ad8016124 + 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 1db814b78544aa4177663b846a06f337d8a89919 + 56005e13634b9388aa53596891bc2e8192e2978c - + https://github.com/dotnet/sdk - 1db814b78544aa4177663b846a06f337d8a89919 + 56005e13634b9388aa53596891bc2e8192e2978c diff --git a/eng/Versions.props b/eng/Versions.props index 5889a3c65..ff6a18776 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20402.1 + 5.0.0-rc.1.20403.1 @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20402.8 - 5.0.0-rc.1.20402.8 - 5.0.0-rc.1.20402.8 - 5.0.0-rc.1.20402.8 - 5.0.0-rc.1.20402.8 - 5.0.0-rc.1.20402.8 + 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.2 0.2.0 - 5.0.100-rc.1.20403.8 - 5.0.100-rc.1.20403.8 + 5.0.100-rc.1.20403.9 + 5.0.100-rc.1.20403.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From fe7bc6ddef819a9e6139688416a4ed497734f63d Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Mon, 3 Aug 2020 12:18:09 -0700 Subject: [PATCH 087/183] Fix asset manifest file names. Set the asset manifest OS and change the name of the installers manifests. Currently arcade defaults to using OS-Platform as the asset manifest file name. Installer does a ton of building in docker containers, which ends up generating many overlapping names. This is a symptom and also likely hiding some non-determinsm. To fix, change the name of the blob asset manifest name to include a "-installers" suffix. Then alter the property names around a bit so that AssetManifestOS is set prior to publish.proj's publish target being run. --- eng/Publishing.props | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/eng/Publishing.props b/eng/Publishing.props index 568312d2e..99e07962f 100644 --- a/eng/Publishing.props +++ b/eng/Publishing.props @@ -43,15 +43,18 @@ - $(AGENT_OS) - $(OS) - $(AssetManifestFileName)-$(AGENT_JOBNAME) - $(AssetManifestFileName)-$(Architecture) - $(AssetManifestFileName)-checksums - - $(ArtifactsLogDir)AssetManifest\$(AssetManifestFileName).xml + that exists in the container. Disambiguate the manifests via available properties. + AGENT_OS and AGENT_JOBNAME are present on Azure DevOps agents. AssetManifestOS will also + be used by arcade to generate the name of the manifest file name for the built in publishing. --> + $(AGENT_OS) + $(OS) + $(AssetManifestOS)-$(AGENT_JOBNAME) + $(AssetManifestOS) + $(AssetManifestOS)-$(Architecture) + $(BaseAssetManifestFileName)-installers + $(BaseAssetManifestFileName)-checksums + + $(ArtifactsLogDir)AssetManifest\$(InstallersAssetManifestFileName).xml $(ArtifactsLogDir)AssetManifest\$(ChecksumsAssetManifestFileName).xml $(ArtifactsDir)..\DotnetAssetsTmpDir\$([System.Guid]::NewGuid()) @@ -153,7 +156,7 @@ ManifestBranch="$(BUILD_SOURCEBRANCH)" ManifestBuildId="$(BUILD_BUILDNUMBER)" ManifestCommit="$(BUILD_SOURCEVERSION)" - AssetManifestPath="$(DotNetAssetManifestFilePath)" + AssetManifestPath="$(InstallersAssetManifestFilePath)" PublishFlatContainer="true" /> Date: Mon, 3 Aug 2020 21:22:05 +0000 Subject: [PATCH 088/183] Update dependencies from https://github.com/dotnet/sdk build 20200803.10 (#8085) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.9 to 5.0.100-rc.1.20403.10 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.9 to 5.0.100-rc.1.20403.10 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bcdff4262..eb5342812 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 56005e13634b9388aa53596891bc2e8192e2978c + 9861fd7ce91c20ed61e830f6e11c65bdae7c346f - + https://github.com/dotnet/sdk - 56005e13634b9388aa53596891bc2e8192e2978c + 9861fd7ce91c20ed61e830f6e11c65bdae7c346f diff --git a/eng/Versions.props b/eng/Versions.props index ff6a18776..01da5982d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20403.9 - 5.0.100-rc.1.20403.9 + 5.0.100-rc.1.20403.10 + 5.0.100-rc.1.20403.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 5873df6da42ebd503af46f54dd2dd8d41b4a102e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 22:47:27 +0000 Subject: [PATCH 089/183] Update dependencies from https://github.com/dotnet/sdk build 20200803.13 (#8086) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.10 to 5.0.100-rc.1.20403.13 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.10 to 5.0.100-rc.1.20403.13 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 - dotnet-dev-certs: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 - dotnet-user-secrets: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 - dotnet-watch: from 5.0.0-rc.1.20403.2 to 5.0.0-rc.1.20403.3 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eb5342812..1830de1d6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 - + https://github.com/dotnet/aspnetcore - 404d81767784552b0a148cb8c437332ebe726ae9 + 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 9861fd7ce91c20ed61e830f6e11c65bdae7c346f + d3bc3f978ac5a194dbe07d81264076cd8bef02d0 - + https://github.com/dotnet/sdk - 9861fd7ce91c20ed61e830f6e11c65bdae7c346f + d3bc3f978ac5a194dbe07d81264076cd8bef02d0 diff --git a/eng/Versions.props b/eng/Versions.props index 01da5982d..6e42a816d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20403.2 - 5.0.0-rc.1.20403.2 - 5.0.0-rc.1.20403.2 - 5.0.0-rc.1.20403.2 - 5.0.0-rc.1.20403.2 - 5.0.0-rc.1.20403.2 + 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.3 0.2.0 - 5.0.100-rc.1.20403.10 - 5.0.100-rc.1.20403.10 + 5.0.100-rc.1.20403.13 + 5.0.100-rc.1.20403.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ace6e859e7099ba1aafab7b4c252459c54929034 Mon Sep 17 00:00:00 2001 From: Sarah Oslund Date: Mon, 3 Aug 2020 16:02:18 -0700 Subject: [PATCH 090/183] Dynamically acquire branch info, remove branchinfo.props --- .vsts-ci.yml | 1 + src/CopyToLatest/CopyToLatest.csproj | 4 ++-- src/CopyToLatest/targets/BranchInfo.props | 5 ----- 3 files changed, 3 insertions(+), 7 deletions(-) delete mode 100644 src/CopyToLatest/targets/BranchInfo.props diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 05e608cd5..7cbab6ffd 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -301,4 +301,5 @@ stages: /p:DotNetPublishSdkAssetsBlobFeedKey=$(dotnetcli-storage-key) /p:DotnetPublishChecksumsBlobFeedUrl=https://dotnetclichecksums.blob.core.windows.net/dotnet/index.json /p:DotNetPublishChecksumsBlobFeedKey=$(dotnetclichecksums-storage-key) + /p:SourceBranch=$(BUILD.SOURCEBRANCH) displayName: Copy to latest diff --git a/src/CopyToLatest/CopyToLatest.csproj b/src/CopyToLatest/CopyToLatest.csproj index 21a9eb7bb..0af7950d0 100644 --- a/src/CopyToLatest/CopyToLatest.csproj +++ b/src/CopyToLatest/CopyToLatest.csproj @@ -3,12 +3,12 @@ $(CoreSdkTargetFramework) true false + $(SourceBranch.Replace('refs/heads/', '').Replace('internal/', '')) - - + \ No newline at end of file diff --git a/src/CopyToLatest/targets/BranchInfo.props b/src/CopyToLatest/targets/BranchInfo.props deleted file mode 100644 index 9bd214aa9..000000000 --- a/src/CopyToLatest/targets/BranchInfo.props +++ /dev/null @@ -1,5 +0,0 @@ - - - master - - From f17e8401ac072f6cbbcb6da695dc1b65f96602d2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 04:43:39 +0000 Subject: [PATCH 091/183] [master] Update dependencies from dotnet/sdk (#8087) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.13 to 5.0.100-rc.1.20403.15 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.13 to 5.0.100-rc.1.20403.15 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 - dotnet-dev-certs: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 - dotnet-user-secrets: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 - dotnet-watch: from 5.0.0-rc.1.20403.3 to 5.0.0-rc.1.20403.5 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1830de1d6..24efefb7d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 - + https://github.com/dotnet/aspnetcore - 749450ac7b67c2686f796fcc1e0299b8dfbe74c5 + 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - d3bc3f978ac5a194dbe07d81264076cd8bef02d0 + 1dd5512f09d03f63711175f24533ef4100a64d3f - + https://github.com/dotnet/sdk - d3bc3f978ac5a194dbe07d81264076cd8bef02d0 + 1dd5512f09d03f63711175f24533ef4100a64d3f diff --git a/eng/Versions.props b/eng/Versions.props index 6e42a816d..b49e850bc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20403.3 - 5.0.0-rc.1.20403.3 - 5.0.0-rc.1.20403.3 - 5.0.0-rc.1.20403.3 - 5.0.0-rc.1.20403.3 - 5.0.0-rc.1.20403.3 + 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.5 0.2.0 - 5.0.100-rc.1.20403.13 - 5.0.100-rc.1.20403.13 + 5.0.100-rc.1.20403.15 + 5.0.100-rc.1.20403.15 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7dc095331cb1ff81e1d54b99eb0bae99758858f9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 08:07:37 +0000 Subject: [PATCH 092/183] Update dependencies from https://github.com/dotnet/sdk build 20200803.16 (#8088) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.15 to 5.0.100-rc.1.20403.16 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.15 to 5.0.100-rc.1.20403.16 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 24efefb7d..823904885 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 1dd5512f09d03f63711175f24533ef4100a64d3f + 764e97e61dec27b02bec33ed627e146558495cfd - + https://github.com/dotnet/sdk - 1dd5512f09d03f63711175f24533ef4100a64d3f + 764e97e61dec27b02bec33ed627e146558495cfd diff --git a/eng/Versions.props b/eng/Versions.props index b49e850bc..9b48e0214 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20403.15 - 5.0.100-rc.1.20403.15 + 5.0.100-rc.1.20403.16 + 5.0.100-rc.1.20403.16 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3263f8a822407974a34fe859cec1ceb46e43e239 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 10:52:26 +0000 Subject: [PATCH 093/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.1 (#8089) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20403.16 to 5.0.100-rc.1.20404.1 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20403.16 to 5.0.100-rc.1.20404.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 823904885..e787cf3d4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 764e97e61dec27b02bec33ed627e146558495cfd + 5d00061c00fda26a5201d1af91cc4220db8e061c - + https://github.com/dotnet/sdk - 764e97e61dec27b02bec33ed627e146558495cfd + 5d00061c00fda26a5201d1af91cc4220db8e061c diff --git a/eng/Versions.props b/eng/Versions.props index 9b48e0214..9c9332e97 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20403.16 - 5.0.100-rc.1.20403.16 + 5.0.100-rc.1.20404.1 + 5.0.100-rc.1.20404.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 5bf4973cbfe71aeeb6e7e31019f7a0773132cd17 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 11:51:35 +0000 Subject: [PATCH 094/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.2 (#8090) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.1 to 5.0.100-rc.1.20404.2 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.1 to 5.0.100-rc.1.20404.2 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 - dotnet-dev-certs: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 - dotnet-user-secrets: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 - dotnet-watch: from 5.0.0-rc.1.20403.5 to 5.0.0-rc.1.20403.8 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e787cf3d4..22373407a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc - + https://github.com/dotnet/aspnetcore - 3f15d2685115f5cb6eaf5df792a94b5a1fe6a5d5 + 1be16fb4c9942503477d185cc20e0afbcd4590dc https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 5d00061c00fda26a5201d1af91cc4220db8e061c + e66be07a6e9a2c6f98a5d5fc1f9a7dcfe3bdcea7 - + https://github.com/dotnet/sdk - 5d00061c00fda26a5201d1af91cc4220db8e061c + e66be07a6e9a2c6f98a5d5fc1f9a7dcfe3bdcea7 diff --git a/eng/Versions.props b/eng/Versions.props index 9c9332e97..fbdd49bd6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20403.5 - 5.0.0-rc.1.20403.5 - 5.0.0-rc.1.20403.5 - 5.0.0-rc.1.20403.5 - 5.0.0-rc.1.20403.5 - 5.0.0-rc.1.20403.5 + 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20403.8 0.2.0 - 5.0.100-rc.1.20404.1 - 5.0.100-rc.1.20404.1 + 5.0.100-rc.1.20404.2 + 5.0.100-rc.1.20404.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 6280d1a19507dccbcfcb607ed3f70bc73da617b3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 19:15:59 +0000 Subject: [PATCH 095/183] [master] Update dependencies from dotnet/sdk (#8091) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.2 to 5.0.100-rc.1.20404.6 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.2 to 5.0.100-rc.1.20404.6 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20403.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 22373407a..015a2ca80 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 7c86a4795dce429c45424e63d195a34d1dd5f090 + 5348e540d98cee18d0f110f81764cf770434a3ed - + https://github.com/dotnet/windowsdesktop - 7c86a4795dce429c45424e63d195a34d1dd5f090 + 5348e540d98cee18d0f110f81764cf770434a3ed - + https://github.com/dotnet/windowsdesktop - 7c86a4795dce429c45424e63d195a34d1dd5f090 + 5348e540d98cee18d0f110f81764cf770434a3ed https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - e66be07a6e9a2c6f98a5d5fc1f9a7dcfe3bdcea7 + 6970fa31a2315dda44a5c48e18d8c371ae077a87 - + https://github.com/dotnet/sdk - e66be07a6e9a2c6f98a5d5fc1f9a7dcfe3bdcea7 + 6970fa31a2315dda44a5c48e18d8c371ae077a87 https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 0b936809e4be9a27c32ad6f322b2e254b1a2ff2c + 8ae8b4fde318aedcd9605878b1d63e99c513cd63 diff --git a/eng/Versions.props b/eng/Versions.props index fbdd49bd6..c8cbd8618 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20403.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.2 - 5.0.100-rc.1.20404.2 + 5.0.100-rc.1.20404.6 + 5.0.100-rc.1.20404.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 - 5.0.0-rc.1.20401.1 + 5.0.0-rc.1.20403.1 + 5.0.0-rc.1.20403.1 + 5.0.0-rc.1.20403.1 From f34cce765d53d1ce97268451d3374f5598e93b6d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 22:30:51 +0000 Subject: [PATCH 096/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.7 (#8094) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.6 to 5.0.100-rc.1.20404.7 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.6 to 5.0.100-rc.1.20404.7 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 015a2ca80..7e58ea39b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 6970fa31a2315dda44a5c48e18d8c371ae077a87 + 7c29d70fdd1ac507fa6c264891e65ea006f2501e - + https://github.com/dotnet/sdk - 6970fa31a2315dda44a5c48e18d8c371ae077a87 + 7c29d70fdd1ac507fa6c264891e65ea006f2501e diff --git a/eng/Versions.props b/eng/Versions.props index c8cbd8618..8e17a776d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.6 - 5.0.100-rc.1.20404.6 + 5.0.100-rc.1.20404.7 + 5.0.100-rc.1.20404.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 53311dffecf2deeb163f5e948178bade9801a315 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2020 23:51:10 +0000 Subject: [PATCH 097/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.8 (#8095) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.7 to 5.0.100-rc.1.20404.8 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.7 to 5.0.100-rc.1.20404.8 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 - dotnet-dev-certs: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 - dotnet-user-secrets: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 - dotnet-watch: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.3 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7e58ea39b..a9e0cc50b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore - 1be16fb4c9942503477d185cc20e0afbcd4590dc + e13368391b0220ba4404f2c5f448fd5f2733a70b https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 7c29d70fdd1ac507fa6c264891e65ea006f2501e + 370fd3263baf5a55d3f2ecf6e4d5fb2cf8a912b4 - + https://github.com/dotnet/sdk - 7c29d70fdd1ac507fa6c264891e65ea006f2501e + 370fd3263baf5a55d3f2ecf6e4d5fb2cf8a912b4 diff --git a/eng/Versions.props b/eng/Versions.props index 8e17a776d..8832fd343 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20403.8 - 5.0.0-rc.1.20403.8 - 5.0.0-rc.1.20403.8 - 5.0.0-rc.1.20403.8 - 5.0.0-rc.1.20403.8 - 5.0.0-rc.1.20403.8 + 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.3 0.2.0 - 5.0.100-rc.1.20404.7 - 5.0.100-rc.1.20404.7 + 5.0.100-rc.1.20404.8 + 5.0.100-rc.1.20404.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 864258c7490e9efbf6bda52d20bb9c2444a25690 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 01:27:50 +0000 Subject: [PATCH 098/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.9 (#8096) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.8 to 5.0.100-rc.1.20404.9 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.8 to 5.0.100-rc.1.20404.9 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a9e0cc50b..d4ca7c073 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 370fd3263baf5a55d3f2ecf6e4d5fb2cf8a912b4 + aa56ecdc8020eecb0d101716f3ff5b82fce8d583 - + https://github.com/dotnet/sdk - 370fd3263baf5a55d3f2ecf6e4d5fb2cf8a912b4 + aa56ecdc8020eecb0d101716f3ff5b82fce8d583 diff --git a/eng/Versions.props b/eng/Versions.props index 8832fd343..2678e4f4d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.8 - 5.0.100-rc.1.20404.8 + 5.0.100-rc.1.20404.9 + 5.0.100-rc.1.20404.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e94adaab4b532fabf9ef91f93d2c0e8b985600c5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 02:44:51 +0000 Subject: [PATCH 099/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.10 (#8097) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.9 to 5.0.100-rc.1.20404.10 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.9 to 5.0.100-rc.1.20404.10 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 - dotnet-dev-certs: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 - dotnet-user-secrets: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 - dotnet-watch: from 5.0.0-rc.1.20404.3 to 5.0.0-rc.1.20404.6 --- eng/Version.Details.xml | 20 ++++++++++---------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d4ca7c073..4c0cb2348 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,27 +43,27 @@ https://github.com/dotnet/runtime ca70fc9903e68d36ee16f7d10a9a491251ea8f20 - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b - + https://github.com/dotnet/aspnetcore e13368391b0220ba4404f2c5f448fd5f2733a70b @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - aa56ecdc8020eecb0d101716f3ff5b82fce8d583 + ab6f793458721ecb581aef12be59ee6f4e2bf86d - + https://github.com/dotnet/sdk - aa56ecdc8020eecb0d101716f3ff5b82fce8d583 + ab6f793458721ecb581aef12be59ee6f4e2bf86d diff --git a/eng/Versions.props b/eng/Versions.props index 2678e4f4d..c42e1253f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20404.3 - 5.0.0-rc.1.20404.3 - 5.0.0-rc.1.20404.3 - 5.0.0-rc.1.20404.3 - 5.0.0-rc.1.20404.3 - 5.0.0-rc.1.20404.3 + 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.6 0.2.0 - 5.0.100-rc.1.20404.9 - 5.0.100-rc.1.20404.9 + 5.0.100-rc.1.20404.10 + 5.0.100-rc.1.20404.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From cede8bc2c8e1d70831fa36b10aab13c8708a3cd3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 04:26:03 +0000 Subject: [PATCH 100/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.12 (#8098) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.10 to 5.0.100-rc.1.20404.12 - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.10 to 5.0.100-rc.1.20404.12 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4c0cb2348..29214d3f9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - ab6f793458721ecb581aef12be59ee6f4e2bf86d + 23abc7353251929cbe8d10599767dd02bf39f917 - + https://github.com/dotnet/sdk - ab6f793458721ecb581aef12be59ee6f4e2bf86d + 23abc7353251929cbe8d10599767dd02bf39f917 diff --git a/eng/Versions.props b/eng/Versions.props index c42e1253f..5022bbb55 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.10 - 5.0.100-rc.1.20404.10 + 5.0.100-rc.1.20404.12 + 5.0.100-rc.1.20404.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ddcea5e0a1326de323a2e6f5ecdd76509c8d7509 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 05:22:14 +0000 Subject: [PATCH 101/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.14 (#8099) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.12 to 5.0.100-rc.1.20404.14 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.12 to 5.0.100-rc.1.20404.14 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 29214d3f9..7b48baa39 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 23abc7353251929cbe8d10599767dd02bf39f917 + a8050e92910588db8e83ded2e61fbce68b3084ae - + https://github.com/dotnet/sdk - 23abc7353251929cbe8d10599767dd02bf39f917 + a8050e92910588db8e83ded2e61fbce68b3084ae diff --git a/eng/Versions.props b/eng/Versions.props index 5022bbb55..d4919a285 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.12 - 5.0.100-rc.1.20404.12 + 5.0.100-rc.1.20404.14 + 5.0.100-rc.1.20404.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 60bafd3d48f5fa7176b2810fec14270eb0db839b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 05:58:22 +0000 Subject: [PATCH 102/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.15 (#8100) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.14 to 5.0.100-rc.1.20404.15 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.14 to 5.0.100-rc.1.20404.15 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7b48baa39..e2ac55285 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - a8050e92910588db8e83ded2e61fbce68b3084ae + 1d2141f6cdda19c1e5f32553a391be084b255988 - + https://github.com/dotnet/sdk - a8050e92910588db8e83ded2e61fbce68b3084ae + 1d2141f6cdda19c1e5f32553a391be084b255988 diff --git a/eng/Versions.props b/eng/Versions.props index d4919a285..059cd1d8a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20404.14 - 5.0.100-rc.1.20404.14 + 5.0.100-rc.1.20404.15 + 5.0.100-rc.1.20404.15 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 6ecd7e4aa6315bf38b1ac84349240a6212f8595c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 07:10:22 +0000 Subject: [PATCH 103/183] Update dependencies from https://github.com/dotnet/sdk build 20200804.17 (#8102) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.15 to 5.0.100-rc.1.20404.17 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.15 to 5.0.100-rc.1.20404.17 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.2 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 - dotnet-dev-certs: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 - dotnet-user-secrets: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 - dotnet-watch: from 5.0.0-rc.1.20404.6 to 5.0.0-rc.1.20404.10 --- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 28 ++++++++++----------- 2 files changed, 42 insertions(+), 42 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e2ac55285..3ea5e3290 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 5348e540d98cee18d0f110f81764cf770434a3ed - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c @@ -39,33 +39,33 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - ca70fc9903e68d36ee16f7d10a9a491251ea8f20 + 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 - + https://github.com/dotnet/aspnetcore - e13368391b0220ba4404f2c5f448fd5f2733a70b + e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 1d2141f6cdda19c1e5f32553a391be084b255988 + 15c6d24fc0bba5be33923d9591b070e5fe9c6c3e - + https://github.com/dotnet/sdk - 1d2141f6cdda19c1e5f32553a391be084b255988 + 15c6d24fc0bba5be33923d9591b070e5fe9c6c3e diff --git a/eng/Versions.props b/eng/Versions.props index 059cd1d8a..e58bea867 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,34 +37,34 @@ - 5.0.0-rc.1.20404.6 - 5.0.0-rc.1.20404.6 - 5.0.0-rc.1.20404.6 - 5.0.0-rc.1.20404.6 - 5.0.0-rc.1.20404.6 - 5.0.0-rc.1.20404.6 + 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.10 0.2.0 - 5.0.100-rc.1.20404.15 - 5.0.100-rc.1.20404.15 + 5.0.100-rc.1.20404.17 + 5.0.100-rc.1.20404.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20404.2 - 5.0.0-rc.1.20402.3 - 5.0.0-rc.1.20402.3 - 5.0.0-rc.1.20402.3 - 5.0.0-rc.1.20402.3 - 5.0.0-rc.1.20402.3 + 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.2 2.1.0 From 5a5d7e6c36ec1b248fbd44e5a86e95eb16503bc2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 10:15:21 +0000 Subject: [PATCH 104/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.3 (#8103) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20404.17 to 5.0.100-rc.1.20405.3 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20404.17 to 5.0.100-rc.1.20405.3 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 - dotnet-dev-certs: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 - dotnet-user-secrets: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 - dotnet-watch: from 5.0.0-rc.1.20404.10 to 5.0.0-rc.1.20404.11 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3ea5e3290..80f614243 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 4c0ebbdd344304e36773c01eb61b9a486b198a3c - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 - + https://github.com/dotnet/aspnetcore - e2d2aaa753cd7a322577e6fd1f0a4fe8441de659 + bb9653532ad5ce607d44dc4092cee899591e51f1 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 15c6d24fc0bba5be33923d9591b070e5fe9c6c3e + 5aa91f0d29485bb20cbe3cd192d6c5c4e2480fff - + https://github.com/dotnet/sdk - 15c6d24fc0bba5be33923d9591b070e5fe9c6c3e + 5aa91f0d29485bb20cbe3cd192d6c5c4e2480fff diff --git a/eng/Versions.props b/eng/Versions.props index e58bea867..f9ecdde16 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20404.10 - 5.0.0-rc.1.20404.10 - 5.0.0-rc.1.20404.10 - 5.0.0-rc.1.20404.10 - 5.0.0-rc.1.20404.10 - 5.0.0-rc.1.20404.10 + 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20404.11 0.2.0 - 5.0.100-rc.1.20404.17 - 5.0.100-rc.1.20404.17 + 5.0.100-rc.1.20405.3 + 5.0.100-rc.1.20405.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From bfeb48f4c36548fbbc25ecbd878a42304f149523 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 16:01:32 +0000 Subject: [PATCH 105/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.4 (#8104) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.3 to 5.0.100-rc.1.20405.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.3 to 5.0.100-rc.1.20405.4 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20404.2 to 5.0.0-rc.1.20404.16 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 80f614243..870d3ae9c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 5348e540d98cee18d0f110f81764cf770434a3ed - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 4c0ebbdd344304e36773c01eb61b9a486b198a3c + b497143c168c8df00f070e95a4c6fee4092d2ea6 https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 5aa91f0d29485bb20cbe3cd192d6c5c4e2480fff + 76b8fd477c5ef48110a858a8aff7a041f80601c6 - + https://github.com/dotnet/sdk - 5aa91f0d29485bb20cbe3cd192d6c5c4e2480fff + 76b8fd477c5ef48110a858a8aff7a041f80601c6 diff --git a/eng/Versions.props b/eng/Versions.props index f9ecdde16..bf432de56 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,22 +49,22 @@ - 5.0.100-rc.1.20405.3 - 5.0.100-rc.1.20405.3 + 5.0.100-rc.1.20405.4 + 5.0.100-rc.1.20405.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.16 - 5.0.0-rc.1.20404.2 - 5.0.0-rc.1.20404.2 - 5.0.0-rc.1.20404.2 - 5.0.0-rc.1.20404.2 - 5.0.0-rc.1.20404.2 + 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20404.16 2.1.0 From eeef3c72e807a0fd27ad2217376aa1f52bc7d864 Mon Sep 17 00:00:00 2001 From: Sarah Oslund Date: Wed, 5 Aug 2020 10:20:22 -0700 Subject: [PATCH 106/183] PR feedback --- src/CopyToLatest/CopyToLatest.csproj | 2 +- src/core-sdk-tasks/CopyBlobsToLatest.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/CopyToLatest/CopyToLatest.csproj b/src/CopyToLatest/CopyToLatest.csproj index 0af7950d0..a61ea4a61 100644 --- a/src/CopyToLatest/CopyToLatest.csproj +++ b/src/CopyToLatest/CopyToLatest.csproj @@ -3,7 +3,7 @@ $(CoreSdkTargetFramework) true false - $(SourceBranch.Replace('refs/heads/', '').Replace('internal/', '')) + $(SourceBranch.Replace('refs/heads/', '')) diff --git a/src/core-sdk-tasks/CopyBlobsToLatest.cs b/src/core-sdk-tasks/CopyBlobsToLatest.cs index 734898a73..a62000ba7 100644 --- a/src/core-sdk-tasks/CopyBlobsToLatest.cs +++ b/src/core-sdk-tasks/CopyBlobsToLatest.cs @@ -64,6 +64,11 @@ namespace Microsoft.DotNet.Cli.Build public override bool Execute() { + if (!(Channel.Equals("master") || Channel.Equals("main") || Channel.StartsWith("release"))) + { + return true; // Skip copy to latest, we don't want to publish to arbitrary places + } + string targetFolder = $"{AzurePublisher.Product.Sdk}/{Channel}"; string targetVersionFile = $"{targetFolder}/{CommitHash}"; From 3f54959fc81f21f426b31e4f0fa53c7cd7a06b8a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 22:22:18 +0000 Subject: [PATCH 107/183] [master] Update dependencies from dotnet/sdk (#8106) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.4 to 5.0.100-rc.1.20405.6 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.4 to 5.0.100-rc.1.20405.6 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20404.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 870d3ae9c..82e0355ab 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 5348e540d98cee18d0f110f81764cf770434a3ed + 5ac22c464706fceed2f7c2d17a488e8211fd3057 - + https://github.com/dotnet/windowsdesktop - 5348e540d98cee18d0f110f81764cf770434a3ed + 5ac22c464706fceed2f7c2d17a488e8211fd3057 - + https://github.com/dotnet/windowsdesktop - 5348e540d98cee18d0f110f81764cf770434a3ed + 5ac22c464706fceed2f7c2d17a488e8211fd3057 https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 76b8fd477c5ef48110a858a8aff7a041f80601c6 + ddf73eb46f75f4f318dbbc8804db2edff148eab2 - + https://github.com/dotnet/sdk - 76b8fd477c5ef48110a858a8aff7a041f80601c6 + ddf73eb46f75f4f318dbbc8804db2edff148eab2 https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 8ae8b4fde318aedcd9605878b1d63e99c513cd63 + 926354a8e934d2480d68e1df412bcc78ccd931f0 diff --git a/eng/Versions.props b/eng/Versions.props index bf432de56..697492a35 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-rc.1.20403.1 + 5.0.0-rc.1.20404.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20405.4 - 5.0.100-rc.1.20405.4 + 5.0.100-rc.1.20405.6 + 5.0.100-rc.1.20405.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20403.1 - 5.0.0-rc.1.20403.1 - 5.0.0-rc.1.20403.1 + 5.0.0-rc.1.20404.1 + 5.0.0-rc.1.20404.1 + 5.0.0-rc.1.20404.1 From 55654a9e574eae56b111eea4af14e50bd50e8457 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2020 22:52:55 +0000 Subject: [PATCH 108/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.7 (#8107) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.6 to 5.0.100-rc.1.20405.7 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.6 to 5.0.100-rc.1.20405.7 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 82e0355ab..814129dd6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - ddf73eb46f75f4f318dbbc8804db2edff148eab2 + 9b6505ef20113424d1f694463afa799438451a1b - + https://github.com/dotnet/sdk - ddf73eb46f75f4f318dbbc8804db2edff148eab2 + 9b6505ef20113424d1f694463afa799438451a1b diff --git a/eng/Versions.props b/eng/Versions.props index 697492a35..3310781c4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20405.6 - 5.0.100-rc.1.20405.6 + 5.0.100-rc.1.20405.7 + 5.0.100-rc.1.20405.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7754f2a691ed2d82f16b80c84e2831d4c6b09f8f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 01:18:51 +0000 Subject: [PATCH 109/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.10 (#8108) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.7 to 5.0.100-rc.1.20405.10 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.7 to 5.0.100-rc.1.20405.10 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 - dotnet-dev-certs: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 - dotnet-user-secrets: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 - dotnet-watch: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.5 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 814129dd6..046866690 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 - + https://github.com/dotnet/aspnetcore - bb9653532ad5ce607d44dc4092cee899591e51f1 + 2831aaa08a779507519c9ca23aa1c61c50fecb30 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 9b6505ef20113424d1f694463afa799438451a1b + 53b9f882d7c1ebf44e2f2378aced8c1aedae35b7 - + https://github.com/dotnet/sdk - 9b6505ef20113424d1f694463afa799438451a1b + 53b9f882d7c1ebf44e2f2378aced8c1aedae35b7 diff --git a/eng/Versions.props b/eng/Versions.props index 3310781c4..c09f31d22 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20404.11 - 5.0.0-rc.1.20404.11 - 5.0.0-rc.1.20404.11 - 5.0.0-rc.1.20404.11 - 5.0.0-rc.1.20404.11 - 5.0.0-rc.1.20404.11 + 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.5 0.2.0 - 5.0.100-rc.1.20405.7 - 5.0.100-rc.1.20405.7 + 5.0.100-rc.1.20405.10 + 5.0.100-rc.1.20405.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ec75626185e91bb7ad62371a360001d1f2be7949 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 02:22:57 +0000 Subject: [PATCH 110/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.11 (#8109) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.10 to 5.0.100-rc.1.20405.11 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.10 to 5.0.100-rc.1.20405.11 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 046866690..9e63b43e6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 53b9f882d7c1ebf44e2f2378aced8c1aedae35b7 + ee31a03ce4b6d58d6fca1505eced1f0f5e73bfd9 - + https://github.com/dotnet/sdk - 53b9f882d7c1ebf44e2f2378aced8c1aedae35b7 + ee31a03ce4b6d58d6fca1505eced1f0f5e73bfd9 diff --git a/eng/Versions.props b/eng/Versions.props index c09f31d22..79fb7d598 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20405.10 - 5.0.100-rc.1.20405.10 + 5.0.100-rc.1.20405.11 + 5.0.100-rc.1.20405.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 47c4aa6260b93c466c3c705bb0fbb5763e39f9a7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 05:35:32 +0000 Subject: [PATCH 111/183] [master] Update dependencies from dotnet/sdk (#8110) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.11 to 5.0.100-rc.1.20405.18 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.11 to 5.0.100-rc.1.20405.18 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 - dotnet-dev-certs: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 - dotnet-user-secrets: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 - dotnet-watch: from 5.0.0-rc.1.20405.5 to 5.0.0-rc.1.20405.7 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9e63b43e6..40b201ad6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 - + https://github.com/dotnet/aspnetcore - 2831aaa08a779507519c9ca23aa1c61c50fecb30 + 25948ab962d56c1982816a5bdfe16f9a97c38620 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - ee31a03ce4b6d58d6fca1505eced1f0f5e73bfd9 + bd4a0a00d730caf1a0acc173408f5d7fea66a67f - + https://github.com/dotnet/sdk - ee31a03ce4b6d58d6fca1505eced1f0f5e73bfd9 + bd4a0a00d730caf1a0acc173408f5d7fea66a67f diff --git a/eng/Versions.props b/eng/Versions.props index 79fb7d598..c44497155 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20405.5 - 5.0.0-rc.1.20405.5 - 5.0.0-rc.1.20405.5 - 5.0.0-rc.1.20405.5 - 5.0.0-rc.1.20405.5 - 5.0.0-rc.1.20405.5 + 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.7 0.2.0 - 5.0.100-rc.1.20405.11 - 5.0.100-rc.1.20405.11 + 5.0.100-rc.1.20405.18 + 5.0.100-rc.1.20405.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8806f4d04a7daccc9ddf7c4335e04116904d8179 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 06:17:35 +0000 Subject: [PATCH 112/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.19 (#8111) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.18 to 5.0.100-rc.1.20405.19 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.18 to 5.0.100-rc.1.20405.19 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 - dotnet-dev-certs: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 - dotnet-user-secrets: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 - dotnet-watch: from 5.0.0-rc.1.20405.7 to 5.0.0-rc.1.20405.9 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 40b201ad6..15d72aec7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime b497143c168c8df00f070e95a4c6fee4092d2ea6 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/aspnetcore - 25948ab962d56c1982816a5bdfe16f9a97c38620 + b052c4fcc200633443ccfedb0007e03b4b2340a8 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - bd4a0a00d730caf1a0acc173408f5d7fea66a67f + 8d526f00f563c222fe08be902a7941ba28c47f6d - + https://github.com/dotnet/sdk - bd4a0a00d730caf1a0acc173408f5d7fea66a67f + 8d526f00f563c222fe08be902a7941ba28c47f6d diff --git a/eng/Versions.props b/eng/Versions.props index c44497155..6b2a9ecf6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -37,20 +37,20 @@ - 5.0.0-rc.1.20405.7 - 5.0.0-rc.1.20405.7 - 5.0.0-rc.1.20405.7 - 5.0.0-rc.1.20405.7 - 5.0.0-rc.1.20405.7 - 5.0.0-rc.1.20405.7 + 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20405.9 0.2.0 - 5.0.100-rc.1.20405.18 - 5.0.100-rc.1.20405.18 + 5.0.100-rc.1.20405.19 + 5.0.100-rc.1.20405.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8f5a6e9f8b77f44e7c13552ee4af47dc9288bce8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 07:34:27 +0000 Subject: [PATCH 113/183] Update dependencies from https://github.com/dotnet/sdk build 20200805.22 (#8112) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.19 to 5.0.100-rc.1.20405.22 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.19 to 5.0.100-rc.1.20405.22 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 15d72aec7..fc13970e9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 8d526f00f563c222fe08be902a7941ba28c47f6d + 91a67aed72f773c08cf9e2e41e67c72cbfb3f8fb - + https://github.com/dotnet/sdk - 8d526f00f563c222fe08be902a7941ba28c47f6d + 91a67aed72f773c08cf9e2e41e67c72cbfb3f8fb diff --git a/eng/Versions.props b/eng/Versions.props index 6b2a9ecf6..819022d09 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20405.19 - 5.0.100-rc.1.20405.19 + 5.0.100-rc.1.20405.22 + 5.0.100-rc.1.20405.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9d378f2d78240d66ca17b9aaa7086d877706ea69 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 12:51:36 +0000 Subject: [PATCH 114/183] Update dependencies from https://github.com/dotnet/arcade build 20200803.5 (#8113) [master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20374.1 to 5.0.0-beta.20403.5 --- eng/Version.Details.xml | 4 +- eng/common/cross/arm64/tizen-fetch.sh | 2 +- eng/common/cross/armel/tizen-fetch.sh | 7 +- eng/common/cross/toolchain.cmake | 2 +- eng/common/performance/crossgen_perf.proj | 81 +++++++++++++++++++ ...helixpublish.proj => microbenchmarks.proj} | 56 +------------ eng/common/performance/performance-setup.sh | 29 +++++-- .../templates/steps/perf-send-to-helix.yml | 6 +- global.json | 2 +- 9 files changed, 121 insertions(+), 68 deletions(-) create mode 100644 eng/common/performance/crossgen_perf.proj rename eng/common/performance/{perfhelixpublish.proj => microbenchmarks.proj} (67%) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fc13970e9..821a05066 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -104,9 +104,9 @@ - + https://github.com/dotnet/arcade - f6192d1e284a08ac05041d05fa6e60dec74b24f5 + 7385e2722b9fa517314aa5db1fa598a8d417b3c7 diff --git a/eng/common/cross/arm64/tizen-fetch.sh b/eng/common/cross/arm64/tizen-fetch.sh index 338d1c3bf..a48a6f51c 100644 --- a/eng/common/cross/arm64/tizen-fetch.sh +++ b/eng/common/cross/arm64/tizen-fetch.sh @@ -161,7 +161,7 @@ fetch_tizen_pkgs aarch64 gcc glibc glibc-devel libicu libicu-devel libatomic lin Inform "fetch coreclr packages" fetch_tizen_pkgs aarch64 lldb lldb-devel libgcc libstdc++ libstdc++-devel libunwind libunwind-devel lttng-ust-devel lttng-ust userspace-rcu-devel userspace-rcu Inform "fetch corefx packages" -fetch_tizen_pkgs aarch64 libcom_err libcom_err-devel zlib zlib-devel libopenssl libopenssl1.1-devel krb5 krb5-devel +fetch_tizen_pkgs aarch64 libcom_err libcom_err-devel zlib zlib-devel libopenssl11 libopenssl1.1-devel krb5 krb5-devel Inform "Initialize standard unified" fetch_tizen_pkgs_init standard unified diff --git a/eng/common/cross/armel/tizen-fetch.sh b/eng/common/cross/armel/tizen-fetch.sh index ed70e0a86..2776cbba4 100755 --- a/eng/common/cross/armel/tizen-fetch.sh +++ b/eng/common/cross/armel/tizen-fetch.sh @@ -51,7 +51,7 @@ if [ ! -d $TMPDIR ]; then mkdir -p $TMPDIR fi -TIZEN_URL=http://download.tizen.org/releases/milestone/tizen +TIZEN_URL=http://download.tizen.org/snapshots/tizen BUILD_XML=build.xml REPOMD_XML=repomd.xml PRIMARY_XML=primary.xml @@ -157,12 +157,11 @@ fetch_tizen_pkgs() Inform "Initialize arm base" fetch_tizen_pkgs_init standard base Inform "fetch common packages" -fetch_tizen_pkgs armv7l gcc glibc glibc-devel libicu libicu-devel libatomic -fetch_tizen_pkgs noarch linux-glibc-devel +fetch_tizen_pkgs armv7l gcc glibc glibc-devel libicu libicu-devel libatomic linux-glibc-devel Inform "fetch coreclr packages" fetch_tizen_pkgs armv7l lldb lldb-devel libgcc libstdc++ libstdc++-devel libunwind libunwind-devel lttng-ust-devel lttng-ust userspace-rcu-devel userspace-rcu Inform "fetch corefx packages" -fetch_tizen_pkgs armv7l libcom_err libcom_err-devel zlib zlib-devel libopenssl libopenssl-devel krb5 krb5-devel libcurl libcurl-devel +fetch_tizen_pkgs armv7l libcom_err libcom_err-devel zlib zlib-devel libopenssl11 libopenssl1.1-devel krb5 krb5-devel Inform "Initialize standard unified" fetch_tizen_pkgs_init standard unified diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index b9fe796f0..256670799 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -15,7 +15,7 @@ if(TARGET_ARCH_NAME STREQUAL "armel") set(CMAKE_SYSTEM_PROCESSOR armv7l) set(TOOLCHAIN "arm-linux-gnueabi") if("$ENV{__DistroRid}" MATCHES "tizen.*") - set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi/6.2.1") + set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi/9.2.0") endif() elseif(TARGET_ARCH_NAME STREQUAL "arm") set(CMAKE_SYSTEM_PROCESSOR armv7l) diff --git a/eng/common/performance/crossgen_perf.proj b/eng/common/performance/crossgen_perf.proj new file mode 100644 index 000000000..3c8c33d70 --- /dev/null +++ b/eng/common/performance/crossgen_perf.proj @@ -0,0 +1,81 @@ + + + + py -3 + $(HelixPreCommands);call %HELIX_CORRELATION_PAYLOAD%\performance\tools\machine-setup.cmd;set PYTHONPATH=%HELIX_WORKITEM_PAYLOAD%\scripts%3B%HELIX_WORKITEM_PAYLOAD% + %HELIX_CORRELATION_PAYLOAD%\artifacts\BenchmarkDotNet.Artifacts + $HELIX_CORRELATION_PAYLOAD + $(BaseDirectory)/performance + + + + $(PerformanceDirectory)/scripts/benchmarks_ci.py --csproj $(PerformanceDirectory)/$(TargetCsproj) + --dotnet-versions $DOTNET_VERSION --cli-source-info args --cli-branch $PERFLAB_BRANCH --cli-commit-sha $PERFLAB_HASH --cli-repository https://github.com/$PERFLAB_REPO --cli-source-timestamp $PERFLAB_BUILDTIMESTAMP + python3 + $(BaseDirectory)/Core_Root/corerun + $(HelixPreCommands);chmod +x $(PerformanceDirectory)/tools/machine-setup.sh;. $(PerformanceDirectory)/tools/machine-setup.sh + $(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts + $(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts_Baseline + $(PerformanceDirectory)/src/tools/ResultsComparer/ResultsComparer.csproj + $(PerformanceDirectory)/tools/dotnet/$(Architecture)/dotnet + %25 + $HELIX_WORKITEM_ROOT/testResults.xml + + + + + %(Identity) + + + + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + + + $(WorkItemDirectory)\ScenarioCorrelation + $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --composite %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\framework-r2r.dll.rsp --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root + 1:00 + + + \ No newline at end of file diff --git a/eng/common/performance/perfhelixpublish.proj b/eng/common/performance/microbenchmarks.proj similarity index 67% rename from eng/common/performance/perfhelixpublish.proj rename to eng/common/performance/microbenchmarks.proj index 272366da9..5c95ef458 100644 --- a/eng/common/performance/perfhelixpublish.proj +++ b/eng/common/performance/microbenchmarks.proj @@ -41,6 +41,10 @@ $HELIX_WORKITEM_ROOT/testResults.xml + + $(CliArguments) --wasm + + --corerun %HELIX_CORRELATION_PAYLOAD%\dotnet-mono\shared\Microsoft.NETCore.App\5.0.0\corerun.exe @@ -137,56 +141,4 @@ 4:00 - - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - - - $(WorkItemDirectory)\ScenarioCorrelation - $(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --composite %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\framework-r2r.dll.rsp --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root - 1:00 - - - \ No newline at end of file diff --git a/eng/common/performance/performance-setup.sh b/eng/common/performance/performance-setup.sh index c87cbf0fc..fd26bdb17 100755 --- a/eng/common/performance/performance-setup.sh +++ b/eng/common/performance/performance-setup.sh @@ -24,6 +24,8 @@ run_from_perf_repo=false use_core_run=true use_baseline_core_run=true using_mono=false +wasm_runtime_loc= +using_wasm=false while (($# > 0)); do lowerI="$(echo $1 | awk '{print tolower($0)}')" @@ -70,7 +72,7 @@ while (($# > 0)); do ;; --kind) kind=$2 - configurations="CompliationMode=$compilation_mode RunKind=$kind" + configurations="CompilationMode=$compilation_mode RunKind=$kind" shift 2 ;; --runcategories) @@ -101,6 +103,10 @@ while (($# > 0)); do mono_dotnet=$2 shift 2 ;; + --wasm) + wasm_runtime_loc=$2 + shift 2 + ;; --compare) compare=true shift 1 @@ -130,6 +136,7 @@ while (($# > 0)); do echo " --runcategories Related to csproj. Categories of benchmarks to run. Defaults to \"coreclr corefx\"" echo " --internal If the benchmarks are running as an official job." echo " --monodotnet Pass the path to the mono dotnet for mono performance testing." + echo " --wasm Path to the unpacked wasm runtime pack." echo "" exit 0 ;; @@ -141,7 +148,7 @@ if [ "$repository" == "dotnet/performance" ] || [ "$repository" == "dotnet-perfo fi if [ -z "$configurations" ]; then - configurations="CompliationMode=$compilation_mode" + configurations="CompilationMode=$compilation_mode" fi if [ -z "$core_root_directory" ]; then @@ -191,11 +198,15 @@ if [[ "$mono_dotnet" != "" ]]; then configurations="$configurations LLVM=$llvm MonoInterpreter=$monointerpreter MonoAOT=$monoaot" fi -if [[ "$monointerpreter" == "true" ]]; then - extra_benchmark_dotnet_arguments="--category-exclusion-filter NoInterpreter" +if [[ "$wasm_runtime_loc" != "" ]]; then + configurations="CompilationMode=wasm;RunKind=micro" fi -common_setup_arguments="--channel master --queue $queue --build-number $build_number --build-configs $configurations --architecture $architecture" +if [[ "$monointerpreter" == "true" ]]; then + extra_benchmark_dotnet_arguments="$extra_benchmark_dotnet_arguments --category-exclusion-filter NoInterpreter" +fi + +common_setup_arguments="--channel master --queue $queue --build-number $build_number --build-configs \"$configurations\" --architecture $architecture" setup_arguments="--repository https://github.com/$repository --branch $branch --get-perf-hash --commit-sha $commit_sha $common_setup_arguments" @@ -217,6 +228,13 @@ else mv $docs_directory $workitem_directory fi +if [[ "$wasm_runtime_loc" != "" ]]; then + using_wasm=true + wasm_dotnet_path=$payload_directory/dotnet-wasm + mv $wasm_runtime_loc $wasm_dotnet_path + extra_benchmark_dotnet_arguments="$extra_benchmark_dotnet_arguments --wasmMainJS \$HELIX_CORRELATION_PAYLOAD/dotnet-wasm/runtime-test.js --wasmEngine /home/helixbot/.jsvu/v8 --customRuntimePack \$HELIX_CORRELATION_PAYLOAD/dotnet-wasm" +fi + if [[ "$mono_dotnet" != "" ]]; then using_mono=true mono_dotnet_path=$payload_directory/dotnet-mono @@ -259,3 +277,4 @@ Write-PipelineSetVariable -name "Kind" -value "$kind" -is_multi_job_variable fal Write-PipelineSetVariable -name "_BuildConfig" -value "$architecture.$kind.$framework" -is_multi_job_variable false Write-PipelineSetVariable -name "Compare" -value "$compare" -is_multi_job_variable false Write-PipelineSetVariable -name "MonoDotnet" -value "$using_mono" -is_multi_job_variable false +Write-PipelineSetVariable -name "WasmDotnet" -value "$using_wasm" -is_multi_job_variable false diff --git a/eng/common/templates/steps/perf-send-to-helix.yml b/eng/common/templates/steps/perf-send-to-helix.yml index b3ea9acf1..e003fe2ef 100644 --- a/eng/common/templates/steps/perf-send-to-helix.yml +++ b/eng/common/templates/steps/perf-send-to-helix.yml @@ -1,5 +1,6 @@ # Please remember to update the documentation if you make changes to these parameters! parameters: + ProjectFile: '' # required -- project file that specifies the helix workitems HelixSource: 'pr/default' # required -- sources must start with pr/, official/, prodcon/, or agent/ HelixType: 'tests/default/' # required -- Helix telemetry which identifies what type of data this is; should include "test" for clarity and must end in '/' HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number @@ -18,9 +19,10 @@ parameters: DisplayNamePrefix: 'Send job to Helix' # optional -- rename the beginning of the displayName of the steps in AzDO condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false + steps: - - powershell: $(Build.SourcesDirectory)\eng\common\msbuild.ps1 $(Build.SourcesDirectory)\eng\common\performance\perfhelixpublish.proj /restore /t:Test /bl:$(Build.SourcesDirectory)\artifacts\log\$env:BuildConfig\SendToHelix.binlog + - powershell: $(Build.SourcesDirectory)\eng\common\msbuild.ps1 $(Build.SourcesDirectory)\eng\common\performance\${{ parameters.ProjectFile }} /restore /t:Test /bl:$(Build.SourcesDirectory)\artifacts\log\$env:BuildConfig\SendToHelix.binlog displayName: ${{ parameters.DisplayNamePrefix }} (Windows) env: BuildConfig: $(_BuildConfig) @@ -42,7 +44,7 @@ steps: SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(${{ parameters.condition }}, eq(variables['Agent.Os'], 'Windows_NT')) continueOnError: ${{ parameters.continueOnError }} - - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/performance/perfhelixpublish.proj /restore /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog + - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/performance/${{ parameters.ProjectFile }} /restore /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog displayName: ${{ parameters.DisplayNamePrefix }} (Unix) env: BuildConfig: $(_BuildConfig) diff --git a/global.json b/global.json index d0003a9bf..e0ff275d7 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20374.1" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20403.5" } } From a12e911d7166fb7dcb0ecbff31d3c36c103e9f34 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 17:51:22 +0000 Subject: [PATCH 115/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.3 (#8114) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20405.22 to 5.0.100-rc.1.20406.3 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20405.22 to 5.0.100-rc.1.20406.3 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 821a05066..d3b194602 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 3804eba75b5c38209b1005f3850f5c58f20767ca - + https://github.com/dotnet/sdk - 91a67aed72f773c08cf9e2e41e67c72cbfb3f8fb + c49fc128e0a45b7f82e06c18e9258f24775981d0 - + https://github.com/dotnet/sdk - 91a67aed72f773c08cf9e2e41e67c72cbfb3f8fb + c49fc128e0a45b7f82e06c18e9258f24775981d0 diff --git a/eng/Versions.props b/eng/Versions.props index 819022d09..54ea0d27b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20405.22 - 5.0.100-rc.1.20405.22 + 5.0.100-rc.1.20406.3 + 5.0.100-rc.1.20406.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 10077b9fec7fda8ff7afe666872aa241610644b1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 18:32:44 +0000 Subject: [PATCH 116/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.4 (#8115) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20406.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.3 to 5.0.100-rc.1.20406.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.3 to 5.0.100-rc.1.20406.4 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20403.1 to 5.0.0-rc.1.20406.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d3b194602..4fa04cb56 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 6865397797d0e0c36d8db45a4ea5f916ce616b9c - + https://github.com/dotnet/templating - 3804eba75b5c38209b1005f3850f5c58f20767ca + cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - c49fc128e0a45b7f82e06c18e9258f24775981d0 + 8deb8898af5029363784f2131148770b439a0cd9 - + https://github.com/dotnet/sdk - c49fc128e0a45b7f82e06c18e9258f24775981d0 + 8deb8898af5029363784f2131148770b439a0cd9 diff --git a/eng/Versions.props b/eng/Versions.props index 54ea0d27b..078d49307 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20403.1 + 5.0.0-rc.1.20406.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.3 - 5.0.100-rc.1.20406.3 + 5.0.100-rc.1.20406.4 + 5.0.100-rc.1.20406.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From b2c9dd60f631e8481a81f215e78348189218ea1b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 20:43:28 +0000 Subject: [PATCH 117/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.5 (#8116) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.4 to 5.0.100-rc.1.20406.5 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.4 to 5.0.100-rc.1.20406.5 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4fa04cb56..6a34f330b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 8deb8898af5029363784f2131148770b439a0cd9 + c231437ee238e444391136d2038ee4e837854da0 - + https://github.com/dotnet/sdk - 8deb8898af5029363784f2131148770b439a0cd9 + c231437ee238e444391136d2038ee4e837854da0 diff --git a/eng/Versions.props b/eng/Versions.props index 078d49307..74173dbfc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.4 - 5.0.100-rc.1.20406.4 + 5.0.100-rc.1.20406.5 + 5.0.100-rc.1.20406.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e7b36ca13bde4da61fac23b692f55396f324d6a1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2020 23:16:32 +0000 Subject: [PATCH 118/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.6 (#8117) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.5 to 5.0.100-rc.1.20406.6 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.5 to 5.0.100-rc.1.20406.6 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6a34f330b..e869bc0c2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - c231437ee238e444391136d2038ee4e837854da0 + 3b0345fd1b9e9f6c241fb77bc3f208c22e7c9ba6 - + https://github.com/dotnet/sdk - c231437ee238e444391136d2038ee4e837854da0 + 3b0345fd1b9e9f6c241fb77bc3f208c22e7c9ba6 diff --git a/eng/Versions.props b/eng/Versions.props index 74173dbfc..9db78076f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.5 - 5.0.100-rc.1.20406.5 + 5.0.100-rc.1.20406.6 + 5.0.100-rc.1.20406.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 67e2904c8e51bedcdc6c30e1c4eb8eb733b779a6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 02:29:15 +0000 Subject: [PATCH 119/183] [master] Update dependencies from dotnet/sdk (#8118) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.6 to 5.0.100-rc.1.20406.11 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.6 to 5.0.100-rc.1.20406.11 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e869bc0c2..e9c71249e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 3b0345fd1b9e9f6c241fb77bc3f208c22e7c9ba6 + 66d070b557d81c9d6bb37b13de494f077ebcf499 - + https://github.com/dotnet/sdk - 3b0345fd1b9e9f6c241fb77bc3f208c22e7c9ba6 + 66d070b557d81c9d6bb37b13de494f077ebcf499 diff --git a/eng/Versions.props b/eng/Versions.props index 9db78076f..50330bc2a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.6 - 5.0.100-rc.1.20406.6 + 5.0.100-rc.1.20406.11 + 5.0.100-rc.1.20406.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c94ec96848daa465caacd6147808d1cddffecef5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 03:10:50 +0000 Subject: [PATCH 120/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.12 (#8119) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.11 to 5.0.100-rc.1.20406.12 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.11 to 5.0.100-rc.1.20406.12 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e9c71249e..dfa55976e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 66d070b557d81c9d6bb37b13de494f077ebcf499 + ae050362b16c176879a636c311f2d9529ccf8d2b - + https://github.com/dotnet/sdk - 66d070b557d81c9d6bb37b13de494f077ebcf499 + ae050362b16c176879a636c311f2d9529ccf8d2b diff --git a/eng/Versions.props b/eng/Versions.props index 50330bc2a..54b18d1da 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.11 - 5.0.100-rc.1.20406.11 + 5.0.100-rc.1.20406.12 + 5.0.100-rc.1.20406.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7693ea2578f5a616726d4333cf425a6155e9dc4a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 03:44:07 +0000 Subject: [PATCH 121/183] Update dependencies from https://github.com/dotnet/sdk build 20200806.13 (#8120) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.12 to 5.0.100-rc.1.20406.13 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.12 to 5.0.100-rc.1.20406.13 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20404.1 to 5.0.0-rc.1.20405.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dfa55976e..ce5b8741d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 5ac22c464706fceed2f7c2d17a488e8211fd3057 + 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 - + https://github.com/dotnet/windowsdesktop - 5ac22c464706fceed2f7c2d17a488e8211fd3057 + 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 - + https://github.com/dotnet/windowsdesktop - 5ac22c464706fceed2f7c2d17a488e8211fd3057 + 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - ae050362b16c176879a636c311f2d9529ccf8d2b + d2d89148185069218ccb13d1c39e2acd9664ada1 - + https://github.com/dotnet/sdk - ae050362b16c176879a636c311f2d9529ccf8d2b + d2d89148185069218ccb13d1c39e2acd9664ada1 https://github.com/dotnet/winforms 5854f1b352559b04cc4969b0ea2241af517fcdfa - + https://github.com/dotnet/wpf - 926354a8e934d2480d68e1df412bcc78ccd931f0 + 973ffc6e2edf170124176e7ebf0a850bdc1b359f diff --git a/eng/Versions.props b/eng/Versions.props index 54b18d1da..b34189c86 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,7 +21,7 @@ - 5.0.0-rc.1.20404.1 + 5.0.0-rc.1.20405.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.12 - 5.0.100-rc.1.20406.12 + 5.0.100-rc.1.20406.13 + 5.0.100-rc.1.20406.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -69,9 +69,9 @@ - 5.0.0-rc.1.20404.1 - 5.0.0-rc.1.20404.1 - 5.0.0-rc.1.20404.1 + 5.0.0-rc.1.20405.1 + 5.0.0-rc.1.20405.1 + 5.0.0-rc.1.20405.1 From 2a8ecf56349806fb4127292e587d2bc4a0b3684a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 08:24:40 +0000 Subject: [PATCH 122/183] Update dependencies from https://github.com/dotnet/sdk build 20200807.3 (#8121) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20406.13 to 5.0.100-rc.1.20407.3 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20406.13 to 5.0.100-rc.1.20407.3 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ce5b8741d..dea01e1df 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - d2d89148185069218ccb13d1c39e2acd9664ada1 + 5235f56e94dd680b22e18585ab888cc202685a65 - + https://github.com/dotnet/sdk - d2d89148185069218ccb13d1c39e2acd9664ada1 + 5235f56e94dd680b22e18585ab888cc202685a65 diff --git a/eng/Versions.props b/eng/Versions.props index b34189c86..411438042 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20406.13 - 5.0.100-rc.1.20406.13 + 5.0.100-rc.1.20407.3 + 5.0.100-rc.1.20407.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8f464211f9abb2f57eda94905ec0571d1cec709b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 11:55:35 +0000 Subject: [PATCH 123/183] Update dependencies from https://github.com/dotnet/test-templates build 20200807.5 (#8122) [master] Update dependencies from dotnet/test-templates - Updates: - Microsoft.DotNet.Test.ProjectTemplates.2.1: from 1.0.2-beta4.20303.2 to 1.0.2-beta4.20407.5 - Microsoft.DotNet.Test.ProjectTemplates.5.0: from 1.0.2-beta4.20303.2 to 1.0.2-beta4.20407.5 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dea01e1df..a8d5574aa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -67,13 +67,13 @@ https://github.com/dotnet/aspnetcore b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/test-templates - 6865397797d0e0c36d8db45a4ea5f916ce616b9c + 345cad2a4a3f7dffd53104cb1aa3d582faafb85d - + https://github.com/dotnet/test-templates - 6865397797d0e0c36d8db45a4ea5f916ce616b9c + 345cad2a4a3f7dffd53104cb1aa3d582faafb85d https://github.com/dotnet/templating diff --git a/eng/Versions.props b/eng/Versions.props index 411438042..ff691908e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -29,7 +29,7 @@ - 1.0.2-beta4.20303.2 + 1.0.2-beta4.20407.5 @@ -113,7 +113,7 @@ 1.5.3 1.0.2-beta3 $(MicrosoftDotNetCommonItemTemplates21PackageVersion) - 1.0.2-beta4.20303.2 + 1.0.2-beta4.20407.5 2.1.14 From 3864ea978a469befbb6d995aaa1486e8c3b64d02 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 16:24:27 +0000 Subject: [PATCH 124/183] Update dependencies from https://github.com/dotnet/sdk build 20200807.4 (#8124) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20407.3 to 5.0.100-rc.1.20407.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20407.3 to 5.0.100-rc.1.20407.4 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a8d5574aa..f90bdf311 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 5235f56e94dd680b22e18585ab888cc202685a65 + 0252ae4e4c96fa0c6d238f54d1da9d30875d00f8 - + https://github.com/dotnet/sdk - 5235f56e94dd680b22e18585ab888cc202685a65 + 0252ae4e4c96fa0c6d238f54d1da9d30875d00f8 diff --git a/eng/Versions.props b/eng/Versions.props index ff691908e..c0be7301a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20407.3 - 5.0.100-rc.1.20407.3 + 5.0.100-rc.1.20407.4 + 5.0.100-rc.1.20407.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3373dec04baf9aae493909f2e8d17c7818c9b944 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 16:56:21 +0000 Subject: [PATCH 125/183] Update dependencies from https://github.com/dotnet/sdk build 20200807.5 (#8125) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20407.4 to 5.0.100-rc.1.20407.5 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20407.4 to 5.0.100-rc.1.20407.5 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f90bdf311..949fc54e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 0252ae4e4c96fa0c6d238f54d1da9d30875d00f8 + 7dc694d54b15bdad6818964dfc96b523e2c720de - + https://github.com/dotnet/sdk - 0252ae4e4c96fa0c6d238f54d1da9d30875d00f8 + 7dc694d54b15bdad6818964dfc96b523e2c720de diff --git a/eng/Versions.props b/eng/Versions.props index c0be7301a..d7a3ebfe9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20407.4 - 5.0.100-rc.1.20407.4 + 5.0.100-rc.1.20407.5 + 5.0.100-rc.1.20407.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 6dd0eaf86fe5b65e4f4ab97b6690e922f1bc95cf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 18:56:24 +0000 Subject: [PATCH 126/183] Update dependencies from https://github.com/dotnet/sdk build 20200807.6 (#8127) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20407.5 to 5.0.100-rc.1.20407.6 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20407.5 to 5.0.100-rc.1.20407.6 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 949fc54e4..927c9de63 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating cc389d808931f6629c20552d324e781a877addcd - + https://github.com/dotnet/sdk - 7dc694d54b15bdad6818964dfc96b523e2c720de + bf1fa73337c18d27394c818b10be1da05bf1026f - + https://github.com/dotnet/sdk - 7dc694d54b15bdad6818964dfc96b523e2c720de + bf1fa73337c18d27394c818b10be1da05bf1026f diff --git a/eng/Versions.props b/eng/Versions.props index d7a3ebfe9..42a78e972 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20407.5 - 5.0.100-rc.1.20407.5 + 5.0.100-rc.1.20407.6 + 5.0.100-rc.1.20407.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From b21096b25a04fa09f7b174e43335707842785395 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2020 20:23:41 +0000 Subject: [PATCH 127/183] Update dependencies from https://github.com/dotnet/sdk build 20200807.9 (#8128) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20406.1 to 5.0.0-rc.1.20407.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20407.6 to 5.0.100-rc.1.20407.9 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20407.6 to 5.0.100-rc.1.20407.9 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20406.1 to 5.0.0-rc.1.20407.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 927c9de63..54c27bf9c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 345cad2a4a3f7dffd53104cb1aa3d582faafb85d - + https://github.com/dotnet/templating - cc389d808931f6629c20552d324e781a877addcd + de8e4533a04456bf079a88866dedd98339cd768b - + https://github.com/dotnet/sdk - bf1fa73337c18d27394c818b10be1da05bf1026f + 5550ac2fabb8bfae46d6a4de884bfbad71bbad99 - + https://github.com/dotnet/sdk - bf1fa73337c18d27394c818b10be1da05bf1026f + 5550ac2fabb8bfae46d6a4de884bfbad71bbad99 diff --git a/eng/Versions.props b/eng/Versions.props index 42a78e972..74a146015 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20406.1 + 5.0.0-rc.1.20407.1 @@ -49,8 +49,8 @@ - 5.0.100-rc.1.20407.6 - 5.0.100-rc.1.20407.6 + 5.0.100-rc.1.20407.9 + 5.0.100-rc.1.20407.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 1e02070797ef5a244c10db4a11cb23ce55b2aa51 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2020 13:01:14 +0000 Subject: [PATCH 128/183] Update dependencies from https://github.com/dotnet/arcade build 20200807.3 (#8131) [master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20403.5 to 5.0.0-beta.20407.3 --- eng/Version.Details.xml | 4 ++-- eng/common/SetupNugetSources.ps1 | 17 +++++++++++++++++ eng/common/SetupNugetSources.sh | 23 +++++++++++++++++++++-- global.json | 2 +- 4 files changed, 41 insertions(+), 5 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 54c27bf9c..0c232d869 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -104,9 +104,9 @@ - + https://github.com/dotnet/arcade - 7385e2722b9fa517314aa5db1fa598a8d417b3c7 + ea8f37e8982dc22022b33c5e151081ad04d923a6 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index dc2217812..bb3617133 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -11,6 +11,8 @@ # See example YAML call for this script below. Note the use of the variable `$(dn-bot-dnceng-artifact-feeds-rw)` # from the AzureDevOps-Artifact-Feeds-Pats variable group. # +# Any disabledPackageSources entries which start with "darc-int" will be re-enabled as part of this script executing +# # - task: PowerShell@2 # displayName: Setup Private Feeds Credentials # condition: eq(variables['Agent.OS'], 'Windows_NT') @@ -94,6 +96,14 @@ function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $Passw } } +function EnablePrivatePackageSources($DisabledPackageSources) { + $maestroPrivateSources = $DisabledPackageSources.SelectNodes("add[contains(@key,'darc-int')]") + ForEach ($DisabledPackageSource in $maestroPrivateSources) { + Write-Host "`tEnsuring private source '$($DisabledPackageSource.key)' is enabled" + $DisabledPackageSource.SetAttribute("value", "false") + } +} + if (!(Test-Path $ConfigFile -PathType Leaf)) { Write-PipelineTelemetryError -Category 'Build' -Message "Eng/common/SetupNugetSources.ps1 returned a non-zero exit code. Couldn't find the NuGet config file: $ConfigFile" ExitWithExitCode 1 @@ -123,6 +133,13 @@ if ($creds -eq $null) { $doc.DocumentElement.AppendChild($creds) | Out-Null } +# Check for disabledPackageSources; we'll enable any darc-int ones we find there +$disabledSources = $doc.DocumentElement.SelectSingleNode("disabledPackageSources") +if ($disabledSources -ne $null) { + Write-Host "Checking for any darc-int disabled package sources in the disabledPackageSources node" + EnablePrivatePackageSources -DisabledPackageSources $disabledSources +} + $userName = "dn-bot" # Insert credential nodes for Maestro's private feeds diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index f33e37711..ef3338295 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -13,6 +13,8 @@ # See example YAML call for this script below. Note the use of the variable `$(dn-bot-dnceng-artifact-feeds-rw)` # from the AzureDevOps-Artifact-Feeds-Pats variable group. # +# Any disabledPackageSources entries which start with "darc-int" will be re-enabled as part of this script executing. +# # - task: Bash@3 # displayName: Setup Private Feeds Credentials # inputs: @@ -63,7 +65,7 @@ if [ "$?" != "0" ]; then ConfigNodeHeader="" PackageSourcesTemplate="${TB}${NL}${TB}" - sed -i.bak "s|$ConfigNodeHeader|$ConfigNodeHeader${NL}$PackageSourcesTemplate|" NuGet.config + sed -i.bak "s|$ConfigNodeHeader|$ConfigNodeHeader${NL}$PackageSourcesTemplate|" $ConfigFile fi # Ensure there is a ... section. @@ -74,7 +76,7 @@ if [ "$?" != "0" ]; then PackageSourcesNodeFooter="" PackageSourceCredentialsTemplate="${TB}${NL}${TB}" - sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourcesNodeFooter${NL}$PackageSourceCredentialsTemplate|" NuGet.config + sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourcesNodeFooter${NL}$PackageSourceCredentialsTemplate|" $ConfigFile fi PackageSources=() @@ -146,3 +148,20 @@ for FeedName in ${PackageSources[@]} ; do sed -i.bak "s|$PackageSourceCredentialsNodeFooter|$NewCredential${NL}$PackageSourceCredentialsNodeFooter|" $ConfigFile fi done + +# Re-enable any entries in disabledPackageSources where the feed name contains darc-int +grep -i "" $ConfigFile +if [ "$?" == "0" ]; then + DisabledDarcIntSources=() + echo "Re-enabling any disabled \"darc-int\" package sources in $ConfigFile" + DisabledDarcIntSources+=$(grep -oh '"darc-int-[^"]*" value="true"' $ConfigFile | tr -d '"') + for DisabledSourceName in ${DisabledDarcIntSources[@]} ; do + if [[ $DisabledSourceName == darc-int* ]] + then + OldDisableValue="add key=\"$DisabledSourceName\" value=\"true\"" + NewDisableValue="add key=\"$DisabledSourceName\" value=\"false\"" + sed -i.bak "s|$OldDisableValue|$NewDisableValue|" $ConfigFile + echo "Neutralized disablePackageSources entry for '$DisabledSourceName'" + fi + done +fi diff --git a/global.json b/global.json index e0ff275d7..270649e49 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20403.5" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20407.3" } } From 06e4f20fb9e4d832264e0e8ccabe25f3458c7e73 Mon Sep 17 00:00:00 2001 From: Jacques Eloff Date: Tue, 11 Aug 2020 14:23:35 -0700 Subject: [PATCH 129/183] Ensure rzc.dll and PresentationBuildTasks.dll are signed --- src/redist/targets/Signing.targets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/redist/targets/Signing.targets b/src/redist/targets/Signing.targets index f2bb0e708..8a19cab96 100644 --- a/src/redist/targets/Signing.targets +++ b/src/redist/targets/Signing.targets @@ -108,6 +108,8 @@ $(SdkOutputDirectory)**/datacollector.exe; $(SdkOutputDirectory)**/MSBuild.dll; $(SdkOutputDirectory)**/MSBuild.resources.dll; + $(SdkOutputDirectory)**/PresentationBuildTasks.dll; + $(SdkOutputDirectory)**/rzc.dll; $(SdkOutputDirectory)**/testhost.dll; $(SdkOutputDirectory)**/testhost.exe; $(SdkOutputDirectory)**/testhost.x86.exe; From 8835b8ca15e325441e17e218a4f7763cb69e0eca Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2020 14:59:59 +0000 Subject: [PATCH 130/183] Update dependencies from https://github.com/dotnet/arcade build 20200811.8 (#8153) [master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20407.3 to 5.0.0-beta.20411.8 --- eng/Version.Details.xml | 4 ++-- eng/common/sdk-task.ps1 | 1 + global.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0c232d869..4765c8c23 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -104,9 +104,9 @@ - + https://github.com/dotnet/arcade - ea8f37e8982dc22022b33c5e151081ad04d923a6 + ecec08a0eebbd92bb9538e351d475582551d9092 diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 32ad5c7e9..e159c6f18 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -42,6 +42,7 @@ function Build([string]$target) { /p:Configuration=$configuration ` /p:RepoRoot=$RepoRoot ` /p:BaseIntermediateOutputPath=$outputPath ` + /v:$verbosity ` @properties } diff --git a/global.json b/global.json index 270649e49..05b5a2c83 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20407.3" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20411.8" } } From 99ee62375d402989f3baca4ef5f30f60cb0b51ab Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 13 Aug 2020 09:59:02 -0700 Subject: [PATCH 131/183] Update min VS version in installer info --- .../targets/packaging/windows/clisdk/LCID/1028/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1029/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1031/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1033/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1036/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1040/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1041/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1042/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1045/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1046/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1049/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/1055/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/2052/bundle.wxl | 2 +- .../targets/packaging/windows/clisdk/LCID/3082/bundle.wxl | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1028/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1028/bundle.wxl index 7e012fb66..004138691 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1028/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1028/bundle.wxl @@ -75,7 +75,7 @@ 安裝附註 安裝程序期間將會執行命令,加快專案還原速度並啟用離線存取。最多需要一分鐘的時間完成。 - 若預計要併用 Visual Studio 與 .NET 5.0,需要 Visual Studio 2019 16.6 或更新版本。<A HREF="https://aka.ms/dotnet5-release-notes">深入了解</A>。 + 若預計要併用 Visual Studio 與 .NET 5.0,需要 Visual Studio 2019 16.8 或更新版本。<A HREF="https://aka.ms/dotnet5-release-notes">深入了解</A>。 按一下 [\[]安裝[\[] 即表示您同意下列條款。 diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1029/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1029/bundle.wxl index cbb38ce5a..d190f3138 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1029/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1029/bundle.wxl @@ -75,7 +75,7 @@ Zdroje informací Poznámka k instalaci Během procesu instalace se spustí příkaz, který zlepší rychlost obnovení projektu a povolí offline přístup. Akce se dokončí přibližně za minutu. - Pokud plánujete používat .NET 5.0 se sadou Visual Studio, potřebujete Visual Studio 2019 16.6 nebo novější. <A HREF="https://aka.ms/dotnet5-release-notes">Další informace</A> + Pokud plánujete používat .NET 5.0 se sadou Visual Studio, potřebujete Visual Studio 2019 16.8 nebo novější. <A HREF="https://aka.ms/dotnet5-release-notes">Další informace</A> Kliknutím na Nainstalovat vyjadřujete souhlas s následujícími podmínkami. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1031/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1031/bundle.wxl index 6204865e6..fb193fb93 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1031/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1031/bundle.wxl @@ -75,7 +75,7 @@ Ressourcen Installationshinweis Während des Installationsvorgangs wird ein Befehl ausgeführt, durch den die Geschwindigkeit der Projektwiederherstellung verbessert und der Offlinezugriff aktiviert wird. Der Vorgang dauert bis zu einer Minute. - Wenn Sie .NET 5.0 mit Visual Studio verwenden möchten, ist Visual Studio 2019 16.6 oder höher erforderlich. <A HREF="https://aka.ms/dotnet5-release-notes">Erfahren Sie mehr</A>. + Wenn Sie .NET 5.0 mit Visual Studio verwenden möchten, ist Visual Studio 2019 16.8 oder höher erforderlich. <A HREF="https://aka.ms/dotnet5-release-notes">Erfahren Sie mehr</A>. Durch Klicken auf "Installieren" stimmen Sie den nachstehenden Bedingungen zu. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1033/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1033/bundle.wxl index 1b31893d6..2e3e86df2 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1033/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1033/bundle.wxl @@ -75,7 +75,7 @@ Resources Installation note A command will be run during the install process that will improve project restore speed and enable offline access. It will take up to a minute to complete. - If you plan to use .NET 5.0 with Visual Studio, Visual Studio 2019 16.6 or newer is required. <A HREF="https://aka.ms/dotnet5-release-notes">Learn More</A>. + If you plan to use .NET 5.0 with Visual Studio, Visual Studio 2019 16.8 or newer is required. <A HREF="https://aka.ms/dotnet5-release-notes">Learn More</A>. By clicking Install, you agree to the following terms. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1036/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1036/bundle.wxl index a89057cdc..38cc06a3d 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1036/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1036/bundle.wxl @@ -75,7 +75,7 @@ Ressources Note d'installation Une commande va être exécutée pendant le processus d'installation, ce qui va améliorer la vitesse de restauration du projet et permettre l'accès hors connexion. L'opération va prendre environ une minute. - Si vous comptez utiliser .NET 5.0 avec Visual Studio, Visual Studio 2019 16.6 ou version ultérieure est nécessaire. <A HREF="https://aka.ms/dotnet5-release-notes">En savoir plus</A>. + Si vous comptez utiliser .NET 5.0 avec Visual Studio, Visual Studio 2019 16.8 ou version ultérieure est nécessaire. <A HREF="https://aka.ms/dotnet5-release-notes">En savoir plus</A>. En cliquant sur Installer, vous acceptez les conditions suivantes. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1040/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1040/bundle.wxl index d2d8d5a74..4e9dc4b4a 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1040/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1040/bundle.wxl @@ -75,7 +75,7 @@ Risorse Nota sull'installazione Durante il processo di installazione verrà eseguito un comando che migliorerà la velocità di ripristino del progetto e abiliterà l'accesso offline. Il completamento del comando richiederà un minuto. - Se si intende usare .NET 5.0 con Visual Studio, è richiesto Visual Studio 2019 16.6 o versione successiva. <A HREF="https://aka.ms/dotnet5-release-notes">Altre informazioni</A>. + Se si intende usare .NET 5.0 con Visual Studio, è richiesto Visual Studio 2019 16.8 o versione successiva. <A HREF="https://aka.ms/dotnet5-release-notes">Altre informazioni</A>. Facendo clic su Installa, si accettano le condizioni seguenti. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1041/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1041/bundle.wxl index 0a681a0b5..6bdfe68ff 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1041/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1041/bundle.wxl @@ -75,7 +75,7 @@ インストール メモ コマンドはインストール処理中に実行されるので、プロジェクトの復元速度が向上し、オフラインでアクセスできます。完了するまでに最大 1 分かかります。 - .NET 5.0 を Visual Studio と共に使用する場合は、Visual Studio 2019 16.6 以降が必要です。<A HREF="https://aka.ms/dotnet5-release-notes">詳細情報</A>。 + .NET 5.0 を Visual Studio と共に使用する場合は、Visual Studio 2019 16.8 以降が必要です。<A HREF="https://aka.ms/dotnet5-release-notes">詳細情報</A>。 [インストール] をクリックすると、次の条項に同意したものと見なされます。 diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1042/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1042/bundle.wxl index 856fd5ef5..99a59349c 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1042/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1042/bundle.wxl @@ -75,7 +75,7 @@ 설치 정보 프로젝트 복원 속도를 향상하고 오프라인 액세스를 사용할 수 있도록 하는 설치 프로세스 중 명령이 실행됩니다. 완료하는 데 최대 1분이 걸립니다. - Visual Studio와 함께 .NET 5.0을 사용하려면 Visual Studio 2019 16.6 이상이 필요합니다. <A HREF="https://aka.ms/dotnet5-release-notes">자세한 정보</A>. + Visual Studio와 함께 .NET 5.0을 사용하려면 Visual Studio 2019 16.8 이상이 필요합니다. <A HREF="https://aka.ms/dotnet5-release-notes">자세한 정보</A>. [설치]를 클릭하면 다음 사용 약관에 동의하는 것입니다. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1045/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1045/bundle.wxl index 4659ee8f0..c22a5a48e 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1045/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1045/bundle.wxl @@ -75,7 +75,7 @@ Zasoby Uwaga dotycząca instalacji W trakcie procesu instalacji zostanie uruchomione polecenie, które zwiększy szybkość przywracania projektu i umożliwi dostęp do trybu offline. Zajmie to maksymalnie minutę. - Jeśli planujesz używać platformy .NET 5.0 z programem Visual Studio, wymagany jest program Visual Studio 2019 16.6 lub nowszy. <A HREF="https://aka.ms/dotnet5-release-notes">Dowiedz się więcej</A>. + Jeśli planujesz używać platformy .NET 5.0 z programem Visual Studio, wymagany jest program Visual Studio 2019 16.8 lub nowszy. <A HREF="https://aka.ms/dotnet5-release-notes">Dowiedz się więcej</A>. Klikając pozycję Zainstaluj, wyrażasz zgodę na następujące warunki. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1046/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1046/bundle.wxl index 82efc3ac3..c405afb11 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1046/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1046/bundle.wxl @@ -75,7 +75,7 @@ Recursos Nota de instalação Um comando será executado durante o processo de instalação que melhorará a velocidade de restauração do projeto e habilitará o acesso offline. Isso levará até um minuto para ser concluído. - Se você planeja usar o .NET 5.0 com o Visual Studio, é necessário usar o Visual Studio 2019 16.6 ou mais recente. <A HREF="https://aka.ms/dotnet5-release-notes">Saiba mais</A>. + Se você planeja usar o .NET 5.0 com o Visual Studio, é necessário usar o Visual Studio 2019 16.8 ou mais recente. <A HREF="https://aka.ms/dotnet5-release-notes">Saiba mais</A>. Ao clicar em instalar, você concorda com os termos a seguir. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1049/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1049/bundle.wxl index ddd9fbc44..e79c2aa1f 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1049/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1049/bundle.wxl @@ -75,7 +75,7 @@ Примечание по установке В процессе установки будет выполнена команда, которая увеличит скорость восстановления проекта и обеспечит автономный доступ. Выполнение займет до минуты. - Если вы планируете использовать .NET 5.0 с Visual Studio, требуется Visual Studio 2019 версии 16.6 или более поздней. <A HREF="https://aka.ms/dotnet5-release-notes">Дополнительные сведения</A>. + Если вы планируете использовать .NET 5.0 с Visual Studio, требуется Visual Studio 2019 версии 16.8 или более поздней. <A HREF="https://aka.ms/dotnet5-release-notes">Дополнительные сведения</A>. Нажимая кнопку "Установить", вы принимаете следующие условия. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/1055/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/1055/bundle.wxl index dd0b3990b..f80a96737 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/1055/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/1055/bundle.wxl @@ -75,7 +75,7 @@ Kaynaklar Yükleme notu Yükleme işlemi sırasında, proje geri yükleme hızını artıran ve çevrimdışı erişimi etkinleştiren bir komut çalıştırılır. Tamamlanması bir dakikanızı alır. - Visual Studio ile .NET 5.0 kullanmayı planlıyorsanız Visual Studio 2019 16.6 veya daha yeni bir sürüm gerekir. <A HREF="https://aka.ms/dotnet5-release-notes">Daha Fazla Bilgi</A>. + Visual Studio ile .NET 5.0 kullanmayı planlıyorsanız Visual Studio 2019 16.8 veya daha yeni bir sürüm gerekir. <A HREF="https://aka.ms/dotnet5-release-notes">Daha Fazla Bilgi</A>. Yükle'ye tıklayarak aşağıdaki koşulları kabul etmiş olursunuz. diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/2052/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/2052/bundle.wxl index e8a496d0c..d3e6e3568 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/2052/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/2052/bundle.wxl @@ -75,7 +75,7 @@ 安装说明 将在要提升项目还原速度并实现脱机访问的安装进程期间运行命令。此操作最多 1 分钟即可完成。 - 如果计划结合使用 .NET 5.0 和 Visual Studio,需要 Visual Studio 2019 16.6 或更高版本。<A HREF="https://aka.ms/dotnet5-release-notes">了解详细信息</A>。 + 如果计划结合使用 .NET 5.0 和 Visual Studio,需要 Visual Studio 2019 16.8 或更高版本。<A HREF="https://aka.ms/dotnet5-release-notes">了解详细信息</A>。 单击“安装”即表示你同意以下条款。 diff --git a/src/redist/targets/packaging/windows/clisdk/LCID/3082/bundle.wxl b/src/redist/targets/packaging/windows/clisdk/LCID/3082/bundle.wxl index 961ff139b..d70eaa727 100644 --- a/src/redist/targets/packaging/windows/clisdk/LCID/3082/bundle.wxl +++ b/src/redist/targets/packaging/windows/clisdk/LCID/3082/bundle.wxl @@ -75,7 +75,7 @@ Recursos Nota de instalación Se ejecutará un comando durante el proceso de instalación que mejorará la velocidad de restauración del proyecto y permitirá el acceso sin conexión. La operación tardará hasta un minuto en completarse. - Si tiene previsto usar .NET 5.0 con Visual Studio, se requiere Visual Studio 2019 16.6 o una versión más reciente. <A HREF="https://aka.ms/dotnet5-release-notes">Más información</A>. + Si tiene previsto usar .NET 5.0 con Visual Studio, se requiere Visual Studio 2019 16.8 o una versión más reciente. <A HREF="https://aka.ms/dotnet5-release-notes">Más información</A>. Al hacer clic en Instalar, acepta los términos siguientes. From e4ad1969d346798b74290f298ef4d1f4fd713535 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 13 Aug 2020 12:51:33 -0700 Subject: [PATCH 132/183] Fixup license paths (#8160) dummyeula.rtf is in the same location as the PS scripts --- src/redist/targets/packaging/windows/clisdk/generatemsi.ps1 | 2 +- .../packaging/windows/clisdk/generatesdkplaceholdermsi.ps1 | 2 +- .../targets/packaging/windows/clisdk/generatetemplatesmsi.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/redist/targets/packaging/windows/clisdk/generatemsi.ps1 b/src/redist/targets/packaging/windows/clisdk/generatemsi.ps1 index 3920119b3..6939eb990 100644 --- a/src/redist/targets/packaging/windows/clisdk/generatemsi.ps1 +++ b/src/redist/targets/packaging/windows/clisdk/generatemsi.ps1 @@ -61,7 +61,7 @@ function RunCandle $candleOutput = .\candle.exe -nologo ` -dDotnetSrc="$inputDir" ` - -dMicrosoftEula="$PSScriptRoot\clisdk\dummyeula.rtf" ` + -dMicrosoftEula="$PSScriptRoot\dummyeula.rtf" ` -dProductMoniker="$ProductMoniker" ` -dBuildVersion="$DotnetMSIVersion" ` -dSDKBundleVersion="$SDKBundleVersion" ` diff --git a/src/redist/targets/packaging/windows/clisdk/generatesdkplaceholdermsi.ps1 b/src/redist/targets/packaging/windows/clisdk/generatesdkplaceholdermsi.ps1 index 9a307e01c..4461b0cc9 100644 --- a/src/redist/targets/packaging/windows/clisdk/generatesdkplaceholdermsi.ps1 +++ b/src/redist/targets/packaging/windows/clisdk/generatesdkplaceholdermsi.ps1 @@ -22,7 +22,7 @@ function RunCandle $candleOutput = .\candle.exe -nologo ` -dDotnetSrc="$inputDir" ` - -dMicrosoftEula="$PSScriptRoot\clisdk\dummyeula.rtf" ` + -dMicrosoftEula="$PSScriptRoot\dummyeula.rtf" ` -dProductMoniker="$ProductMoniker" ` -dBuildVersion="$DotnetMSIVersion" ` -dSDKBundleVersion="$SDKBundleVersion" ` diff --git a/src/redist/targets/packaging/windows/clisdk/generatetemplatesmsi.ps1 b/src/redist/targets/packaging/windows/clisdk/generatetemplatesmsi.ps1 index 7947d20a4..151767c7e 100644 --- a/src/redist/targets/packaging/windows/clisdk/generatetemplatesmsi.ps1 +++ b/src/redist/targets/packaging/windows/clisdk/generatetemplatesmsi.ps1 @@ -54,7 +54,7 @@ function RunCandle $candleOutput = .\candle.exe -nologo ` -dDotnetSrc="$inputDir" ` - -dMicrosoftEula="$PSScriptRoot\clisdk\dummyeula.rtf" ` + -dMicrosoftEula="$PSScriptRoot\dummyeula.rtf" ` -dProductMoniker="$ProductMoniker" ` -dBuildVersion="$DotnetMSIVersion" ` -dSDKBundleVersion="$SDKBundleVersion" ` From eab792a69bec8356577e417a15439ff1c55c34dd Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Fri, 14 Aug 2020 08:00:02 -0700 Subject: [PATCH 133/183] Remove fake dependency edge for WCF (#8154) Like extensions or additional SDKs, when we want to ship wcf, we just add another BAR build id to the list of IDs to send to the staging pipeline --- eng/Version.Details.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4765c8c23..be34b1230 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -96,12 +96,6 @@ https://github.com/dotnet/wpf 973ffc6e2edf170124176e7ebf0a850bdc1b359f - - - - https://github.com/dotnet/wcf - d08484b1422ee45195adff528d6c65c7c788d7fa - From 168386d04d788ea4841e68cf12773d42be5aaec6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2020 16:55:04 +0000 Subject: [PATCH 134/183] Update dependencies from https://github.com/dotnet/arcade build 20200817.6 (#8185) [master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20411.8 to 5.0.0-beta.20417.6 --- eng/Version.Details.xml | 4 +-- eng/common/cross/toolchain.cmake | 4 ++- .../templates/post-build/post-build.yml | 26 +++++++++---------- global.json | 2 +- 4 files changed, 19 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index be34b1230..615ccecb3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -98,9 +98,9 @@ - + https://github.com/dotnet/arcade - ecec08a0eebbd92bb9538e351d475582551d9092 + 83fda4b3f6d93e713749fd1b27c4a6d40b118b13 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index 256670799..137736c0a 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -19,7 +19,9 @@ if(TARGET_ARCH_NAME STREQUAL "armel") endif() elseif(TARGET_ARCH_NAME STREQUAL "arm") set(CMAKE_SYSTEM_PROCESSOR armv7l) - if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/armv6-alpine-linux-musleabihf) + if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/armv7-alpine-linux-musleabihf) + set(TOOLCHAIN "armv7-alpine-linux-musleabihf") + elseif(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/armv6-alpine-linux-musleabihf) set(TOOLCHAIN "armv6-alpine-linux-musleabihf") else() set(TOOLCHAIN "arm-linux-gnueabihf") diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 0e79a546b..e814d5e03 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -39,6 +39,7 @@ parameters: NetEngLatestChannelId: 2 NetEngValidationChannelId: 9 NetDev5ChannelId: 131 + NetDev6ChannelId: 1296 GeneralTestingChannelId: 529 NETCoreToolingDevChannelId: 548 NETCoreToolingReleaseChannelId: 549 @@ -46,7 +47,6 @@ parameters: NETCoreExperimentalChannelId: 562 NetEngServicesIntChannelId: 678 NetEngServicesProdChannelId: 679 - Net5Preview7ChannelId: 1065 Net5Preview8ChannelId: 1155 Net5RC1ChannelId: 1157 NetCoreSDK313xxChannelId: 759 @@ -115,7 +115,7 @@ stages: inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/check-channel-consistency.ps1 arguments: -PromoteToChannels "$(TargetChannels)" - -AvailableChannelIds ${{parameters.NetEngLatestChannelId}},${{parameters.NetEngValidationChannelId}},${{parameters.NetDev5ChannelId}},${{parameters.GeneralTestingChannelId}},${{parameters.NETCoreToolingDevChannelId}},${{parameters.NETCoreToolingReleaseChannelId}},${{parameters.NETInternalToolingChannelId}},${{parameters.NETCoreExperimentalChannelId}},${{parameters.NetEngServicesIntChannelId}},${{parameters.NetEngServicesProdChannelId}},${{parameters.Net5Preview7ChannelId}},${{parameters.Net5Preview8ChannelId}},${{parameters.Net5RC1ChannelId}},${{parameters.NetCoreSDK313xxChannelId}},${{parameters.NetCoreSDK313xxInternalChannelId}},${{parameters.NetCoreSDK314xxChannelId}},${{parameters.NetCoreSDK314xxInternalChannelId}},${{parameters.VS166ChannelId}},${{parameters.VS167ChannelId}},${{parameters.VS168ChannelId}},${{parameters.VSMasterChannelId}} + -AvailableChannelIds ${{parameters.NetEngLatestChannelId}},${{parameters.NetEngValidationChannelId}},${{parameters.NetDev5ChannelId}},${{parameters.NetDev6ChannelId}},${{parameters.GeneralTestingChannelId}},${{parameters.NETCoreToolingDevChannelId}},${{parameters.NETCoreToolingReleaseChannelId}},${{parameters.NETInternalToolingChannelId}},${{parameters.NETCoreExperimentalChannelId}},${{parameters.NetEngServicesIntChannelId}},${{parameters.NetEngServicesProdChannelId}},${{parameters.Net5Preview8ChannelId}},${{parameters.Net5RC1ChannelId}},${{parameters.NetCoreSDK313xxChannelId}},${{parameters.NetCoreSDK313xxInternalChannelId}},${{parameters.NetCoreSDK314xxChannelId}},${{parameters.NetCoreSDK314xxInternalChannelId}},${{parameters.VS166ChannelId}},${{parameters.VS167ChannelId}},${{parameters.VS168ChannelId}},${{parameters.VSMasterChannelId}} - job: displayName: NuGet Validation @@ -276,13 +276,13 @@ stages: dependsOn: ${{ parameters.publishDependsOn }} publishInstallersAndChecksums: ${{ parameters.publishInstallersAndChecksums }} symbolPublishingAdditionalParameters: ${{ parameters.symbolPublishingAdditionalParameters }} - stageName: 'Net5_Preview7_Publish' - channelName: '.NET 5 Preview 7' - akaMSChannelName: 'net5/preview7' - channelId: ${{ parameters.Net5Preview7ChannelId }} - transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json' - shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' - symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' + stageName: 'NetCore_Dev6_Publish' + channelName: '.NET 6 Dev' + akaMSChannelName: 'net6/dev' + channelId: ${{ parameters.NetDev6ChannelId }} + transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6-transport/nuget/v3/index.json' + shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json' + symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6-symbols/nuget/v3/index.json' - template: \eng\common\templates\post-build\channels\generic-internal-channel.yml parameters: @@ -298,7 +298,7 @@ stages: shippingFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal/nuget/v3/index.json' symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-symbols/nuget/v3/index.json' - - template: \eng\common\templates\post-build\channels\generic-internal-channel.yml + - template: \eng\common\templates\post-build\channels\generic-public-channel.yml parameters: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} dependsOn: ${{ parameters.publishDependsOn }} @@ -308,9 +308,9 @@ stages: channelName: '.NET 5 RC 1' akaMSChannelName: 'net5/rc1' channelId: ${{ parameters.Net5RC1ChannelId }} - transportFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v3/index.json' - shippingFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal/nuget/v3/index.json' - symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-symbols/nuget/v3/index.json' + transportFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json' + shippingFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json' + symbolsFeed: 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-symbols/nuget/v3/index.json' - template: \eng\common\templates\post-build\channels\generic-public-channel.yml parameters: diff --git a/global.json b/global.json index 05b5a2c83..30b45e126 100644 --- a/global.json +++ b/global.json @@ -8,6 +8,6 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20411.8" + "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20417.6" } } From eacb5f488d101bd9c7feaf619a26a09e8e13dc87 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2020 16:38:25 +0000 Subject: [PATCH 135/183] Update dependencies from https://github.com/dotnet/test-templates build 20200819.1 (#8193) [master] Update dependencies from dotnet/test-templates - Updates: - Microsoft.DotNet.Test.ProjectTemplates.2.1: from 1.0.2-beta4.20407.5 to 1.0.2-beta4.20419.1 - Microsoft.DotNet.Test.ProjectTemplates.5.0: from 1.0.2-beta4.20407.5 to 1.0.2-beta4.20419.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 615ccecb3..fe8340e65 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -67,13 +67,13 @@ https://github.com/dotnet/aspnetcore b052c4fcc200633443ccfedb0007e03b4b2340a8 - + https://github.com/dotnet/test-templates - 345cad2a4a3f7dffd53104cb1aa3d582faafb85d + 8ff52387853520863ad09a84b23c63ac5a471886 - + https://github.com/dotnet/test-templates - 345cad2a4a3f7dffd53104cb1aa3d582faafb85d + 8ff52387853520863ad09a84b23c63ac5a471886 https://github.com/dotnet/templating diff --git a/eng/Versions.props b/eng/Versions.props index 74a146015..f0c54c826 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -29,7 +29,7 @@ - 1.0.2-beta4.20407.5 + 1.0.2-beta4.20419.1 @@ -113,7 +113,7 @@ 1.5.3 1.0.2-beta3 $(MicrosoftDotNetCommonItemTemplates21PackageVersion) - 1.0.2-beta4.20407.5 + 1.0.2-beta4.20419.1 2.1.14 From dc972b079f28f6ce787fcde446fa27c4d5b931e4 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 19 Aug 2020 11:58:16 -0700 Subject: [PATCH 136/183] Add light command packages gathering (#8191) Call tasks to gather light command packages after the build of each installer. The way this is implemented is not ideal. Because powershell scripts are used to invoke the WiX toolset, the light command package info must be kept in sync. That said, the command lines and input files do not change very often. It's also on the table for .NET 6 to change around and unify the WiX calls between the repos. This also changes around the batching for the template MSIs to be compatible with the call to the light command task --- eng/Version.Details.xml | 4 + eng/Versions.props | 4 + src/redist/targets/GenerateMSIs.targets | 115 ++++++++++++++++++++++-- 3 files changed, 114 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fe8340e65..ddc5459f4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -102,5 +102,9 @@ https://github.com/dotnet/arcade 83fda4b3f6d93e713749fd1b27c4a6d40b118b13 + + https://github.com/dotnet/arcade + 83fda4b3f6d93e713749fd1b27c4a6d40b118b13 + diff --git a/eng/Versions.props b/eng/Versions.props index f0c54c826..346368621 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -15,6 +15,10 @@ $(VersionMajor).$(VersionMinor) $(MajorMinorVersion).$(VersionSDKMinor) + + + 5.0.0-beta.20417.6 + 5.0.0-rc.1.20370.3 diff --git a/src/redist/targets/GenerateMSIs.targets b/src/redist/targets/GenerateMSIs.targets index cab84fc7a..307808e57 100644 --- a/src/redist/targets/GenerateMSIs.targets +++ b/src/redist/targets/GenerateMSIs.targets @@ -1,5 +1,16 @@ + + + + + + $(NuGetPackageRoot)microsoft.dotnet.build.tasks.installers\$(MicrosoftDotNetBuildTasksInstallersPackageVersion)\tools\netcoreapp2.0\Microsoft.DotNet.Build.Tasks.Installers.dll + $(NuGetPackageRoot)microsoft.dotnet.build.tasks.installers\$(MicrosoftDotNetBuildTasksInstallersPackageVersion)\tools\net472\Microsoft.DotNet.Build.Tasks.Installers.dll + + + + @@ -34,6 +45,11 @@ $(MSBuildThisFileDirectory)packaging/windows/clisdk/VS.Redist.Common.Net.Core.SDK.MSBuildExtensions.nuspec $(ArtifactsNonShippingPackagesDir)VS.Redist.Common.Net.Core.SDK.MSBuildExtensions.$(FullNugetVersion).nupkg $(ArtifactsNonShippingPackagesDir)VS.Redist.Common.Net.Core.SDK.MSBuildExtensions.swr + + + $(ArtifactsObjDir)/LightCommandPackages + + $(ArtifactsNonShippingPackagesDir) @@ -173,6 +189,27 @@ '$(Architecture)' ^ '$(SdkStableFileIdForApphostTransform)' ^ -InformationAction Continue" /> + + + + + + + + + + + + + + + + + + + + + + + Inputs="@(TemplatesMsiComponent);$(TemplatesGenerateMsiPowershellScript)" + Outputs="%(TemplatesMsiComponent.MSIInstallerFile)"> + + + + + + + + + + + + @@ -296,6 +373,26 @@ '$(MicrosoftAspNetCoreAppRuntimePackageVersion)' ^ '$(CliProductBandVersion)' ^ -InformationAction Continue " /> + + + + + + + + + + Date: Wed, 19 Aug 2020 13:26:03 -0700 Subject: [PATCH 137/183] Update to the latest 3.1 AspNetCore template package (#8190) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 346368621..00cc68227 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -104,7 +104,7 @@ 3.1.2 $(MicrosoftDotNetCommonItemTemplates31PackageVersion) $(MicrosoftDotNetTestProjectTemplates50PackageVersion) - 3.1.2 + 3.1.7 4.8.0-rc2.19462.10 3.0.0 From 8a22a19fc5403b7af38b0682343a54a15d3592d8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 03:40:36 +0000 Subject: [PATCH 138/183] [master] Update dependencies from dotnet/sdk (#8129) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20407.1 to 5.0.0-rc.1.20407.2 (parent: Microsoft.NET.Sdk) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20370.3 to 5.0.0-rc.1.20417.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.3 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20407.9 to 5.0.100-rc.1.20419.19 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20407.9 to 5.0.100-rc.1.20419.19 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20417.14 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - dotnet-dev-certs: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - dotnet-user-secrets: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - dotnet-watch: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20418.28 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20407.1 to 5.0.0-rc.1.20407.2 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20370.3 to 5.0.0-rc.1.20417.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.4 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20405.1 to 5.0.0-rc.1.20417.3 - Address corssgen target issues - Merge branch 'darc-master-2e4e2d61-f78f-4bde-8947-ee1fee18e9a9' of https://github.com/dotnet/core-sdk into darc-master-2e4e2d61-f78f-4bde-8947-ee1fee18e9a9 - Merge branch 'master' of https://github.com/dotnet/core-sdk into darc-master-2e4e2d61-f78f-4bde-8947-ee1fee18e9a9 --- eng/Version.Details.xml | 80 ++++++++++++++--------------- eng/Versions.props | 40 +++++++-------- src/redist/targets/Crossgen.targets | 8 ++- 3 files changed, 66 insertions(+), 62 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ddc5459f4..7f5198643 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,37 +1,37 @@ - + https://github.com/dotnet/windowsdesktop - 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 + 85186023c8de8237268033cadc41d738b7f2005e - + https://github.com/dotnet/windowsdesktop - 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 + 85186023c8de8237268033cadc41d738b7f2005e - + https://github.com/dotnet/windowsdesktop - 8be1ccd1047a7febcb347a18f4cc9f5b9e99cdd7 + 85186023c8de8237268033cadc41d738b7f2005e - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc @@ -39,33 +39,33 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - b497143c168c8df00f070e95a4c6fee4092d2ea6 + 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 - + https://github.com/dotnet/aspnetcore - b052c4fcc200633443ccfedb0007e03b4b2340a8 + 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 https://github.com/dotnet/test-templates @@ -75,26 +75,26 @@ https://github.com/dotnet/test-templates 8ff52387853520863ad09a84b23c63ac5a471886 - + https://github.com/dotnet/templating - de8e4533a04456bf079a88866dedd98339cd768b + 633dff0b4bc05682536941936379f4dff4531c7e - + https://github.com/dotnet/sdk - 5550ac2fabb8bfae46d6a4de884bfbad71bbad99 + 5cb7e1f18108838001f96c5dd1292162861fc949 - + https://github.com/dotnet/sdk - 5550ac2fabb8bfae46d6a4de884bfbad71bbad99 + 5cb7e1f18108838001f96c5dd1292162861fc949 - + https://github.com/dotnet/winforms - 5854f1b352559b04cc4969b0ea2241af517fcdfa + b014c89fafff342c92c27968f8231b5032b12954 - + https://github.com/dotnet/wpf - 973ffc6e2edf170124176e7ebf0a850bdc1b359f + b91ba697c48bc7825580e3c7fa09c5c3781c3788 diff --git a/eng/Versions.props b/eng/Versions.props index 00cc68227..7dd548c17 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,15 +21,15 @@ - 5.0.0-rc.1.20370.3 + 5.0.0-rc.1.20417.1 - 5.0.0-rc.1.20405.1 + 5.0.0-rc.1.20417.3 - 5.0.0-rc.1.20407.1 + 5.0.0-rc.1.20407.2 @@ -41,41 +41,41 @@ - 5.0.0-rc.1.20405.9 - 5.0.0-rc.1.20405.9 - 5.0.0-rc.1.20405.9 - 5.0.0-rc.1.20405.9 - 5.0.0-rc.1.20405.9 - 5.0.0-rc.1.20405.9 + 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20418.28 0.2.0 - 5.0.100-rc.1.20407.9 - 5.0.100-rc.1.20407.9 + 5.0.100-rc.1.20419.19 + 5.0.100-rc.1.20419.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20417.14 - 5.0.0-rc.1.20404.16 - 5.0.0-rc.1.20404.16 - 5.0.0-rc.1.20404.16 - 5.0.0-rc.1.20404.16 - 5.0.0-rc.1.20404.16 + 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20417.14 2.1.0 - 5.0.0-rc.1.20405.1 - 5.0.0-rc.1.20405.1 - 5.0.0-rc.1.20405.1 + 5.0.0-rc.1.20417.4 + 5.0.0-rc.1.20417.4 + 5.0.0-rc.1.20417.4 diff --git a/src/redist/targets/Crossgen.targets b/src/redist/targets/Crossgen.targets index 837a8323e..cc81a3f58 100644 --- a/src/redist/targets/Crossgen.targets +++ b/src/redist/targets/Crossgen.targets @@ -38,8 +38,12 @@ - - + + + + + + From 80f3843a3389234a89ca1ea0bea337c69a6305ad Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 04:22:36 +0000 Subject: [PATCH 139/183] Update dependencies from https://github.com/dotnet/sdk build 20200819.20 (#8207) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20407.2 to 5.0.0-rc.1.20419.1 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20419.19 to 5.0.100-rc.1.20419.20 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20419.19 to 5.0.100-rc.1.20419.20 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20407.2 to 5.0.0-rc.1.20419.1 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7f5198643..797e837fa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates 8ff52387853520863ad09a84b23c63ac5a471886 - + https://github.com/dotnet/templating - 633dff0b4bc05682536941936379f4dff4531c7e + 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 5cb7e1f18108838001f96c5dd1292162861fc949 + c801142525d7242fd76d260e9b861bdad57538df - + https://github.com/dotnet/sdk - 5cb7e1f18108838001f96c5dd1292162861fc949 + c801142525d7242fd76d260e9b861bdad57538df diff --git a/eng/Versions.props b/eng/Versions.props index 7dd548c17..9cce1c0ff 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -29,7 +29,7 @@ - 5.0.0-rc.1.20407.2 + 5.0.0-rc.1.20419.1 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20419.19 - 5.0.100-rc.1.20419.19 + 5.0.100-rc.1.20419.20 + 5.0.100-rc.1.20419.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e2f19b2dc764786e0dfada1195f883d031231b41 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 06:27:17 +0000 Subject: [PATCH 140/183] Update dependencies from https://github.com/dotnet/sdk build 20200819.21 (#8208) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20419.20 to 5.0.100-rc.1.20419.21 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20419.20 to 5.0.100-rc.1.20419.21 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 - dotnet-dev-certs: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 - dotnet-user-secrets: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 - dotnet-watch: from 5.0.0-rc.1.20418.28 to 5.0.0-rc.1.20419.8 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 797e837fa..759f97a02 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b - + https://github.com/dotnet/aspnetcore - 4995bbf109d8c16faa6cc3dd8e8104f7b5f72008 + aa828180783b6245cdab2cba7d59d91396eaa01b https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - c801142525d7242fd76d260e9b861bdad57538df + 638fe234173719d2c0dae3e71a28983f36f30478 - + https://github.com/dotnet/sdk - c801142525d7242fd76d260e9b861bdad57538df + 638fe234173719d2c0dae3e71a28983f36f30478 diff --git a/eng/Versions.props b/eng/Versions.props index 9cce1c0ff..5734e96d2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20418.28 - 5.0.0-rc.1.20418.28 - 5.0.0-rc.1.20418.28 - 5.0.0-rc.1.20418.28 - 5.0.0-rc.1.20418.28 - 5.0.0-rc.1.20418.28 + 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.8 0.2.0 - 5.0.100-rc.1.20419.20 - 5.0.100-rc.1.20419.20 + 5.0.100-rc.1.20419.21 + 5.0.100-rc.1.20419.21 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 52d9043e03df264c5e39657857a4875157b76694 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 07:14:04 +0000 Subject: [PATCH 141/183] Update dependencies from https://github.com/dotnet/sdk build 20200819.22 (#8209) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20419.21 to 5.0.100-rc.1.20419.22 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20419.21 to 5.0.100-rc.1.20419.22 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 759f97a02..98752d127 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 638fe234173719d2c0dae3e71a28983f36f30478 + 7b44d624c4387946174ee1337be55a3ce11edd74 - + https://github.com/dotnet/sdk - 638fe234173719d2c0dae3e71a28983f36f30478 + 7b44d624c4387946174ee1337be55a3ce11edd74 diff --git a/eng/Versions.props b/eng/Versions.props index 5734e96d2..2b3180de1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20419.21 - 5.0.100-rc.1.20419.21 + 5.0.100-rc.1.20419.22 + 5.0.100-rc.1.20419.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f6c89e38e365f7522b30d1fa2a815f624164b914 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 12:33:42 +0000 Subject: [PATCH 142/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.3 (#8211) [master] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20419.22 to 5.0.100-rc.1.20420.3 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20419.22 to 5.0.100-rc.1.20420.3 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 - dotnet-dev-certs: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 - dotnet-user-secrets: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 - dotnet-watch: from 5.0.0-rc.1.20419.8 to 5.0.0-rc.1.20419.22 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 98752d127..4ab6c1041 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/aspnetcore - aa828180783b6245cdab2cba7d59d91396eaa01b + f490dd24c924e32acb46d0dee6b838237172d5e8 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 7b44d624c4387946174ee1337be55a3ce11edd74 + e80cf181f715697b88f18845d095bb9b623f325a - + https://github.com/dotnet/sdk - 7b44d624c4387946174ee1337be55a3ce11edd74 + e80cf181f715697b88f18845d095bb9b623f325a diff --git a/eng/Versions.props b/eng/Versions.props index 2b3180de1..7d2f628eb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20419.8 - 5.0.0-rc.1.20419.8 - 5.0.0-rc.1.20419.8 - 5.0.0-rc.1.20419.8 - 5.0.0-rc.1.20419.8 - 5.0.0-rc.1.20419.8 + 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20419.22 0.2.0 - 5.0.100-rc.1.20419.22 - 5.0.100-rc.1.20419.22 + 5.0.100-rc.1.20420.3 + 5.0.100-rc.1.20420.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 225274f1f4c6f0fd14815a1df9c9dcae50f1a9fc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 13:27:12 +0000 Subject: [PATCH 143/183] Update dependencies from https://github.com/dotnet/test-templates build 20200820.1 (#8212) [master] Update dependencies from dotnet/test-templates - Updates: - Microsoft.DotNet.Test.ProjectTemplates.2.1: from 1.0.2-beta4.20419.1 to 1.0.2-beta4.20420.1 - Microsoft.DotNet.Test.ProjectTemplates.5.0: from 1.0.2-beta4.20419.1 to 1.0.2-beta4.20420.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4ab6c1041..5ec5d0a5f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -67,13 +67,13 @@ https://github.com/dotnet/aspnetcore f490dd24c924e32acb46d0dee6b838237172d5e8 - + https://github.com/dotnet/test-templates - 8ff52387853520863ad09a84b23c63ac5a471886 + a2b05d8171915c69ad97ab5d49bbb07d2c780a67 - + https://github.com/dotnet/test-templates - 8ff52387853520863ad09a84b23c63ac5a471886 + a2b05d8171915c69ad97ab5d49bbb07d2c780a67 https://github.com/dotnet/templating diff --git a/eng/Versions.props b/eng/Versions.props index 7d2f628eb..20c3d6e9a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -33,7 +33,7 @@ - 1.0.2-beta4.20419.1 + 1.0.2-beta4.20420.1 @@ -117,7 +117,7 @@ 1.5.3 1.0.2-beta3 $(MicrosoftDotNetCommonItemTemplates21PackageVersion) - 1.0.2-beta4.20419.1 + 1.0.2-beta4.20420.1 2.1.14 From 3232fe7ac1ef16315392599bf2a5cb9257339639 Mon Sep 17 00:00:00 2001 From: William Li Date: Thu, 20 Aug 2020 06:32:19 -0700 Subject: [PATCH 144/183] Move few GivenWeWantToRequireWindowsForDesktopApps tests (#8205) Fix https://github.com/dotnet/installer/issues/8203 --- ...venWeWantToRequireWindowsForDesktopApps.cs | 62 +++++++++++++++++++ test/EndToEnd/TestProjectCreator.cs | 8 ++- .../PlatformSpecificFact.cs | 44 +++++++++++++ .../PlatformSpecificTheory.cs | 18 ++++++ 4 files changed, 131 insertions(+), 1 deletion(-) create mode 100644 test/EndToEnd/GivenWeWantToRequireWindowsForDesktopApps.cs create mode 100644 test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificFact.cs create mode 100644 test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificTheory.cs diff --git a/test/EndToEnd/GivenWeWantToRequireWindowsForDesktopApps.cs b/test/EndToEnd/GivenWeWantToRequireWindowsForDesktopApps.cs new file mode 100644 index 000000000..f6d55f644 --- /dev/null +++ b/test/EndToEnd/GivenWeWantToRequireWindowsForDesktopApps.cs @@ -0,0 +1,62 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.IO; +using EndToEnd; +using FluentAssertions; +using Microsoft.DotNet.Tools.Test.Utilities; +using Xunit; + +namespace Microsoft.DotNet.Tests.EndToEnd +{ + public class GivenWeWantToRequireWindowsForDesktopApps + { + [Fact] + public void It_does_not_download_desktop_targeting_packs_on_unix() + { + var testProjectCreator = new TestProjectCreator() + { + MinorVersion = "5.0" + }; + + testProjectCreator.AdditionalProperties["RestorePackagesPath"] = @"$(MSBuildProjectDirectory)\packages"; + testProjectCreator.AdditionalProperties["OutputType"] = "exe"; + + var testInstance = testProjectCreator.Create(); + + new BuildCommand() + .WithWorkingDirectory(testInstance.Root.FullName) + .Execute() + .Should().Pass(); + + string packagesPath = Path.Combine(testInstance.Root.FullName, "packages"); + Directory.Exists(packagesPath).Should().BeFalse(packagesPath + " should not exist"); + } + + [PlatformSpecificFact(TestPlatforms.Linux | TestPlatforms.OSX | TestPlatforms.FreeBSD)] + public void It_does_not_download_desktop_runtime_packs_on_unix() + { + const string Rid = "win-x64"; + + var testProjectCreator = new TestProjectCreator() + { + MinorVersion = "3.1" + }; + + testProjectCreator.AdditionalProperties["RestorePackagesPath"] = @"$(MSBuildProjectDirectory)\packages"; + testProjectCreator.AdditionalProperties["OutputType"] = "exe"; + testProjectCreator.AdditionalProperties["RuntimeIdentifier"] = Rid; + + var testInstance = testProjectCreator.Create(); + + new PublishCommand() + .WithWorkingDirectory(testInstance.Root.FullName) + .Execute() + .Should().Pass(); + + string packagesPath = Path.Combine(testInstance.Root.FullName, "packages", $"runtime.{Rid}.microsoft.windowsdesktop.app"); + Directory.Exists(packagesPath).Should().BeFalse(packagesPath + " should not exist"); + } + } +} diff --git a/test/EndToEnd/TestProjectCreator.cs b/test/EndToEnd/TestProjectCreator.cs index bbb8805eb..2455192ab 100644 --- a/test/EndToEnd/TestProjectCreator.cs +++ b/test/EndToEnd/TestProjectCreator.cs @@ -25,6 +25,8 @@ namespace EndToEnd public string RuntimeIdentifier { get; set; } + public Dictionary AdditionalProperties { get; } = new Dictionary(); + public TestProjectCreator([CallerMemberName] string testName = null, string identifier = "") { TestName = testName; @@ -54,7 +56,11 @@ namespace EndToEnd project.Root.Element(ns + "PropertyGroup") .Add(new XElement(ns + "RuntimeIdentifier", RuntimeIdentifier)); } - + + foreach (var additionalProperty in AdditionalProperties) + { + project.Root.Element(ns + "PropertyGroup").Add(new XElement(ns + additionalProperty.Key, additionalProperty.Value)); + } if (PackageName != NETCorePackageName) { diff --git a/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificFact.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificFact.cs new file mode 100644 index 000000000..819cd0644 --- /dev/null +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificFact.cs @@ -0,0 +1,44 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.Runtime.InteropServices; +using Xunit; + +namespace Microsoft.DotNet.Tools.Test.Utilities +{ + public class PlatformSpecificFact : FactAttribute + { + public PlatformSpecificFact(TestPlatforms platforms) + { + if (ShouldSkip(platforms)) + { + this.Skip = "This test is not supported on this platform."; + } + } + + internal static bool ShouldSkip(TestPlatforms platforms) => + (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && !platforms.HasFlag(TestPlatforms.Windows)) + || (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) && !platforms.HasFlag(TestPlatforms.Linux)) + || (RuntimeInformation.IsOSPlatform(OSPlatform.OSX) && !platforms.HasFlag(TestPlatforms.OSX)) + || (RuntimeInformation.IsOSPlatform(OSPlatform.Create("FREEBSD")) && !platforms.HasFlag(TestPlatforms.FreeBSD)); + } + + [Flags] + public enum TestPlatforms + { + Any = -1, + Windows = 1, + Linux = 2, + OSX = 4, + FreeBSD = 8, + NetBSD = 16, + illumos = 32, + Solaris = 64, + iOS = 128, + tvOS = 256, + Android = 512, + Browser = 1024, + AnyUnix = 2048 + } +} diff --git a/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificTheory.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificTheory.cs new file mode 100644 index 000000000..a23581dff --- /dev/null +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities/PlatformSpecificTheory.cs @@ -0,0 +1,18 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using Xunit; + +namespace Microsoft.DotNet.Tools.Test.Utilities +{ + public class PlatformSpecificTheory : TheoryAttribute + { + public PlatformSpecificTheory(TestPlatforms platforms) + { + if (PlatformSpecificFact.ShouldSkip(platforms)) + { + this.Skip = "This test is not supported on this platform."; + } + } + } +} From 136dd7175d4b3900eb420ba6ef2892935f1c8965 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 16:03:05 +0000 Subject: [PATCH 145/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.6 (#8213) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.3 to 5.0.100-rc.1.20420.6 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.3 to 5.0.100-rc.1.20420.6 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5ec5d0a5f..2e78eff87 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - e80cf181f715697b88f18845d095bb9b623f325a + a17fa33b5c01098482a8baa770d40fbb3fd41d5b - + https://github.com/dotnet/sdk - e80cf181f715697b88f18845d095bb9b623f325a + a17fa33b5c01098482a8baa770d40fbb3fd41d5b diff --git a/eng/Versions.props b/eng/Versions.props index 20c3d6e9a..73449706a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.3 - 5.0.100-rc.1.20420.3 + 5.0.100-rc.1.20420.6 + 5.0.100-rc.1.20420.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2b10eeb2a40dfd4aa11fabe11332977b9f698840 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 17:13:27 +0000 Subject: [PATCH 146/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.7 (#8214) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.6 to 5.0.100-rc.1.20420.7 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.6 to 5.0.100-rc.1.20420.7 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2e78eff87..17144ce75 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - a17fa33b5c01098482a8baa770d40fbb3fd41d5b + 956de23add7f9e1a50d2c5231d7825a27b930c5f - + https://github.com/dotnet/sdk - a17fa33b5c01098482a8baa770d40fbb3fd41d5b + 956de23add7f9e1a50d2c5231d7825a27b930c5f diff --git a/eng/Versions.props b/eng/Versions.props index 73449706a..786242786 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.6 - 5.0.100-rc.1.20420.6 + 5.0.100-rc.1.20420.7 + 5.0.100-rc.1.20420.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ab4443bd2fa5b159903d6a4447a31c6c95d9218f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 18:20:31 +0000 Subject: [PATCH 147/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.8 (#8218) [master] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.7 to 5.0.100-rc.1.20420.8 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.7 to 5.0.100-rc.1.20420.8 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 17144ce75..247ce5334 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 956de23add7f9e1a50d2c5231d7825a27b930c5f + 4bc03d190c8bb5acfac9043f8af1f5a953a2e894 - + https://github.com/dotnet/sdk - 956de23add7f9e1a50d2c5231d7825a27b930c5f + 4bc03d190c8bb5acfac9043f8af1f5a953a2e894 diff --git a/eng/Versions.props b/eng/Versions.props index 786242786..4f505393e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.7 - 5.0.100-rc.1.20420.7 + 5.0.100-rc.1.20420.8 + 5.0.100-rc.1.20420.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 0f42767a969420275c637a8019d6e50c790bd494 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 20 Aug 2020 13:48:12 -0700 Subject: [PATCH 148/183] Use Microsoft.NETCore.App.Internal package version (#8220) This version does not get stabilized and so this will work for repeatable stable builds. --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 30b45e126..d9533467a 100644 --- a/global.json +++ b/global.json @@ -3,7 +3,7 @@ "dotnet": "5.0.100-preview.6.20310.4", "runtimes": { "dotnet": [ - "$(MicrosoftNETCoreAppRuntimePackageVersion)" + "$(MicrosoftNETCoreAppInternalPackageVersion)" ] } }, From 221f59d64a0904ae44f39ccbbdddce3301cfbdf5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2020 22:47:17 +0000 Subject: [PATCH 149/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.11 (#8222) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.8 to 5.0.100-rc.1.20420.11 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.8 to 5.0.100-rc.1.20420.11 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 247ce5334..cb9634eb4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 4bc03d190c8bb5acfac9043f8af1f5a953a2e894 + 9527952fe17843d6b5f132ae7091e4a44e057834 - + https://github.com/dotnet/sdk - 4bc03d190c8bb5acfac9043f8af1f5a953a2e894 + 9527952fe17843d6b5f132ae7091e4a44e057834 diff --git a/eng/Versions.props b/eng/Versions.props index 4f505393e..837d386ef 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.8 - 5.0.100-rc.1.20420.8 + 5.0.100-rc.1.20420.11 + 5.0.100-rc.1.20420.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From dd1cb4d57a7f8dad956642a90a1f13e5a5ee5a0a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 03:09:37 +0000 Subject: [PATCH 150/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.14 (#8225) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.11 to 5.0.100-rc.1.20420.14 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.11 to 5.0.100-rc.1.20420.14 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 - dotnet-dev-certs: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 - dotnet-user-secrets: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 - dotnet-watch: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.13 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cb9634eb4..b96282ce3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d - + https://github.com/dotnet/aspnetcore - f490dd24c924e32acb46d0dee6b838237172d5e8 + c181218a4e065f64f94f19fc453b8d267f831f2d https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 9527952fe17843d6b5f132ae7091e4a44e057834 + c2b3eeff5c7a61e044cab746a7468df84e529ab4 - + https://github.com/dotnet/sdk - 9527952fe17843d6b5f132ae7091e4a44e057834 + c2b3eeff5c7a61e044cab746a7468df84e529ab4 diff --git a/eng/Versions.props b/eng/Versions.props index 837d386ef..81586c5ce 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20419.22 - 5.0.0-rc.1.20419.22 - 5.0.0-rc.1.20419.22 - 5.0.0-rc.1.20419.22 - 5.0.0-rc.1.20419.22 - 5.0.0-rc.1.20419.22 + 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.13 0.2.0 - 5.0.100-rc.1.20420.11 - 5.0.100-rc.1.20420.11 + 5.0.100-rc.1.20420.14 + 5.0.100-rc.1.20420.14 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 0ff5aae95e63b4c43cd92720fc769ef1dbf99b3c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 03:49:51 +0000 Subject: [PATCH 151/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.15 (#8226) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 (parent: Microsoft.NET.Sdk) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20417.1 to 5.0.0-rc.1.20417.2 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20417.3 to 5.0.0-rc.1.20420.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.14 to 5.0.100-rc.1.20420.15 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.14 to 5.0.100-rc.1.20420.15 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20417.1 to 5.0.0-rc.1.20417.2 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20417.4 to 5.0.0-rc.1.20420.4 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20417.3 to 5.0.0-rc.1.20420.1 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b96282ce3..c529d5b5a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 85186023c8de8237268033cadc41d738b7f2005e + cb45f4d5f6df0e109a62965190e642be519b4b2b - + https://github.com/dotnet/windowsdesktop - 85186023c8de8237268033cadc41d738b7f2005e + cb45f4d5f6df0e109a62965190e642be519b4b2b - + https://github.com/dotnet/windowsdesktop - 85186023c8de8237268033cadc41d738b7f2005e + cb45f4d5f6df0e109a62965190e642be519b4b2b https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - c2b3eeff5c7a61e044cab746a7468df84e529ab4 + f3c0e0fb78459e76249b9f617f7ba1b219c21bbe - + https://github.com/dotnet/sdk - c2b3eeff5c7a61e044cab746a7468df84e529ab4 + f3c0e0fb78459e76249b9f617f7ba1b219c21bbe - + https://github.com/dotnet/winforms - b014c89fafff342c92c27968f8231b5032b12954 + 6d1700bfaa99dad3a903df693d1f7b00dca18acc - + https://github.com/dotnet/wpf - b91ba697c48bc7825580e3c7fa09c5c3781c3788 + ad3a13c51d250df882d3106e7db4d4606073a7f5 diff --git a/eng/Versions.props b/eng/Versions.props index 81586c5ce..0c1325892 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,11 +21,11 @@ - 5.0.0-rc.1.20417.1 + 5.0.0-rc.1.20417.2 - 5.0.0-rc.1.20417.3 + 5.0.0-rc.1.20420.1 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.14 - 5.0.100-rc.1.20420.14 + 5.0.100-rc.1.20420.15 + 5.0.100-rc.1.20420.15 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -73,9 +73,9 @@ - 5.0.0-rc.1.20417.4 - 5.0.0-rc.1.20417.4 - 5.0.0-rc.1.20417.4 + 5.0.0-rc.1.20420.4 + 5.0.0-rc.1.20420.4 + 5.0.0-rc.1.20420.4 From 8dca70593d81838209c7b9a709968b9aea75868b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 04:43:42 +0000 Subject: [PATCH 152/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.17 (#8228) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.15 to 5.0.100-rc.1.20420.17 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.15 to 5.0.100-rc.1.20420.17 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c529d5b5a..3cdfc5e8a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - f3c0e0fb78459e76249b9f617f7ba1b219c21bbe + e68bdca84d18b12a223f3618b780d85dc6ba9b24 - + https://github.com/dotnet/sdk - f3c0e0fb78459e76249b9f617f7ba1b219c21bbe + e68bdca84d18b12a223f3618b780d85dc6ba9b24 diff --git a/eng/Versions.props b/eng/Versions.props index 0c1325892..7cf06465f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20420.15 - 5.0.100-rc.1.20420.15 + 5.0.100-rc.1.20420.17 + 5.0.100-rc.1.20420.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c3d4f12fcbca152a199d40c93b4242ba5d705020 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 05:18:56 +0000 Subject: [PATCH 153/183] Update dependencies from https://github.com/dotnet/sdk build 20200820.18 (#8229) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.17 to 5.0.100-rc.1.20420.18 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.17 to 5.0.100-rc.1.20420.18 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 - dotnet-dev-certs: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 - dotnet-user-secrets: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 - dotnet-watch: from 5.0.0-rc.1.20420.13 to 5.0.0-rc.1.20420.16 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3cdfc5e8a..1ea49abba 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf - + https://github.com/dotnet/aspnetcore - c181218a4e065f64f94f19fc453b8d267f831f2d + 9b5999f340fc64aac178ba5416e805a21e885fbf https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - e68bdca84d18b12a223f3618b780d85dc6ba9b24 + a56cb4c63e43ae43a8c065f69a3c1e036a033aa0 - + https://github.com/dotnet/sdk - e68bdca84d18b12a223f3618b780d85dc6ba9b24 + a56cb4c63e43ae43a8c065f69a3c1e036a033aa0 diff --git a/eng/Versions.props b/eng/Versions.props index 7cf06465f..12b2c9314 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20420.13 - 5.0.0-rc.1.20420.13 - 5.0.0-rc.1.20420.13 - 5.0.0-rc.1.20420.13 - 5.0.0-rc.1.20420.13 - 5.0.0-rc.1.20420.13 + 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.16 0.2.0 - 5.0.100-rc.1.20420.17 - 5.0.100-rc.1.20420.17 + 5.0.100-rc.1.20420.18 + 5.0.100-rc.1.20420.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 31aee7ae431031deae3bbc85f2f017cebeaba032 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 08:13:31 +0000 Subject: [PATCH 154/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.1 (#8230) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20420.18 to 5.0.100-rc.1.20421.1 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20420.18 to 5.0.100-rc.1.20421.1 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 - dotnet-dev-certs: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 - dotnet-user-secrets: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 - dotnet-watch: from 5.0.0-rc.1.20420.16 to 5.0.0-rc.1.20420.18 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1ea49abba..d7fead979 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e - + https://github.com/dotnet/aspnetcore - 9b5999f340fc64aac178ba5416e805a21e885fbf + a700662decce4056c23135b8a4e99b44179ea24e https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - a56cb4c63e43ae43a8c065f69a3c1e036a033aa0 + c1c11f471778fb6a80fe04ce95088c0ac53b6e18 - + https://github.com/dotnet/sdk - a56cb4c63e43ae43a8c065f69a3c1e036a033aa0 + c1c11f471778fb6a80fe04ce95088c0ac53b6e18 diff --git a/eng/Versions.props b/eng/Versions.props index 12b2c9314..0737a47d7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20420.16 - 5.0.0-rc.1.20420.16 - 5.0.0-rc.1.20420.16 - 5.0.0-rc.1.20420.16 - 5.0.0-rc.1.20420.16 - 5.0.0-rc.1.20420.16 + 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.18 0.2.0 - 5.0.100-rc.1.20420.18 - 5.0.100-rc.1.20420.18 + 5.0.100-rc.1.20421.1 + 5.0.100-rc.1.20421.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 37a2ff8f1454c50d74fea079f3351ade75f0e7f8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 09:10:31 +0000 Subject: [PATCH 155/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.2 (#8232) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.1 to 5.0.100-rc.1.20421.2 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.1 to 5.0.100-rc.1.20421.2 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d7fead979..408e7d69a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - c1c11f471778fb6a80fe04ce95088c0ac53b6e18 + 39b1519127233c1db9ab6ffae8ac2a1305ee6c2f - + https://github.com/dotnet/sdk - c1c11f471778fb6a80fe04ce95088c0ac53b6e18 + 39b1519127233c1db9ab6ffae8ac2a1305ee6c2f diff --git a/eng/Versions.props b/eng/Versions.props index 0737a47d7..21a613148 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.1 - 5.0.100-rc.1.20421.1 + 5.0.100-rc.1.20421.2 + 5.0.100-rc.1.20421.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 65080651f623e8020e220298bba91f175e41e4e8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 13:00:23 +0000 Subject: [PATCH 156/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.4 (#8233) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.2 to 5.0.100-rc.1.20421.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.2 to 5.0.100-rc.1.20421.4 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 408e7d69a..7f941953a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 39b1519127233c1db9ab6ffae8ac2a1305ee6c2f + 6e333bba63cc608cc6eda2c0ee57b56f9b987972 - + https://github.com/dotnet/sdk - 39b1519127233c1db9ab6ffae8ac2a1305ee6c2f + 6e333bba63cc608cc6eda2c0ee57b56f9b987972 diff --git a/eng/Versions.props b/eng/Versions.props index 21a613148..72906d71b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.2 - 5.0.100-rc.1.20421.2 + 5.0.100-rc.1.20421.4 + 5.0.100-rc.1.20421.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c97f437b19eb6453ff1f96a8a8f32b962614946d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 16:07:25 +0000 Subject: [PATCH 157/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.7 (#8236) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.4 to 5.0.100-rc.1.20421.7 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.4 to 5.0.100-rc.1.20421.7 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 - dotnet-dev-certs: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 - dotnet-user-secrets: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 - dotnet-watch: from 5.0.0-rc.1.20420.18 to 5.0.0-rc.1.20420.22 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7f941953a..2c7f86866 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 - + https://github.com/dotnet/aspnetcore - a700662decce4056c23135b8a4e99b44179ea24e + 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 6e333bba63cc608cc6eda2c0ee57b56f9b987972 + 1e822d6b1e45ce936231d18a29fd316c6bb0d95b - + https://github.com/dotnet/sdk - 6e333bba63cc608cc6eda2c0ee57b56f9b987972 + 1e822d6b1e45ce936231d18a29fd316c6bb0d95b diff --git a/eng/Versions.props b/eng/Versions.props index 72906d71b..6bdc0002b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20420.18 - 5.0.0-rc.1.20420.18 - 5.0.0-rc.1.20420.18 - 5.0.0-rc.1.20420.18 - 5.0.0-rc.1.20420.18 - 5.0.0-rc.1.20420.18 + 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20420.22 0.2.0 - 5.0.100-rc.1.20421.4 - 5.0.100-rc.1.20421.4 + 5.0.100-rc.1.20421.7 + 5.0.100-rc.1.20421.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 64e73725f5a6e009c6cff16f159b11a4f3f13ea6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 17:33:56 +0000 Subject: [PATCH 158/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.10 (#8237) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.7 to 5.0.100-rc.1.20421.10 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.7 to 5.0.100-rc.1.20421.10 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2c7f86866..7c878451b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 1e822d6b1e45ce936231d18a29fd316c6bb0d95b + c4d0e1ec51d432f2134a0bb918171a7e97dfa76c - + https://github.com/dotnet/sdk - 1e822d6b1e45ce936231d18a29fd316c6bb0d95b + c4d0e1ec51d432f2134a0bb918171a7e97dfa76c diff --git a/eng/Versions.props b/eng/Versions.props index 6bdc0002b..2d1b185e2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.7 - 5.0.100-rc.1.20421.7 + 5.0.100-rc.1.20421.10 + 5.0.100-rc.1.20421.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 65b7c03410b471c9206aabaa2f1379b1af44a3b8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 18:53:04 +0000 Subject: [PATCH 159/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.12 (#8240) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.10 to 5.0.100-rc.1.20421.12 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.10 to 5.0.100-rc.1.20421.12 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7c878451b..840dbdb1e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - c4d0e1ec51d432f2134a0bb918171a7e97dfa76c + 36889dd0655563289d289ab7ebdd3e1178582808 - + https://github.com/dotnet/sdk - c4d0e1ec51d432f2134a0bb918171a7e97dfa76c + 36889dd0655563289d289ab7ebdd3e1178582808 diff --git a/eng/Versions.props b/eng/Versions.props index 2d1b185e2..fa1ac31f8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.10 - 5.0.100-rc.1.20421.10 + 5.0.100-rc.1.20421.12 + 5.0.100-rc.1.20421.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 5e2fb0b0ff92b26f80b2431d86795ff83965b254 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 19:59:56 +0000 Subject: [PATCH 160/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.13 (#8241) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20420.1 to 5.0.0-rc.1.20420.4 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.12 to 5.0.100-rc.1.20421.13 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.12 to 5.0.100-rc.1.20421.13 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20420.6 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20420.1 to 5.0.0-rc.1.20420.4 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 840dbdb1e..018e6395a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - cb45f4d5f6df0e109a62965190e642be519b4b2b + 5cacc6c2996fb2af2d203f2594934c95a06bc96c - + https://github.com/dotnet/windowsdesktop - cb45f4d5f6df0e109a62965190e642be519b4b2b + 5cacc6c2996fb2af2d203f2594934c95a06bc96c - + https://github.com/dotnet/windowsdesktop - cb45f4d5f6df0e109a62965190e642be519b4b2b + 5cacc6c2996fb2af2d203f2594934c95a06bc96c https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 36889dd0655563289d289ab7ebdd3e1178582808 + 2c57cbf7e04746029dfcab00494d224c8138e87f - + https://github.com/dotnet/sdk - 36889dd0655563289d289ab7ebdd3e1178582808 + 2c57cbf7e04746029dfcab00494d224c8138e87f https://github.com/dotnet/winforms 6d1700bfaa99dad3a903df693d1f7b00dca18acc - + https://github.com/dotnet/wpf - ad3a13c51d250df882d3106e7db4d4606073a7f5 + 2dbfb3f231bbc5dd6cee951dd4ced496bdabb3c4 diff --git a/eng/Versions.props b/eng/Versions.props index fa1ac31f8..0acbc6d69 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ - 5.0.0-rc.1.20420.1 + 5.0.0-rc.1.20420.4 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.12 - 5.0.100-rc.1.20421.12 + 5.0.100-rc.1.20421.13 + 5.0.100-rc.1.20421.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -73,9 +73,9 @@ - 5.0.0-rc.1.20420.4 - 5.0.0-rc.1.20420.4 - 5.0.0-rc.1.20420.4 + 5.0.0-rc.1.20420.6 + 5.0.0-rc.1.20420.6 + 5.0.0-rc.1.20420.6 From ab8c6e9c907e9b1836869d6b4592e9f67cfedec4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:03:53 +0000 Subject: [PATCH 161/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.15 (#8242) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.13 to 5.0.100-rc.1.20421.15 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.13 to 5.0.100-rc.1.20421.15 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 018e6395a..859dda490 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 6a10ce799f42102bee8f8bec9a52c42cca6ed272 - + https://github.com/dotnet/sdk - 2c57cbf7e04746029dfcab00494d224c8138e87f + a2e13a92f287b2ab596aab8fda65c44718466d6b - + https://github.com/dotnet/sdk - 2c57cbf7e04746029dfcab00494d224c8138e87f + a2e13a92f287b2ab596aab8fda65c44718466d6b diff --git a/eng/Versions.props b/eng/Versions.props index 0acbc6d69..b590e50bc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.13 - 5.0.100-rc.1.20421.13 + 5.0.100-rc.1.20421.15 + 5.0.100-rc.1.20421.15 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e6d02c744564bf9f6b8a293cf8d1d9ca78ae37f6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 03:32:31 +0000 Subject: [PATCH 162/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.19 (#8246) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20419.1 to 5.0.0-rc.1.20421.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.15 to 5.0.100-rc.1.20421.19 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.15 to 5.0.100-rc.1.20421.19 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20419.1 to 5.0.0-rc.1.20421.3 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 859dda490..97c78a013 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates a2b05d8171915c69ad97ab5d49bbb07d2c780a67 - + https://github.com/dotnet/templating - 6a10ce799f42102bee8f8bec9a52c42cca6ed272 + 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - a2e13a92f287b2ab596aab8fda65c44718466d6b + 621997f9a5bb7c47ead3f44c9f8300f6a2f5434c - + https://github.com/dotnet/sdk - a2e13a92f287b2ab596aab8fda65c44718466d6b + 621997f9a5bb7c47ead3f44c9f8300f6a2f5434c diff --git a/eng/Versions.props b/eng/Versions.props index b590e50bc..161790188 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -29,7 +29,7 @@ - 5.0.0-rc.1.20419.1 + 5.0.0-rc.1.20421.3 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.15 - 5.0.100-rc.1.20421.15 + 5.0.100-rc.1.20421.19 + 5.0.100-rc.1.20421.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3547d9a40485edc06db1d8b61da0360826df75b0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 04:22:40 +0000 Subject: [PATCH 163/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.20 (#8247) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.19 to 5.0.100-rc.1.20421.20 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.19 to 5.0.100-rc.1.20421.20 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 - dotnet-dev-certs: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 - dotnet-user-secrets: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 - dotnet-watch: from 5.0.0-rc.1.20420.22 to 5.0.0-rc.1.20421.8 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 97c78a013..f70ef34c7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 907f7da59b40c80941b02ac2a46650adf3f606bc - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 - + https://github.com/dotnet/aspnetcore - 3e8c5c48f0304705e2ed88f3b34f9c74626e1487 + 50815ed5980250391771560077da1d3333cc6524 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 621997f9a5bb7c47ead3f44c9f8300f6a2f5434c + 9e152f2ac0bcdbfbec717efd12b5b4d3e8debf92 - + https://github.com/dotnet/sdk - 621997f9a5bb7c47ead3f44c9f8300f6a2f5434c + 9e152f2ac0bcdbfbec717efd12b5b4d3e8debf92 diff --git a/eng/Versions.props b/eng/Versions.props index 161790188..3c190112c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20420.22 - 5.0.0-rc.1.20420.22 - 5.0.0-rc.1.20420.22 - 5.0.0-rc.1.20420.22 - 5.0.0-rc.1.20420.22 - 5.0.0-rc.1.20420.22 + 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.8 0.2.0 - 5.0.100-rc.1.20421.19 - 5.0.100-rc.1.20421.19 + 5.0.100-rc.1.20421.20 + 5.0.100-rc.1.20421.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 9e9dffe9dccbfcbec221095286922fdcd5bb873f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 04:54:29 +0000 Subject: [PATCH 164/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.22 (#8248) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.20 to 5.0.100-rc.1.20421.22 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.20 to 5.0.100-rc.1.20421.22 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f70ef34c7..e6a7502e7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 9e152f2ac0bcdbfbec717efd12b5b4d3e8debf92 + a5c3ef1f1fdbc749db30973f65b46c94b0dec877 - + https://github.com/dotnet/sdk - 9e152f2ac0bcdbfbec717efd12b5b4d3e8debf92 + a5c3ef1f1fdbc749db30973f65b46c94b0dec877 diff --git a/eng/Versions.props b/eng/Versions.props index 3c190112c..96b211cb3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.20 - 5.0.100-rc.1.20421.20 + 5.0.100-rc.1.20421.22 + 5.0.100-rc.1.20421.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 18e939f157075cbd83ad06f0e2451b89c7449fc2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 06:46:28 +0000 Subject: [PATCH 165/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.23 (#8249) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.22 to 5.0.100-rc.1.20421.23 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.22 to 5.0.100-rc.1.20421.23 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20417.14 to 5.0.0-rc.1.20421.14 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e6a7502e7..18cb79c9c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 5cacc6c2996fb2af2d203f2594934c95a06bc96c - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 907f7da59b40c80941b02ac2a46650adf3f606bc + 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - a5c3ef1f1fdbc749db30973f65b46c94b0dec877 + 4327879c3bac889dc20b10acc84157393f6ab004 - + https://github.com/dotnet/sdk - a5c3ef1f1fdbc749db30973f65b46c94b0dec877 + 4327879c3bac889dc20b10acc84157393f6ab004 diff --git a/eng/Versions.props b/eng/Versions.props index 96b211cb3..ce3f22c46 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,22 +53,22 @@ - 5.0.100-rc.1.20421.22 - 5.0.100-rc.1.20421.22 + 5.0.100-rc.1.20421.23 + 5.0.100-rc.1.20421.23 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20421.14 - 5.0.0-rc.1.20417.14 - 5.0.0-rc.1.20417.14 - 5.0.0-rc.1.20417.14 - 5.0.0-rc.1.20417.14 - 5.0.0-rc.1.20417.14 + 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.14 2.1.0 From 8751c37f1fc80710243394df7f50ed99157bcc5c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 07:36:57 +0000 Subject: [PATCH 166/183] Update dependencies from https://github.com/dotnet/sdk build 20200821.25 (#8250) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.23 to 5.0.100-rc.1.20421.25 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.23 to 5.0.100-rc.1.20421.25 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 18cb79c9c..ac46cfad9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 4327879c3bac889dc20b10acc84157393f6ab004 + 8de581e6ca961c9e8234b6651cec43657ed6174f - + https://github.com/dotnet/sdk - 4327879c3bac889dc20b10acc84157393f6ab004 + 8de581e6ca961c9e8234b6651cec43657ed6174f diff --git a/eng/Versions.props b/eng/Versions.props index ce3f22c46..9a777fa89 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20421.23 - 5.0.100-rc.1.20421.23 + 5.0.100-rc.1.20421.25 + 5.0.100-rc.1.20421.25 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c5459145c8c477d7a1070aada951505e034e3dbf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 09:52:02 +0000 Subject: [PATCH 167/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.1 (#8251) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20421.25 to 5.0.100-rc.1.20422.1 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20421.25 to 5.0.100-rc.1.20422.1 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 - dotnet-dev-certs: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 - dotnet-user-secrets: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 - dotnet-watch: from 5.0.0-rc.1.20421.8 to 5.0.0-rc.1.20421.10 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ac46cfad9..fd5197cf3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a - + https://github.com/dotnet/aspnetcore - 50815ed5980250391771560077da1d3333cc6524 + 134850b4a2e98410e742173c8d2da740e0808b6a https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 8de581e6ca961c9e8234b6651cec43657ed6174f + 0a3bbf6468f25706584ea92c9ce84fc1b44a6bd7 - + https://github.com/dotnet/sdk - 8de581e6ca961c9e8234b6651cec43657ed6174f + 0a3bbf6468f25706584ea92c9ce84fc1b44a6bd7 diff --git a/eng/Versions.props b/eng/Versions.props index 9a777fa89..3f52a87e2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20421.8 - 5.0.0-rc.1.20421.8 - 5.0.0-rc.1.20421.8 - 5.0.0-rc.1.20421.8 - 5.0.0-rc.1.20421.8 - 5.0.0-rc.1.20421.8 + 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20421.10 0.2.0 - 5.0.100-rc.1.20421.25 - 5.0.100-rc.1.20421.25 + 5.0.100-rc.1.20422.1 + 5.0.100-rc.1.20422.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f8859bc05d4abc6ea43b2ef9e36b7bae100d6e4d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 10:30:59 +0000 Subject: [PATCH 168/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.2 (#8252) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20422.1 to 5.0.100-rc.1.20422.2 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20422.1 to 5.0.100-rc.1.20422.2 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20421.14 to 5.0.0-rc.1.20421.18 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd5197cf3..6044237d7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 5cacc6c2996fb2af2d203f2594934c95a06bc96c - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 4ad7d85d76560f0b412d8e26b8ebe252a547fcdb + c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 0a3bbf6468f25706584ea92c9ce84fc1b44a6bd7 + e73d96f0d3b55e1e5757d47f4d6487b66d9e4da6 - + https://github.com/dotnet/sdk - 0a3bbf6468f25706584ea92c9ce84fc1b44a6bd7 + e73d96f0d3b55e1e5757d47f4d6487b66d9e4da6 diff --git a/eng/Versions.props b/eng/Versions.props index 3f52a87e2..1d771e5e2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,22 +53,22 @@ - 5.0.100-rc.1.20422.1 - 5.0.100-rc.1.20422.1 + 5.0.100-rc.1.20422.2 + 5.0.100-rc.1.20422.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.18 - 5.0.0-rc.1.20421.14 - 5.0.0-rc.1.20421.14 - 5.0.0-rc.1.20421.14 - 5.0.0-rc.1.20421.14 - 5.0.0-rc.1.20421.14 + 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20421.18 2.1.0 From 3e3065e44de243fe398540916a9782fddd361138 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 11:17:38 +0000 Subject: [PATCH 169/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.4 (#8253) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20422.2 to 5.0.100-rc.1.20422.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20422.2 to 5.0.100-rc.1.20422.4 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6044237d7..c43ad211b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - e73d96f0d3b55e1e5757d47f4d6487b66d9e4da6 + bfab73a3dc778ad744b3d44cd941db351473db69 - + https://github.com/dotnet/sdk - e73d96f0d3b55e1e5757d47f4d6487b66d9e4da6 + bfab73a3dc778ad744b3d44cd941db351473db69 diff --git a/eng/Versions.props b/eng/Versions.props index 1d771e5e2..735143cb5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20422.2 - 5.0.100-rc.1.20422.2 + 5.0.100-rc.1.20422.4 + 5.0.100-rc.1.20422.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3b7d4ed7b5ed4cbc319ef3f06bef8d0902bcf624 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 03:39:43 +0000 Subject: [PATCH 170/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.7 (#8256) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20422.4 to 5.0.100-rc.1.20422.7 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20422.4 to 5.0.100-rc.1.20422.7 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 - dotnet-dev-certs: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 - dotnet-user-secrets: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 - dotnet-watch: from 5.0.0-rc.1.20421.10 to 5.0.0-rc.1.20422.4 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c43ad211b..277b2e7c4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 - + https://github.com/dotnet/aspnetcore - 134850b4a2e98410e742173c8d2da740e0808b6a + 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - bfab73a3dc778ad744b3d44cd941db351473db69 + 51251a9f21656d1e275cd2410375fc8c1b195918 - + https://github.com/dotnet/sdk - bfab73a3dc778ad744b3d44cd941db351473db69 + 51251a9f21656d1e275cd2410375fc8c1b195918 diff --git a/eng/Versions.props b/eng/Versions.props index 735143cb5..245893f9e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20421.10 - 5.0.0-rc.1.20421.10 - 5.0.0-rc.1.20421.10 - 5.0.0-rc.1.20421.10 - 5.0.0-rc.1.20421.10 - 5.0.0-rc.1.20421.10 + 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.4 0.2.0 - 5.0.100-rc.1.20422.4 - 5.0.100-rc.1.20422.4 + 5.0.100-rc.1.20422.7 + 5.0.100-rc.1.20422.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 81b61ce87b5db7e9168c0ff86d71b292dcaa1ad8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 04:59:23 +0000 Subject: [PATCH 171/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.8 (#8257) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20422.7 to 5.0.100-rc.1.20422.8 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20422.7 to 5.0.100-rc.1.20422.8 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 277b2e7c4..7f03bf716 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 51251a9f21656d1e275cd2410375fc8c1b195918 + 1082ff941cf5fa4b9bdff103827c16a81bb6a565 - + https://github.com/dotnet/sdk - 51251a9f21656d1e275cd2410375fc8c1b195918 + 1082ff941cf5fa4b9bdff103827c16a81bb6a565 diff --git a/eng/Versions.props b/eng/Versions.props index 245893f9e..54144be37 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20422.7 - 5.0.100-rc.1.20422.7 + 5.0.100-rc.1.20422.8 + 5.0.100-rc.1.20422.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 941805385075bf06bd40cb2487e8ce7db488cc16 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2020 23:02:29 -0700 Subject: [PATCH 172/183] Update dependencies from https://github.com/dotnet/sdk build 20200822.9 (#8258) Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 5.0.100-rc.1.20422.8 -> To Version 5.0.100-rc.1.20422.9 Dependency coherency updates Microsoft.NETCore.App.Ref,Microsoft.NETCore.App.Internal,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0,dotnet-dev-certs,dotnet-user-secrets,dotnet-watch From Version 5.0.0-rc.1.20421.18 -> To Version 5.0.0-rc.1.20422.6 (parent: Microsoft.NET.Sdk Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 28 ++++++++++----------- 2 files changed, 42 insertions(+), 42 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7f03bf716..150546f47 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 5cacc6c2996fb2af2d203f2594934c95a06bc96c - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 @@ -39,33 +39,33 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - c96c5df2ba4d891440d1dd16a774ae2f4f0b2c85 + 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e - + https://github.com/dotnet/aspnetcore - 135e8e6ffeb7c1867851bbc8849535cba65ab0a2 + 7304bd52338416a86d656acf59a79a68f23d0f7e https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 1082ff941cf5fa4b9bdff103827c16a81bb6a565 + 555efe44c424147557c4310b3ba79693b8227ee1 - + https://github.com/dotnet/sdk - 1082ff941cf5fa4b9bdff103827c16a81bb6a565 + 555efe44c424147557c4310b3ba79693b8227ee1 diff --git a/eng/Versions.props b/eng/Versions.props index 54144be37..249049a90 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,34 +41,34 @@ - 5.0.0-rc.1.20422.4 - 5.0.0-rc.1.20422.4 - 5.0.0-rc.1.20422.4 - 5.0.0-rc.1.20422.4 - 5.0.0-rc.1.20422.4 - 5.0.0-rc.1.20422.4 + 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.5 0.2.0 - 5.0.100-rc.1.20422.8 - 5.0.100-rc.1.20422.8 + 5.0.100-rc.1.20422.9 + 5.0.100-rc.1.20422.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20422.6 - 5.0.0-rc.1.20421.18 - 5.0.0-rc.1.20421.18 - 5.0.0-rc.1.20421.18 - 5.0.0-rc.1.20421.18 - 5.0.0-rc.1.20421.18 + 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20422.6 2.1.0 From 259caa0aef56a4134b5564bda8cf57e9aa4c438e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 08:19:34 +0000 Subject: [PATCH 173/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.1 (#8259) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20422.9 to 5.0.100-rc.1.20423.1 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20422.9 to 5.0.100-rc.1.20423.1 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 150546f47..beb0d4d87 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 555efe44c424147557c4310b3ba79693b8227ee1 + b0cdca64e59eb0bce49f43d566219812b83ec209 - + https://github.com/dotnet/sdk - 555efe44c424147557c4310b3ba79693b8227ee1 + b0cdca64e59eb0bce49f43d566219812b83ec209 diff --git a/eng/Versions.props b/eng/Versions.props index 249049a90..bc5c43b25 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20422.9 - 5.0.100-rc.1.20422.9 + 5.0.100-rc.1.20423.1 + 5.0.100-rc.1.20423.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 143c3049d5d6a17e490fdf185cc969134d8fac15 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 10:18:41 +0000 Subject: [PATCH 174/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.2 (#8260) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.1 to 5.0.100-rc.1.20423.2 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.1 to 5.0.100-rc.1.20423.2 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 - dotnet-dev-certs: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 - dotnet-user-secrets: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 - dotnet-watch: from 5.0.0-rc.1.20422.5 to 5.0.0-rc.1.20422.7 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index beb0d4d87..53aba6c3d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 977a00fb9d587a6c1292fb3af3992038ddcd3016 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 - + https://github.com/dotnet/aspnetcore - 7304bd52338416a86d656acf59a79a68f23d0f7e + cf0f7efa9c231f83e6b51b1733e65679d8c0a823 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - b0cdca64e59eb0bce49f43d566219812b83ec209 + aca6331bff50fc1d03e3531260a08a7ba2871fce - + https://github.com/dotnet/sdk - b0cdca64e59eb0bce49f43d566219812b83ec209 + aca6331bff50fc1d03e3531260a08a7ba2871fce diff --git a/eng/Versions.props b/eng/Versions.props index bc5c43b25..7dc29af21 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20422.5 - 5.0.0-rc.1.20422.5 - 5.0.0-rc.1.20422.5 - 5.0.0-rc.1.20422.5 - 5.0.0-rc.1.20422.5 - 5.0.0-rc.1.20422.5 + 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20422.7 0.2.0 - 5.0.100-rc.1.20423.1 - 5.0.100-rc.1.20423.1 + 5.0.100-rc.1.20423.2 + 5.0.100-rc.1.20423.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c64855cc0e8445301a0cf5ab344acd65200b3e63 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 12:44:26 +0000 Subject: [PATCH 175/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.3 (#8261) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 (parent: Microsoft.NET.Sdk) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20417.2 to 5.0.0-rc.1.20422.3 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20423.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.2 to 5.0.100-rc.1.20423.3 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.2 to 5.0.100-rc.1.20423.3 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20417.2 to 5.0.0-rc.1.20422.3 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20420.6 to 5.0.0-rc.1.20423.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20420.4 to 5.0.0-rc.1.20423.1 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 53aba6c3d..699eb25ce 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 5cacc6c2996fb2af2d203f2594934c95a06bc96c + 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b - + https://github.com/dotnet/windowsdesktop - 5cacc6c2996fb2af2d203f2594934c95a06bc96c + 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b - + https://github.com/dotnet/windowsdesktop - 5cacc6c2996fb2af2d203f2594934c95a06bc96c + 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - aca6331bff50fc1d03e3531260a08a7ba2871fce + 5997452539d2e0f9580ce6a3bb78d525437502e3 - + https://github.com/dotnet/sdk - aca6331bff50fc1d03e3531260a08a7ba2871fce + 5997452539d2e0f9580ce6a3bb78d525437502e3 - + https://github.com/dotnet/winforms - 6d1700bfaa99dad3a903df693d1f7b00dca18acc + 3965b18be5ae602b2c430e268fcd7a7d50951a82 - + https://github.com/dotnet/wpf - 2dbfb3f231bbc5dd6cee951dd4ced496bdabb3c4 + ef7880b7a27805df56394c365c7b114847f9dd49 diff --git a/eng/Versions.props b/eng/Versions.props index 7dc29af21..0fd1ceeeb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,11 +21,11 @@ - 5.0.0-rc.1.20417.2 + 5.0.0-rc.1.20422.3 - 5.0.0-rc.1.20420.4 + 5.0.0-rc.1.20423.1 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20423.2 - 5.0.100-rc.1.20423.2 + 5.0.100-rc.1.20423.3 + 5.0.100-rc.1.20423.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -73,9 +73,9 @@ - 5.0.0-rc.1.20420.6 - 5.0.0-rc.1.20420.6 - 5.0.0-rc.1.20420.6 + 5.0.0-rc.1.20423.1 + 5.0.0-rc.1.20423.1 + 5.0.0-rc.1.20423.1 From 576f618958178fd9ac61f3c4cd8628c9c05a6bc4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 14:59:52 +0000 Subject: [PATCH 176/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.5 (#8262) [release/5.0.1xx] Update dependencies from dotnet/sdk - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.3 to 5.0.100-rc.1.20423.5 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.3 to 5.0.100-rc.1.20423.5 --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 699eb25ce..fd41c6d85 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 5997452539d2e0f9580ce6a3bb78d525437502e3 + aab4b1da251cde171371509de7eb809581358b74 - + https://github.com/dotnet/sdk - 5997452539d2e0f9580ce6a3bb78d525437502e3 + aab4b1da251cde171371509de7eb809581358b74 diff --git a/eng/Versions.props b/eng/Versions.props index 0fd1ceeeb..ddb9e9c3e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20423.3 - 5.0.100-rc.1.20423.3 + 5.0.100-rc.1.20423.5 + 5.0.100-rc.1.20423.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3fa133c688fd70c8e0a7c2c91463dcc1d9d748c6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2020 23:13:58 +0000 Subject: [PATCH 177/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.7 (#8263) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.5 to 5.0.100-rc.1.20423.7 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.5 to 5.0.100-rc.1.20423.7 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20422.6 to 5.0.0-rc.1.20423.4 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd41c6d85..97483d3fa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 977a00fb9d587a6c1292fb3af3992038ddcd3016 + 3784acb2f456ac17b978f5c845806f6ea1d7c915 https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - aab4b1da251cde171371509de7eb809581358b74 + 8f1b8a7a884b5948c9951ba87278e77345bac626 - + https://github.com/dotnet/sdk - aab4b1da251cde171371509de7eb809581358b74 + 8f1b8a7a884b5948c9951ba87278e77345bac626 diff --git a/eng/Versions.props b/eng/Versions.props index ddb9e9c3e..2d0559ecf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,22 +53,22 @@ - 5.0.100-rc.1.20423.5 - 5.0.100-rc.1.20423.5 + 5.0.100-rc.1.20423.7 + 5.0.100-rc.1.20423.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20423.4 - 5.0.0-rc.1.20422.6 - 5.0.0-rc.1.20422.6 - 5.0.0-rc.1.20422.6 - 5.0.0-rc.1.20422.6 - 5.0.0-rc.1.20422.6 + 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.4 2.1.0 From 406bd6f6ff5fe1b0fca1ff594fc0aecf10815bac Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 04:10:54 +0000 Subject: [PATCH 178/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.8 (#8264) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.7 to 5.0.100-rc.1.20423.8 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.7 to 5.0.100-rc.1.20423.8 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 - dotnet-dev-certs: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 - dotnet-user-secrets: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 - dotnet-watch: from 5.0.0-rc.1.20422.7 to 5.0.0-rc.1.20423.3 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 97483d3fa..b695bb76b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 - + https://github.com/dotnet/aspnetcore - cf0f7efa9c231f83e6b51b1733e65679d8c0a823 + 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 8f1b8a7a884b5948c9951ba87278e77345bac626 + 515d87840a06abe81c90b2f40e7094004b443689 - + https://github.com/dotnet/sdk - 8f1b8a7a884b5948c9951ba87278e77345bac626 + 515d87840a06abe81c90b2f40e7094004b443689 diff --git a/eng/Versions.props b/eng/Versions.props index 2d0559ecf..38bd07806 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20422.7 - 5.0.0-rc.1.20422.7 - 5.0.0-rc.1.20422.7 - 5.0.0-rc.1.20422.7 - 5.0.0-rc.1.20422.7 - 5.0.0-rc.1.20422.7 + 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.3 0.2.0 - 5.0.100-rc.1.20423.7 - 5.0.100-rc.1.20423.7 + 5.0.100-rc.1.20423.8 + 5.0.100-rc.1.20423.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From aef909ab8b31ce1ec6dc38c1778685b7c9aa33c4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 06:41:27 +0000 Subject: [PATCH 179/183] Update dependencies from https://github.com/dotnet/sdk build 20200823.9 (#8265) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.8 to 5.0.100-rc.1.20423.9 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.8 to 5.0.100-rc.1.20423.9 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 - dotnet-dev-certs: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 - dotnet-user-secrets: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 - dotnet-watch: from 5.0.0-rc.1.20423.3 to 5.0.0-rc.1.20423.5 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b695bb76b..0967fb553 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 3784acb2f456ac17b978f5c845806f6ea1d7c915 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 - + https://github.com/dotnet/aspnetcore - 112d821a260b4e71c82f3bf01b3d6a5132cd12a1 + a59639714eda52c08b7cb0326af7e2a9cffde623 https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 515d87840a06abe81c90b2f40e7094004b443689 + 2cd2370ffa6ec52031b661594c1c4cf483cc2447 - + https://github.com/dotnet/sdk - 515d87840a06abe81c90b2f40e7094004b443689 + 2cd2370ffa6ec52031b661594c1c4cf483cc2447 diff --git a/eng/Versions.props b/eng/Versions.props index 38bd07806..ff45a6ffd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20423.3 - 5.0.0-rc.1.20423.3 - 5.0.0-rc.1.20423.3 - 5.0.0-rc.1.20423.3 - 5.0.0-rc.1.20423.3 - 5.0.0-rc.1.20423.3 + 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20423.5 0.2.0 - 5.0.100-rc.1.20423.8 - 5.0.100-rc.1.20423.8 + 5.0.100-rc.1.20423.9 + 5.0.100-rc.1.20423.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e4e4e30cd831eb91347852320e363a5f14320b51 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 11:22:46 +0000 Subject: [PATCH 180/183] Update dependencies from https://github.com/dotnet/sdk build 20200824.1 (#8266) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20423.9 to 5.0.100-rc.1.20424.1 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20423.9 to 5.0.100-rc.1.20424.1 - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 - Microsoft.NETCore.App.Host.win-x64: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 - Microsoft.NETCore.DotNetHostResolver: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20423.4 to 5.0.0-rc.1.20423.8 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0967fb553..a71955245 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,25 +13,25 @@ https://github.com/dotnet/windowsdesktop 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb @@ -39,9 +39,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 3784acb2f456ac17b978f5c845806f6ea1d7c915 + 9aa4e069b5e9f6a33f7304fa7d58de26424588fb https://github.com/dotnet/aspnetcore @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - 2cd2370ffa6ec52031b661594c1c4cf483cc2447 + bced0b96a6e9ae3159fc8fe4bab84f3b717d14b4 - + https://github.com/dotnet/sdk - 2cd2370ffa6ec52031b661594c1c4cf483cc2447 + bced0b96a6e9ae3159fc8fe4bab84f3b717d14b4 diff --git a/eng/Versions.props b/eng/Versions.props index ff45a6ffd..b714901fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -53,22 +53,22 @@ - 5.0.100-rc.1.20423.9 - 5.0.100-rc.1.20423.9 + 5.0.100-rc.1.20424.1 + 5.0.100-rc.1.20424.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.8 - 5.0.0-rc.1.20423.4 - 5.0.0-rc.1.20423.4 - 5.0.0-rc.1.20423.4 - 5.0.0-rc.1.20423.4 - 5.0.0-rc.1.20423.4 + 5.0.0-rc.1.20423.8 + 5.0.0-rc.1.20423.8 + 5.0.0-rc.1.20423.8 + 5.0.0-rc.1.20423.8 + 5.0.0-rc.1.20423.8 2.1.0 From 7fe37066ea583ac88b828e895d794f6fc84604cc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 15:00:29 +0000 Subject: [PATCH 181/183] Update dependencies from https://github.com/dotnet/sdk build 20200824.2 (#8267) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 (parent: Microsoft.NET.Sdk) - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 (parent: Microsoft.NET.Sdk) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20422.3 to 5.0.0-rc.1.20424.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20424.1 to 5.0.100-rc.1.20424.2 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20424.1 to 5.0.100-rc.1.20424.2 - Microsoft.WindowsDesktop.App.Ref: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 - Microsoft.WindowsDesktop.App: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 - Microsoft.Dotnet.WinForms.ProjectTemplates: from 5.0.0-rc.1.20422.3 to 5.0.0-rc.1.20424.1 - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 - Microsoft.DotNet.Wpf.ProjectTemplates: from 5.0.0-rc.1.20423.1 to 5.0.0-rc.1.20424.1 --- eng/Version.Details.xml | 28 ++++++++++++++-------------- eng/Versions.props | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a71955245..47cb80a15 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,17 +1,17 @@ - + https://github.com/dotnet/windowsdesktop - 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b + 3706ccb050c13a04511f8531339fca437ad4bc2a - + https://github.com/dotnet/windowsdesktop - 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b + 3706ccb050c13a04511f8531339fca437ad4bc2a - + https://github.com/dotnet/windowsdesktop - 3a3d0864542d0f8f1de14d9f35b18cffaf045f3b + 3706ccb050c13a04511f8531339fca437ad4bc2a https://github.com/dotnet/runtime @@ -79,22 +79,22 @@ https://github.com/dotnet/templating 8964302e878d00a0161df0ce1c42c535316e339d - + https://github.com/dotnet/sdk - bced0b96a6e9ae3159fc8fe4bab84f3b717d14b4 + 72d99cc3f02c1f2f7835bd3048a86f572d0e180e - + https://github.com/dotnet/sdk - bced0b96a6e9ae3159fc8fe4bab84f3b717d14b4 + 72d99cc3f02c1f2f7835bd3048a86f572d0e180e - + https://github.com/dotnet/winforms - 3965b18be5ae602b2c430e268fcd7a7d50951a82 + 7ad393f0e830d91b1c4ebc77500c23acb82d10bb - + https://github.com/dotnet/wpf - ef7880b7a27805df56394c365c7b114847f9dd49 + 43da04c01e8506fe4e34b0b7ec76030aaa24fb78 diff --git a/eng/Versions.props b/eng/Versions.props index b714901fc..f27d1eae8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -21,11 +21,11 @@ - 5.0.0-rc.1.20422.3 + 5.0.0-rc.1.20424.1 - 5.0.0-rc.1.20423.1 + 5.0.0-rc.1.20424.1 @@ -53,8 +53,8 @@ - 5.0.100-rc.1.20424.1 - 5.0.100-rc.1.20424.1 + 5.0.100-rc.1.20424.2 + 5.0.100-rc.1.20424.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -73,9 +73,9 @@ - 5.0.0-rc.1.20423.1 - 5.0.0-rc.1.20423.1 - 5.0.0-rc.1.20423.1 + 5.0.0-rc.1.20424.1 + 5.0.0-rc.1.20424.1 + 5.0.0-rc.1.20424.1 From b5e7150bc46eeb762cece2ed273f48d7be7aeff0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 17:30:10 +0000 Subject: [PATCH 182/183] [release/5.0.1xx] Update dependencies from dotnet/sdk (#8268) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 (parent: Microsoft.NET.Sdk) - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20421.3 to 5.0.0-rc.1.20424.2 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20424.2 to 5.0.100-rc.1.20424.4 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20424.2 to 5.0.100-rc.1.20424.4 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - dotnet-dev-certs: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - dotnet-user-secrets: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - dotnet-watch: from 5.0.0-rc.1.20423.5 to 5.0.0-rc.1.20424.3 - Microsoft.DotNet.Common.ItemTemplates: from 5.0.0-rc.1.20421.3 to 5.0.0-rc.1.20424.2 --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 18 +++++++++--------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 47cb80a15..136b286c0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 - + https://github.com/dotnet/aspnetcore - a59639714eda52c08b7cb0326af7e2a9cffde623 + 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 https://github.com/dotnet/test-templates @@ -75,17 +75,17 @@ https://github.com/dotnet/test-templates a2b05d8171915c69ad97ab5d49bbb07d2c780a67 - + https://github.com/dotnet/templating - 8964302e878d00a0161df0ce1c42c535316e339d + 33ab866736b99a365bc18640ebab4e6be75d69bf - + https://github.com/dotnet/sdk - 72d99cc3f02c1f2f7835bd3048a86f572d0e180e + 2820d516561f04fcfce43fd9752aa7ac364dab9f - + https://github.com/dotnet/sdk - 72d99cc3f02c1f2f7835bd3048a86f572d0e180e + 2820d516561f04fcfce43fd9752aa7ac364dab9f diff --git a/eng/Versions.props b/eng/Versions.props index f27d1eae8..83847d545 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -29,7 +29,7 @@ - 5.0.0-rc.1.20421.3 + 5.0.0-rc.1.20424.2 @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20423.5 - 5.0.0-rc.1.20423.5 - 5.0.0-rc.1.20423.5 - 5.0.0-rc.1.20423.5 - 5.0.0-rc.1.20423.5 - 5.0.0-rc.1.20423.5 + 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.3 0.2.0 - 5.0.100-rc.1.20424.2 - 5.0.100-rc.1.20424.2 + 5.0.100-rc.1.20424.4 + 5.0.100-rc.1.20424.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ae492b245ab766aac09156637b7896cdcb0d40c9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 18:51:09 +0000 Subject: [PATCH 183/183] Update dependencies from https://github.com/dotnet/sdk build 20200824.5 (#8269) [release/5.0.1xx] Update dependencies from dotnet/sdk - Coherency Updates: - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - dotnet-dev-certs: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - dotnet-user-secrets: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - dotnet-watch: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 (parent: Microsoft.NET.Sdk) - Updates: - Microsoft.DotNet.MSBuildSdkResolver: from 5.0.100-rc.1.20424.4 to 5.0.100-rc.1.20424.5 - Microsoft.NET.Sdk: from 5.0.100-rc.1.20424.4 to 5.0.100-rc.1.20424.5 - Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 - Microsoft.AspNetCore.App.Runtime.win-x64: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 - VS.Redist.Common.AspNetCore.TargetingPack.x64.5.0: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 - dotnet-dev-certs: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 - dotnet-user-secrets: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 - dotnet-watch: from 5.0.0-rc.1.20424.3 to 5.0.0-rc.1.20424.4 --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 136b286c0..870b414ef 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -43,29 +43,29 @@ https://github.com/dotnet/runtime 9aa4e069b5e9f6a33f7304fa7d58de26424588fb - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e - + https://github.com/dotnet/aspnetcore - 04ca38bcfb76902ca3617d47bd4a87559e87e7c0 + faf1d80af1b0521ed120f767efd630999200a02e https://github.com/dotnet/test-templates @@ -79,13 +79,13 @@ https://github.com/dotnet/templating 33ab866736b99a365bc18640ebab4e6be75d69bf - + https://github.com/dotnet/sdk - 2820d516561f04fcfce43fd9752aa7ac364dab9f + 1df1eafb50a190e14b8d0efd761e394f391fde6c - + https://github.com/dotnet/sdk - 2820d516561f04fcfce43fd9752aa7ac364dab9f + 1df1eafb50a190e14b8d0efd761e394f391fde6c diff --git a/eng/Versions.props b/eng/Versions.props index 83847d545..c3e981525 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -41,20 +41,20 @@ - 5.0.0-rc.1.20424.3 - 5.0.0-rc.1.20424.3 - 5.0.0-rc.1.20424.3 - 5.0.0-rc.1.20424.3 - 5.0.0-rc.1.20424.3 - 5.0.0-rc.1.20424.3 + 5.0.0-rc.1.20424.4 + 5.0.0-rc.1.20424.4 + 5.0.0-rc.1.20424.4 + 5.0.0-rc.1.20424.4 + 5.0.0-rc.1.20424.4 + 5.0.0-rc.1.20424.4 0.2.0 - 5.0.100-rc.1.20424.4 - 5.0.100-rc.1.20424.4 + 5.0.100-rc.1.20424.5 + 5.0.100-rc.1.20424.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion)