Commit graph

22640 commits

Author SHA1 Message Date
Daniel Plaisted
4499a10e37 Update download table 2021-11-12 13:01:55 -08:00
Davis Goodin
76d625236e
Allow SDK to produce reference assemblies (#12549) 2021-11-12 19:47:56 +00:00
Omair Majid
457210a04c
Also publish non-portable RID runtime symbols tarball (#12622)
This fixes a regression in .NET 6 source-build compared to the .NET
5 source-build.

source-build wants to publish runtime symbols tarball for portable (eg,
linux-x64) and non-portable (eg, fedora.33-x64) RIDs here after a build.
Following .NET 5 conventions, I expected to see:

    ./artifacts/x64/Release/runtime/dotnet-runtime-symbols-fedora.34-x64-6.0.0.tar.gz
    ./artifacts/x64/Release/runtime/dotnet-runtime-symbols-linux-x64-6.0.0.tar.gz

Unfortunately, only the portable RID (linux-x64) tarball is present
after a full source-build in .NET 6.

It turns out this is a bug in our build scripts. We try and copy
binaries - including the symbol tarballs - after building each of
runtime-portable and runtime. However, the target dependency is wrong:
after `Build`, the intermediate package doesn't exist from the
just-built repo.

What ends up happening is that nothing is copied after building
runtime-portable. However, after building runtime, the runtime-portable
intermediate artifacts are found and copied over. So the end
build has portable RID symbos, but not the non-portable ones.

Fix that by changing the dependency of this target so it runs after
intermediate packages are available.
2021-11-12 19:35:39 +00:00
dotnet-maestro[bot]
61e414647b
Update dependencies from https://github.com/dotnet/sdk build 20211112.5 (#12653)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.WindowsDesktop.App.Ref: from 7.0.0-alpha.1.21560.2 to 7.0.0-alpha.1.21561.11 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21560.2 to 7.0.0-alpha.1.21561.11 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0: from 7.0.0-alpha.1.21560.2 to 7.0.0-alpha.1.21561.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.NetCore.TargetingPack.x64.7.0: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Host.win-x64: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.DotNetHostResolver: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 7.0.0-alpha.1.21560.2 to 7.0.0-alpha.1.21561.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.Dotnet.WinForms.ProjectTemplates: from 7.0.0-alpha.1.21552.2 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 7.0.0-alpha.1.21560.2 to 7.0.0-alpha.1.21561.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.DotNet.Wpf.ProjectTemplates: from 7.0.0-alpha.1.21560.1 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21561.1 to 7.0.0-alpha.1.21561.18 (parent: Microsoft.NET.Sdk)
  - Microsoft.NET.Workload.Emscripten.Manifest-7.0.100: from 7.0.0-alpha.1.21558.1 to 7.0.0-alpha.1.21560.2 (parent: VS.Redist.Common.NetCore.SharedFramework.x64.7.0)
2021-11-12 17:40:40 +00:00
dotnet-maestro[bot]
7ffd413abb
Update dependencies from https://github.com/dotnet/sdk build 20211112.4 (#12650)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.AspNetCore.App.Ref: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref.Internal: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
  - dotnet-dev-certs: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
  - dotnet-user-secrets: from 7.0.0-alpha.1.21561.8 to 7.0.0-alpha.1.21561.9 (parent: Microsoft.NET.Sdk)
2021-11-12 16:09:27 +00:00
Davis Goodin
772d572a31
dotnet/runtime: Disable package validation in source-build for reliability (#12526) 2021-11-12 09:36:27 -06:00
Michael Simons
9056116cb3
Increase source-build tarball build timeout (#12652) 2021-11-12 09:31:38 -06:00
Matt Mitchell
8962232918
Merge pull request #12640 from dsplaisted/merge-6.0.1xx-to-6.0.2xx
Merge 6.0.1xx to 6.0.2xx
2021-11-12 07:20:20 -08:00
dotnet-maestro[bot]
d9ca30d939
Update dependencies from https://github.com/dotnet/sdk build 20211112.3 (#12649)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.AspNetCore.App.Ref: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref.Internal: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
  - dotnet-dev-certs: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
  - dotnet-user-secrets: from 7.0.0-alpha.1.21561.4 to 7.0.0-alpha.1.21561.8 (parent: Microsoft.NET.Sdk)
2021-11-12 12:19:53 +00:00
dotnet-maestro[bot]
88065b4e88
Update dependencies from https://github.com/dotnet/sdk build 20211112.2 (#12648)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.NET.Test.Sdk: from 17.1.0-preview-20211105-01 to 17.1.0-preview-20211109-03 (parent: Microsoft.NET.Sdk)
2021-11-12 11:10:09 +00:00
dotnet-maestro[bot]
6f998cb085
Update dependencies from https://github.com/dotnet/sdk build 20211112.1 (#12647)
[main] Update dependencies from dotnet/sdk
2021-11-12 10:04:45 +00:00
dotnet-maestro[bot]
c8079263a6
[main] Update dependencies from dotnet/sdk (#12646)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.NET.ILLink.Tasks: from 7.0.100-1.21558.1 to 7.0.100-1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.Net.Compilers.Toolset: from 4.0.1-1.21561.1 to 4.0.1-1.21561.4 (parent: Microsoft.NET.Sdk)
2021-11-12 09:03:56 +00:00
dotnet-maestro[bot]
56c9f7e258
Update dependencies from https://github.com/dotnet/sdk build 20211111.13 (#12645)
[main] Update dependencies from dotnet/sdk
2021-11-12 04:10:38 +00:00
dotnet-maestro[bot]
d75a087077
[main] Update dependencies from dotnet/sdk (#12644)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.AspNetCore.App.Ref: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref.Internal: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - dotnet-dev-certs: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - dotnet-user-secrets: from 7.0.0-alpha.1.21561.2 to 7.0.0-alpha.1.21561.4 (parent: Microsoft.NET.Sdk)
  - Microsoft.Net.Compilers.Toolset: from 4.0.1-1.21560.6 to 4.0.1-1.21561.1 (parent: Microsoft.NET.Sdk)
2021-11-12 01:43:45 +00:00
dotnet-maestro[bot]
34377c9951
[main] Update dependencies from dotnet/sdk (#12589)
[main] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.WindowsDesktop.App.Ref: from 7.0.0-alpha.1.21530.1 to 7.0.0-alpha.1.21560.2 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21530.1 to 7.0.0-alpha.1.21560.2 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0: from 7.0.0-alpha.1.21530.1 to 7.0.0-alpha.1.21560.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Ref: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.NetCore.TargetingPack.x64.7.0: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Host.win-x64: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.DotNetHostResolver: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.Platforms: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref.Internal: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Runtime.win-x64: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - dotnet-dev-certs: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - dotnet-user-secrets: from 7.0.0-alpha.1.21551.8 to 7.0.0-alpha.1.21561.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.DotNet.Common.ItemTemplates: from 7.0.100-alpha.1.21551.4 to 7.0.100-alpha.1.21554.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.TemplateEngine.Cli: from 7.0.100-alpha.1.21551.4 to 7.0.100-alpha.1.21554.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 7.0.0-alpha.1.21530.1 to 7.0.0-alpha.1.21560.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.Dotnet.WinForms.ProjectTemplates: from 7.0.0-alpha.1.21528.6 to 7.0.0-alpha.1.21552.2 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 7.0.0-alpha.1.21530.1 to 7.0.0-alpha.1.21560.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.DotNet.Wpf.ProjectTemplates: from 7.0.0-alpha.1.21528.4 to 7.0.0-alpha.1.21560.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - Microsoft.NET.Test.Sdk: from 17.1.0-preview-20211101-04 to 17.1.0-preview-20211105-01 (parent: Microsoft.NET.Sdk)
  - Microsoft.NET.ILLink.Tasks: from 7.0.100-1.21551.1 to 7.0.100-1.21558.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.Net.Compilers.Toolset: from 4.0.0-6.21551.1 to 4.0.1-1.21560.6 (parent: Microsoft.NET.Sdk)
  - Microsoft.Build: from 17.1.0-preview-21551-02 to 17.1.0-preview-21559-03 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.NetCore.SharedFramework.x64.7.0: from 7.0.0-alpha.1.21551.1 to 7.0.0-alpha.1.21561.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.NET.Workload.Emscripten.Manifest-7.0.100: from 7.0.0-alpha.1.21527.1 to 7.0.0-alpha.1.21558.1 (parent: VS.Redist.Common.NetCore.SharedFramework.x64.7.0)
2021-11-11 22:28:38 +00:00
Daniel Plaisted
a329cf4049
Merge pull request #12600 from dsplaisted/workload-manifest-msis
Bundle workload manifests as separate MSIs
2021-11-11 13:10:09 -08:00
Marc Paine
56b2f07db1
Merge pull request #12550 from dotnet/marcpopMSFT-6.0branding
Update to 6.0 in our wxl files as that was reverted a while back.
2021-11-11 12:50:22 -08:00
Daniel Plaisted
9e40d10b11 Merge release/6.0.1xx into release/6.0.2xx 2021-11-11 12:36:42 -08:00
Davis Goodin
0527f05018
dotnet/runtime: Enable source-link in source-build for '.version' file (#12527) 2021-11-11 13:16:59 -06:00
dotnet-maestro[bot]
9afbd7fef8
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211111.1 (#12638)
Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 6.0.0-alpha.1.21521.1 -> To Version 6.0.0-alpha.1.21561.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2021-11-11 17:46:25 +00:00
Michael Simons
84217d6e27
Specify depth when updating submodules (#12588) 2021-11-11 08:22:24 -06:00
Michael Simons
28afaeb89a
Flow environment variable into run-build (#12637) 2021-11-11 00:14:49 +00:00
dotnet-maestro[bot]
7667cec39e
[release/6.0.2xx] Update dependencies from dotnet/arcade (#12631)
[release/6.0.2xx] Update dependencies from dotnet/arcade
2021-11-10 23:16:51 +00:00
dotnet-maestro[bot]
c0af1d694a
Update dependencies from https://github.com/dotnet/arcade build 20211110.2 (#12633)
[release/6.0.1xx] Update dependencies from dotnet/arcade
2021-11-10 23:05:56 +00:00
William Godbe
2747a16e30
[release/6.0.2xx] update Asp.Net templates (#12598) 2021-11-10 22:45:09 +00:00
dotnet-maestro[bot]
3a49af8062
Update dependencies from https://github.com/dotnet/arcade build 20211108.5 (#12630)
[release/6.0.1xx] Update dependencies from dotnet/arcade
2021-11-10 19:49:57 +00:00
William Godbe
5a3e064b88
[release/6.0.1xx] update Asp.Net templates (#12597) 2021-11-10 18:48:36 +00:00
Daniel Plaisted
f835fd64af
Merge pull request #12516 from tmds/portable_rid_default
GetRuntimeInformation.targets: determine PortableProductMonikerRid based on OSName and Architecture.
2021-11-10 09:54:10 -08:00
William Godbe
3ab6db321c
Update Asp.Net template versions (#12599)
* Update Asp.Net template versions

* Updated package name

Co-authored-by: Brennan <brecon@microsoft.com>
2021-11-10 09:18:16 -08:00
Michael Simons
e856a47d99
Revert "Enable public tarball CI" (#12629)
This reverts commit ec426f0634687e3ebb1aba197bd795c1bf65277e.
2021-11-10 10:11:02 -06:00
dotnet-maestro[bot]
132a4bff11
Update dependencies from https://github.com/dotnet/arcade build 20211109.3 (#12628)
[main] Update dependencies from dotnet/arcade
2021-11-10 14:15:40 +00:00
v-wuzhai
f4429f0f22
Merge pull request #12619 from dotnet-maestro-bot/merge/release/6.0.2xx-to-main
[automated] Merge branch 'release/6.0.2xx' => 'main'
2021-11-10 00:13:37 -08:00
Jason Zhai
a86b293e8b Merge branch 'release/6.0.2xx' into main 2021-11-08 19:06:39 -08:00
Lee Coward
376f058e9e
Merge pull request #12618 from dotnet/leecow-snaps
update snap yaml to resolve libicu issues on some distros
2021-11-08 12:43:14 -08:00
Marc Paine
466566bf1a
Merge pull request #12605 from dotnet/marcpopMSFT-UninstallOrientation
Update the uninstall orientation on the radio buttons
2021-11-08 11:37:29 -08:00
Marc Paine
14974096b8
Merge pull request #12606 from dotnet/marcpopMSFT-fixreadmelink
Update runtime daily build link
2021-11-08 11:37:10 -08:00
Lee Coward
330750412c update snam yaml to resolve some issues 2021-11-08 11:14:11 -08:00
Djuradj Kurepa
8762385417 include System.Net.Http version 4.3.4 2021-11-08 10:41:56 +01:00
dotnet-maestro[bot]
34e9341b4d
Update dependencies from https://github.com/dotnet/arcade build 20211105.2 (#12615)
[main] Update dependencies from dotnet/arcade
2021-11-06 13:21:46 +00:00
Marc Paine
dbb47fa43a
Update bundle.thm 2021-11-05 16:06:27 -07:00
Marc Paine
161a9dcde2 Enable the DOTNET HOME mesage to be localizable. 2021-11-05 15:11:40 -07:00
Marc Paine
ec997a96d0 Enable localization of some wxs strings 2021-11-05 11:48:22 -07:00
Marc Paine
86cb0ed124 Update the release notes link. 2021-11-05 11:11:00 -07:00
dotnet-maestro[bot]
8bea75064e
Update dependencies from https://github.com/dotnet/arcade build 20211104.4 (#12611)
[main] Update dependencies from dotnet/arcade
2021-11-05 13:08:24 +00:00
Djuradj Kurepa
4b5642d215 Change back to WindowsAzure.Storage and update the version to 9.3.3 2021-11-05 12:57:17 +01:00
Jason Zhai
392fa9ffcd Merge branch 'release/6.0.1xx' into main 2021-11-04 22:44:46 -07:00
dotnet-maestro[bot]
18f80a9b90
Update dependencies from https://github.com/dotnet/arcade build 20211103.3 (#12603)
[main] Update dependencies from dotnet/arcade
- Coherency Updates:
  - Microsoft.SourceLink.GitHub: from 1.1.0-beta-21525-02 to 1.1.0-beta-21551-02 (parent: Microsoft.DotNet.Arcade.Sdk)
2021-11-05 03:47:04 +00:00
Marc Paine
9167b41929 Fixes #12228 2021-11-04 13:58:41 -07:00
Eric StJohn
bfabeefa4d
Remove install location from Windows conclusion (#12401)
* Remove install location from Windows conclusion

DOTNETHOME will not always be set in the bundle.
It's only set when an existing installation was present and the bundle is run.

As a result this string is sometimes empty.  Remove it to avoid confusion.

* Update src/redist/targets/packaging/windows/clisdk/LCID/1046/bundle.wxl

Co-authored-by: Maira Wenzel <mairaw@microsoft.com>

* Spanish

Co-authored-by: Maira Wenzel <mairaw@microsoft.com>
Co-authored-by: Carlos Sanchez <1175054+carlossanlop@users.noreply.github.com>
2021-11-04 13:16:14 -07:00
Marc Paine
e5cb4120c2
Update bundle.thm 2021-11-04 11:36:49 -07:00