From 7ed6714cd4c78c693177c6bbac17d44e758aaecb Mon Sep 17 00:00:00 2001 From: Manish Godse <61718172+mangod9@users.noreply.github.com> Date: Mon, 2 Aug 2021 00:57:03 -0700 Subject: [PATCH] [8/21 Infra rollout] update sdk to preview6 (#56161) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * update sdk to preview6 to check whether an arm64 bug is the root cause of NRE on macos. * Remove invalid Castle.DynamicProxy.Internal.AbstractInvocation from ILLink descriptor files The type is actually in the `Castle.DynamicProxy` namespace, not the `.Internal` one. This causes an error with newer linker versions. The whole `Castle.DynamicProxy` namespace is already preserved so we can remove the entry for AbstractInvocation. Co-authored-by: Alexander Köplinger --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index f0a1020..18f1604 100644 --- a/global.json +++ b/global.json @@ -1,11 +1,11 @@ { "sdk": { - "version": "6.0.100-preview.5.21302.13", + "version": "6.0.100-preview.6.21355.2", "allowPrerelease": true, "rollForward": "major" }, "tools": { - "dotnet": "6.0.100-preview.5.21302.13" + "dotnet": "6.0.100-preview.6.21355.2" }, "native-tools": { "cmake": "3.16.4", -- 2.7.4