From ca88b95c0e98575627be5ac63b0cd0e79af9721e Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 17 Dec 2019 11:28:29 +0100 Subject: [PATCH] [msbuild] Tell ILRepack where netstandard.dll can be found. System.Text.Json references netstandard.dll, and ILRepack needs to be able to find it. --- msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj | 1 + msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj index 9433ba177f..70ae95f483 100644 --- a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj +++ b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj @@ -142,6 +142,7 @@ $(ILRepackArgs) /out:"@(IntermediateAssembly -> '%(FullPath)')" $(ILRepackArgs) "@(IntermediateAssembly -> '%(FullPath)')" $(ILRepackArgs) @(MergedAssemblies -> '"%(FullPath)"', ' ') + $(ILRepackArgs) "/lib:$(FrameworkPathOverride)/Facades" diff --git a/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj b/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj index 184f5168ed..faae167f93 100644 --- a/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj +++ b/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj @@ -127,6 +127,7 @@ $(ILRepackArgs) /out:"@(IntermediateAssembly -> '%(FullPath)')" $(ILRepackArgs) "@(IntermediateAssembly -> '%(FullPath)')" $(ILRepackArgs) @(MergedAssemblies -> '"%(FullPath)"', ' ') + $(ILRepackArgs) "/lib:$(FrameworkPathOverride)/Facades"