From 065e46fa8e5ea21143cea96b1d433cd11763b94f Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sun, 27 Oct 2019 16:46:54 -0400 Subject: [PATCH] Update illink.targets to keep PreserveDependencyAttribute (dotnet/corefx#42157) * Update illink.targets to keep PreserveDependencyAttribute * Update illink.targets Commit migrated from https://github.com/dotnet/corefx/commit/2db6db4a51ab72078126ce288c8c39ad7bbb459f --- eng/illink.targets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eng/illink.targets b/eng/illink.targets index 1b21bfa..2978db2 100644 --- a/eng/illink.targets +++ b/eng/illink.targets @@ -82,6 +82,8 @@ $(ILLinkArgs) --skip-unresolved true $(ILLinkArgs) --disable-opt unusedinterfaces + + $(ILLinkArgs) --keep-dep-attributes true -- 2.7.4