Imported Upstream version 6.12.0.134

Former-commit-id: 6b89846fe1dc71964ceaaebe45214f56be254741
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2021-03-30 08:42:34 +00:00
parent 3b8ffadc5f
commit fbb952d723
172 changed files with 2996 additions and 789 deletions

View File

@ -1 +1 @@
161c98a1ee3dae65b7b6787f5e4d8649dbea7aa3 6b37b4870d2232ccae18b57fa9d26d24dc5a8b4d

View File

@ -1 +1 @@
784aa1cf323272004d1ad07012894a3c7cc7c4c7 fec3c1a92756e9c77fead6c26d75b15a710db716

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
## Platform. ## ## Platform. ##
## --------- ## ## --------- ##
hostname = az-ubuntu-generalc926e0 hostname = az-ubuntu-general64f130
uname -m = x86_64 uname -m = x86_64
uname -r = 4.15.0-1109-azure uname -r = 4.15.0-1109-azure
uname -s = Linux uname -s = Linux
@ -747,7 +747,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_COMMANDS = CONFIG_COMMANDS =
$ ./config.status $ ./config.status
on az-ubuntu-generalc926e0 on az-ubuntu-general64f130
config.status:1238: creating Makefile config.status:1238: creating Makefile
config.status:1238: creating bdw-gc.pc config.status:1238: creating bdw-gc.pc

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
870f61a2fad4923c5a8621d86e113ee27ee87ad5 64e33e70b50d450adf6a3446c9f8ba4817dbad89

View File

@ -1 +1 @@
86617328d028e695d10a9bf335bb48752dd5eff4 1ac21ac53f4e156243352100868fa289d87cc1ca

View File

@ -1 +1 @@
d798e200b2547be66dd41643b2a457e266d38371 a473915c7f0ff7a86742f5f46d26557016a7b0d8

View File

@ -1 +1 @@
41aa5c43a335f395df71e35329c1fb6b1f36566f 37f0a12941d407991d9c916576e352623d7dacdb

View File

@ -1 +1 @@
d511939881c1168e70f00e939cbd32a27de81275 130b43c2e21d4ca1836af8da3071059cb81e4c9a

View File

@ -1 +1 @@
4f816c10625685f65be6a0257148c5456c4ea146 231752f884730d23e9bb2fa602f3e1f5b65d699b

View File

@ -1 +1 @@
3.6.0-4.20224.5 3.6.0-3.20218.3

View File

@ -0,0 +1 @@
62bdea36191c2678b6633da074ac069cec723a92

View File

@ -3,10 +3,21 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Microsoft.Managed.Core.targets"/> <Import Project="Microsoft.Managed.Core.targets"/>
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(_TargetFrameworkVersionWithoutV)' &lt; '3.0') AND <PropertyGroup>
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(_TargetFrameworkVersionWithoutV)' &lt; '2.1')"> <!-- .NETCoreApp < 3.0, .NETStandard < 2.1, or any other target framework -->
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion> <_MaxSupportedLangVersion Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(_TargetFrameworkVersionWithoutV)' &lt; '3.0') AND
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion> ('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(_TargetFrameworkVersionWithoutV)' &lt; '2.1')">7.3</_MaxSupportedLangVersion>
<!-- .NETCoreApp < 5.0, .NETStandard == 2.1 -->
<_MaxSupportedLangVersion Condition="(('$(TargetFrameworkIdentifier)' == '.NETCoreApp' AND '$(_TargetFrameworkVersionWithoutV)' &lt; '5.0') OR
('$(TargetFrameworkIdentifier)' == '.NETStandard' AND '$(_TargetFrameworkVersionWithoutV)' == '2.1')) AND
'$(_MaxSupportedLangVersion)' == ''">8.0</_MaxSupportedLangVersion>
<!-- .NETCoreApp == 5.0 -->
<_MaxSupportedLangVersion Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp' AND '$(_TargetFrameworkVersionWithoutV)' == '5.0' AND
'$(_MaxSupportedLangVersion)' == ''">9.0</_MaxSupportedLangVersion>
<LangVersion Condition="'$(LangVersion)' == '' AND '$(_MaxSupportedLangVersion)' != ''">$(_MaxSupportedLangVersion)</LangVersion>
</PropertyGroup> </PropertyGroup>
<Target Name="CoreCompile" <Target Name="CoreCompile"

Some files were not shown because too many files have changed in this diff Show More