Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2020-11-06 19:55:42 +0300
committerGitHub <noreply@github.com>2020-11-06 19:55:42 +0300
commit03701ba6d2656c1fb52848744980c7b799aabccf (patch)
treed1727bfec10518acb53cfe7b39728579182a4a32 /eng/illink.targets
parentcecbbfb87c1bcf661d64d799df1cb7bad325f447 (diff)
[master] Update dependencies from mono/linker (#44322)
* Update dependencies from https://github.com/mono/linker build 20201105.1 Microsoft.NET.ILLink.Tasks From Version 6.0.0-alpha.1.20527.2 -> To Version 6.0.0-alpha.1.20555.1 * Update dependencies from https://github.com/mono/linker build 20201105.2 Microsoft.NET.ILLink.Tasks From Version 6.0.0-alpha.1.20527.2 -> To Version 6.0.0-alpha.1.20555.2 * Disable new optimization for libraries mode (it cannot work in this mode) Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Marek Safar <marek.safar@gmail.com>
Diffstat (limited to 'eng/illink.targets')
-rw-r--r--eng/illink.targets2
1 files changed, 2 insertions, 0 deletions
diff --git a/eng/illink.targets b/eng/illink.targets
index d8aea8234e3..b2745751784 100644
--- a/eng/illink.targets
+++ b/eng/illink.targets
@@ -231,6 +231,8 @@
<ILLinkArgs>$(ILLinkArgs) --skip-unresolved true</ILLinkArgs>
<!-- keep interface implementations -->
<ILLinkArgs>$(ILLinkArgs) --disable-opt unusedinterfaces</ILLinkArgs>
+ <!-- keep any type check -->
+ <ILLinkArgs>$(ILLinkArgs) --disable-opt unusedtypechecks</ILLinkArgs>
</PropertyGroup>
</Target>