From bd3fb963e701743eb6847b898eda8571ead97155 Mon Sep 17 00:00:00 2001 From: Jo Shields Date: Fri, 23 Jul 2021 10:20:49 -0400 Subject: [PATCH] Add explicit dependency on System.Reflection.Metadata to the RuntimeConfigParser task. (#56152) This change adds an explicit dependency on System.Reflection.Metadata to the RuntimeConfigParser task when targeting the full .net framework. Closes: #55277 --- src/tasks/RuntimeConfigParser/RuntimeConfigParser.csproj | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/tasks/RuntimeConfigParser/RuntimeConfigParser.csproj b/src/tasks/RuntimeConfigParser/RuntimeConfigParser.csproj index 5c9ac48afda..4d0e47b4dda 100644 --- a/src/tasks/RuntimeConfigParser/RuntimeConfigParser.csproj +++ b/src/tasks/RuntimeConfigParser/RuntimeConfigParser.csproj @@ -14,7 +14,12 @@ - + + + + + + @@ -26,7 +31,7 @@ <_PublishFramework Remove="@(_PublishFramework)" /> <_PublishFramework Include="$(TargetFrameworks)" /> - + -- 2.34.1