From 73650ce7f0c7c94f089472a965224fa75bb0be80 Mon Sep 17 00:00:00 2001 From: dotnet-maestro-bot Date: Mon, 11 Sep 2017 00:57:00 -0700 Subject: Update PgoData to master-20170911-0041 --- dependencies.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.props b/dependencies.props index c51418bbd6..f3b978e762 100644 --- a/dependencies.props +++ b/dependencies.props @@ -15,14 +15,14 @@ 13b5345991e55bb0b30a236ab4f6693a870ed789 016946e95466db8aacaf2a18643352215778c54d - 413d7c0d92b6ecfa6ed1e8ae89bc2bd1aaec803a + d406f4669b4849df27d4f1ab30e78b72a657f246 4.5.0-preview2-25707-02 2.1.0-preview2-25707-02 - 99.99.99-master-20170910-0049 + 99.99.99-master-20170911-0041 -- cgit v1.2.3 From c49bce445a6950bd05d7fd6752691da2aef2883b Mon Sep 17 00:00:00 2001 From: Kevin Gosse Date: Mon, 11 Sep 2017 16:14:11 +0200 Subject: Make order of elements consistent (#13892) When the cache is only partially populated, MemberInfoCache.Insert will insert the new members into the cache. But then, it will return the original list. In subsequent calls, it will return the cached list. However, the order of elements can be different, which can cause issues with methods that rely on the order of elements returned by Type.GetFields (for instance, Attribute.GetHashCode) --- src/mscorlib/src/System/RtType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mscorlib/src/System/RtType.cs b/src/mscorlib/src/System/RtType.cs index f95c8dc032..2d70354a48 100644 --- a/src/mscorlib/src/System/RtType.cs +++ b/src/mscorlib/src/System/RtType.cs @@ -458,8 +458,8 @@ namespace System Volatile.Write(ref m_cacheComplete, true); } - else - list = m_allMembers; + + list = m_allMembers; break; default: -- cgit v1.2.3 From 5358c179e08d22b54769d22a1e6f2c8accc07f2d Mon Sep 17 00:00:00 2001 From: Konstantin Baladurin Date: Mon, 11 Sep 2017 17:48:01 +0300 Subject: Fix building of rootfs for Tizen armel (#13854) Now there isn't arm buildtarget in tizen-base repository. Use standard one to fetch packages for rootfs. --- cross/armel/tizen-fetch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cross/armel/tizen-fetch.sh b/cross/armel/tizen-fetch.sh index a0fa72b7d7..c7a509a750 100755 --- a/cross/armel/tizen-fetch.sh +++ b/cross/armel/tizen-fetch.sh @@ -155,7 +155,7 @@ fetch_tizen_pkgs() } Inform "Initialize base" -fetch_tizen_pkgs_init arm base +fetch_tizen_pkgs_init standard base Inform "fetch common packages" fetch_tizen_pkgs armv7l gcc glibc glibc-devel fetch_tizen_pkgs noarch linux-glibc-devel -- cgit v1.2.3 From e40a41bb04ff20060d6b7e522c3d84dd05002fb8 Mon Sep 17 00:00:00 2001 From: Alfred Myers Date: Mon, 11 Sep 2017 11:51:58 -0300 Subject: fixed minor typo (#13898) --- Documentation/building/windows-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md index 1cbd8e3f27..a5ce25780c 100644 --- a/Documentation/building/windows-instructions.md +++ b/Documentation/building/windows-instructions.md @@ -91,7 +91,7 @@ Powershell version must be 3.0 or higher. This should be the case for Windows 8 - Windows 7 SP1 can install Powershell version 4 [here](https://www.microsoft.com/en-us/download/details.aspx?id=40855). ## DotNet Core SDK -While not strictly needed to build or tests the .NET Core repository, having the .NET Core SDK installed lets +While not strictly needed to build or test the .NET Core repository, having the .NET Core SDK installed lets you use the dotnet.exe command to run .NET Core applications in the 'normal' way. We use this in the [Using Your Build](../workflow/UsingYourBuild.md) instructions. Visual Studio 2015 (update 3) should have installed the .NET Core SDK, but in case it did not you can get it from the [Installing the .Net Core SDK](https://www.microsoft.com/net/core) page. -- cgit v1.2.3