diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 6b60141e38a5e2..5e9013310e4e9e 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -15,7 +15,7 @@
]
},
"microsoft.dotnet.xharness.cli": {
- "version": "1.0.0-prerelease.21465.1",
+ "version": "1.0.0-prerelease.21501.2",
"commands": [
"xharness"
]
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 00000000000000..31ff731b029117
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,12 @@
+# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/dotnet/.devcontainer/base.Dockerfile
+
+# [Choice] .NET version: 5.0, 3.1, 2.1
+ARG VARIANT="5.0"
+FROM mcr.microsoft.com/vscode/devcontainers/dotnet:0-${VARIANT}
+
+# Set up machine requirements to build the repo
+RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
+ && apt-get -y install --no-install-recommends cmake llvm-9 clang-9 \
+ build-essential python curl git lldb-6.0 liblldb-6.0-dev \
+ libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev \
+ libssl-dev libnuma-dev libkrb5-dev zlib1g-dev ninja-build
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 00000000000000..b3dfd99aebd89a
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,35 @@
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
+// https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/dotnet
+{
+ "name": "C# (.NET)",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "args": {
+ // Update 'VARIANT' to pick a .NET Core version: 2.1, 3.1, 5.0
+ "VARIANT": "5.0",
+ }
+ },
+
+ "settings": {
+ // Loading projects on demand is better for larger codebases
+ "omnisharp.enableMsBuildLoadProjectsOnDemand": true
+ },
+
+ // Add the IDs of extensions you want installed when the container is created.
+ "extensions": [
+ "ms-dotnettools.csharp"
+ ],
+
+ // Use 'onCreateCommand' to run pre-build commands inside the codespace
+ "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/onCreateCommand.sh",
+
+ // Add the locally installed dotnet to the path to ensure that it is activated
+ // This allows developers to just use 'dotnet build' on the command-line, and the local dotnet version will be used.
+ "remoteEnv": {
+ "PATH": "${containerWorkspaceFolder}/.dotnet:${containerEnv:PATH}",
+ "DOTNET_MULTILEVEL_LOOKUP": "0"
+ },
+
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
+ "remoteUser": "vscode"
+}
diff --git a/.devcontainer/scripts/onCreateCommand.sh b/.devcontainer/scripts/onCreateCommand.sh
new file mode 100644
index 00000000000000..dc0154c619b82e
--- /dev/null
+++ b/.devcontainer/scripts/onCreateCommand.sh
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+
+set -e
+
+# prebuild the repo, so it is ready for development
+./build.sh libs+clr -rc Release
diff --git a/.editorconfig b/.editorconfig
index 3d69f227062704..0f3f8b932289ba 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -190,3 +190,4 @@ indent_size = 2
end_of_line = lf
[*.{cmd,bat}]
end_of_line = crlf
+
diff --git a/.github/workflows/create-codespaces-prebuild.yml b/.github/workflows/create-codespaces-prebuild.yml
new file mode 100644
index 00000000000000..6b55740121c2ed
--- /dev/null
+++ b/.github/workflows/create-codespaces-prebuild.yml
@@ -0,0 +1,17 @@
+name: Create Codespaces Prebuild
+on:
+ schedule:
+ # Run at 06:00 am UTC every day
+ - cron: '0 6 * * *'
+ workflow_dispatch:
+jobs:
+ createPrebuild:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: github/codespaces-precache@v1.0.1
+ with:
+ regions: WestUs2
+ sku_name: standardLinux32gb
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.gitignore b/.gitignore
index 59881767990291..dbdbce21b052de 100644
--- a/.gitignore
+++ b/.gitignore
@@ -279,7 +279,6 @@ Session.vim
# Visual Studio Code
.vscode/
-.devcontainer/
# Private test configuration and binaries.
config.ps1
diff --git a/Directory.Build.props b/Directory.Build.props
index 64838881765ded..a36faa2d095f12 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -86,10 +86,7 @@
$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'WasmBuildTasks', 'Debug', '$(NetCoreAppToolCurrent)', 'publish'))
$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'WorkloadBuildTasks', 'Debug', '$(NetCoreAppToolCurrent)', 'publish'))
$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'MonoAOTCompiler', 'Debug', '$(NetCoreAppToolCurrent)'))
- $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'RuntimeConfigParser', 'Debug', '$(NetCoreAppToolCurrent)'))
- $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'JsonToItemsTaskFactory', 'Debug', '$(NetCoreAppToolCurrent)'))
- $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'ILStrip', 'Debug', '$(NetCoreAppToolCurrent)'))
-
+ $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'MonoTargetsTasks', 'Debug', '$(NetCoreAppToolCurrent)'))
$([MSBuild]::NormalizePath('$(ArtifactsBinDir)', 'installer.tasks', 'Debug', '$(NetCoreAppToolCurrent)', 'installer.tasks.dll'))
$([MSBuild]::NormalizePath('$(ArtifactsBinDir)', 'installer.tasks', 'Debug', '$(NetFrameworkToolCurrent)', 'installer.tasks.dll'))
$([MSBuild]::NormalizePath('$(ArtifactsBinDir)', 'Crossgen2Tasks', 'Debug', '$(NetCoreAppToolCurrent)', 'Microsoft.NET.CrossGen.props'))
@@ -100,9 +97,7 @@
$([MSBuild]::NormalizePath('$(WasmBuildTasksDir)', 'WasmBuildTasks.dll'))
$([MSBuild]::NormalizePath('$(WorkloadBuildTasksDir)', 'WorkloadBuildTasks.dll'))
$([MSBuild]::NormalizePath('$(MonoAOTCompilerDir)', 'MonoAOTCompiler.dll'))
- $([MSBuild]::NormalizePath('$(RuntimeConfigParserDir)', 'RuntimeConfigParser.dll'))
- $([MSBuild]::NormalizePath('$(JsonToItemsTaskFactoryDir)', 'JsonToItemsTaskFactory.dll'))
- $([MSBuild]::NormalizePath('$(ILStripTaskDir)', 'ILStrip.dll'))
+ $([MSBuild]::NormalizePath('$(MonoTargetsTasksDir)', 'MonoTargetsTasks.dll'))
$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'coreclr', '$(TargetOS).$(TargetArchitecture).$(Configuration)'))
diff --git a/docs/area-owners.md b/docs/area-owners.md
index 32cd434ccaf3b1..1d2c407293c219 100644
--- a/docs/area-owners.md
+++ b/docs/area-owners.md
@@ -158,3 +158,11 @@ Note: Editing this file doesn't update the mapping used by the `@msftbot` issue
|------------------|---------------|-----------------------------------------------------|--------------|
| arch-wasm | @lewing | @lewing @BrzVlad | |
+## Community Triagers
+
+The repo has a number of community members carrying the triager role. While not necessarily associated with a specific area, they may assist with labeling issues and pull requests. Currently, the following community members are triagers:
+
+* @huoyaoyuan
+* @SingleAccretion
+* @tmds
+* @vcsjones
diff --git a/docs/design/mono/mobile-runtimeconfig-json.md b/docs/design/mono/mobile-runtimeconfig-json.md
index 239826da05220e..76bd4aa117a5ee 100644
--- a/docs/design/mono/mobile-runtimeconfig-json.md
+++ b/docs/design/mono/mobile-runtimeconfig-json.md
@@ -44,7 +44,7 @@ The task should:
```
+ AssemblyFile="$(MonoTargetsTasksAssemblyPath)" />
-
+
https://github.com/dotnet/icu
- 5b0b5c219a368095392be86d0986422f95c28569
+ 848e383f845cee4ab9edb8b20b40154910792599
-
+
https://github.com/dotnet/msquic
- dc6b618a7c46b24acf52e278998a35bdfbbf6495
+ 9b90833648c8f4f24bb79f362562779667888068
https://github.com/dotnet/emsdk
9f2345b3c5f43dbf34790e21657ae1f2445cd06a
+
+ https://github.com/dotnet/wcf
+ 7f504aabb1988e9a093c1e74d8040bd52feb2f01
+
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
https://github.com/microsoft/vstest
140434f7109d357d0158ade9e5164a4861513965
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/llvm-project
- 35de2c8bd7ac4070a7524aeef4e4ada58452949b
+ fadaad69ceb75cd54372336dde2193a39348e740
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
+
https://github.com/dotnet/runtime
- 0becd27f728f9e1eeb2a168789418ad4191ade99
+ 78ac8430e8480742181170eef91a6fb016535aa4
-
- https://github.com/mono/linker
- 0c359eadea75bde0de74d784fdc45788b3668e73
+
+ https://github.com/dotnet/linker
+ 41dc3e03cc0895d0efb37ecd3765fc37b1f17a73
-
+
https://github.com/dotnet/xharness
- e045ce36ce5d46bbd44097592bcf1b69c5ca75a2
+ 27779945a6f28639f526ec3d1e02f76436c6d22d
-
+
https://github.com/dotnet/xharness
- e045ce36ce5d46bbd44097592bcf1b69c5ca75a2
+ 27779945a6f28639f526ec3d1e02f76436c6d22d
-
+
https://github.com/dotnet/arcade
- 4b7c80f398fd3dcea03fdc4e454789b61181d300
+ 3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-optimization
- e19d09877110b301750f58c9b2abf31445befa7c
+ deb41ed73af3390e435a68fe6b5671f37113d526
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-optimization
- e19d09877110b301750f58c9b2abf31445befa7c
+ deb41ed73af3390e435a68fe6b5671f37113d526
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-optimization
- e19d09877110b301750f58c9b2abf31445befa7c
+ deb41ed73af3390e435a68fe6b5671f37113d526
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-optimization
- e19d09877110b301750f58c9b2abf31445befa7c
+ deb41ed73af3390e435a68fe6b5671f37113d526
-
+
https://github.com/dotnet/hotreload-utils
- e21c997624c774c098e33111c5c8395ae1699f61
+ fc3252e58fef2651652702298107f3fc3e3784cb
-
+
https://github.com/dotnet/runtime-assets
- d4cd815f54b09594e662d283c3886966586fe32f
+ 426f10a0dcb1a9b5fa3bf5901f88bd3a54ccaa0a
-
+
https://github.com/dotnet/roslyn-analyzers
- 897e65a14c24c9bf74109c9675f330cd215618be
+ 5e80ab913df6662e4c94b6bdaa443684706f8e52
https://github.com/dotnet/sdk
diff --git a/eng/Versions.props b/eng/Versions.props
index a7c00e5d82ee79..2efd5765d56381 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -43,41 +43,41 @@
3.11.0
- 4.0.0-3.final
- 4.0.0-3.final
+ 4.0.0-4.final
+ 4.0.0-4.final
- 3.10.0
- 3.10.0
- 7.0.0-preview1.21464.20
+ 4.0.0-4.final
+ 4.0.0-4.final
+ 7.0.0-preview1.21502.1
1.0.0-rc.1.21459.41
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 2.5.1-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
- 7.0.0-beta.21463.4
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 2.5.1-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
+ 7.0.0-beta.21474.2
6.0.0-preview.1.102
- 7.0.0-alpha.1.21463.1
- 7.0.0-alpha.1.21463.1
- 7.0.0-alpha.1.21463.1
+ 7.0.0-alpha.1.21476.2
+ 7.0.0-alpha.1.21476.2
+ 7.0.0-alpha.1.21476.2
3.1.0
- 7.0.0-alpha.1.21463.1
+ 7.0.0-alpha.1.21476.2
5.0.0
4.3.0
@@ -110,29 +110,29 @@
5.0.0
5.0.0
5.0.0
- 4.8.1
- 7.0.0-alpha.1.21463.1
- 7.0.0-alpha.1.21463.1
+ 4.9.0-rc2.21473.1
+ 7.0.0-alpha.1.21476.2
+ 7.0.0-alpha.1.21476.2
4.5.4
4.5.0
- 7.0.0-alpha.1.21463.1
+ 7.0.0-alpha.1.21476.2
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
- 7.0.0-beta.21464.1
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
+ 7.0.0-beta.21479.3
- 1.0.0-prerelease.21465.4
- 1.0.0-prerelease.21465.4
- 1.0.0-prerelease.21465.4
- 1.0.0-prerelease.21465.4
+ 1.0.0-prerelease.21502.2
+ 1.0.0-prerelease.21502.2
+ 1.0.0-prerelease.21502.2
+ 1.0.0-prerelease.21502.2
16.9.0-beta1.21055.5
2.0.0-beta1.20253.1
@@ -156,9 +156,9 @@
1.0.1-prerelease-00006
16.9.0-preview-20201201-01
- 1.0.0-prerelease.21465.1
- 1.0.0-prerelease.21465.1
- 1.0.2-alpha.0.21463.1
+ 1.0.0-prerelease.21501.2
+ 1.0.0-prerelease.21501.2
+ 1.0.2-alpha.0.21479.1
2.4.2-pre.9
2.4.2
1.3.0
@@ -166,25 +166,25 @@
2.0.4
4.12.0
2.14.3
- 6.0.100-rc.2.21463.12
+ 6.0.100-rc.2.21474.31
6.0.0-preview-20210916.1
- 7.0.100-1.21460.1
+ 7.0.100-1.21501.1
$(MicrosoftNETILLinkTasksVersion)
- 7.0.0-alpha.1.21463.1
+ 7.0.0-alpha.1.21477.1
- 6.0.0-preview.7.21458.1
+ 6.0.0-preview.7.21480.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
- 11.1.0-alpha.1.21463.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
+ 11.1.0-alpha.1.21477.1
6.0.0-rc.1.21416.1
$(MicrosoftNETWorkloadEmscriptenManifest60100Version)
diff --git a/eng/common/native/init-compiler.sh b/eng/common/native/init-compiler.sh
index 1daadf32a524fb..28f5145a6f794e 100644
--- a/eng/common/native/init-compiler.sh
+++ b/eng/common/native/init-compiler.sh
@@ -3,9 +3,10 @@
# This file detects the C/C++ compiler and exports it to the CC/CXX environment variables
#
-if [[ "$#" -lt 2 ]]; then
+if [[ "$#" -lt 3 ]]; then
echo "Usage..."
- echo "init-compiler.sh "
+ echo "init-compiler.sh