From 32cd69d27465035d7aa81c5327c64ed1d7b179c6 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Sat, 14 Dec 2019 01:09:32 +0100 Subject: [PATCH] [msbuild] Split long exec command over multiple lines. Makes it easier to understand what's happening when new arguments are added (and easier to add comments to specific arguments). --- msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj | 6 +++++- msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj index 31a526ad80..645280e1b0 100644 --- a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj +++ b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Tasks.csproj @@ -139,8 +139,12 @@ /keyfile:"$(AssemblyOriginatorKeyFile)" + $(ILRepackArgs) @(LibDir -> '/lib:"%(Identity)."', ' ') + $(ILRepackArgs) /out:"@(IntermediateAssembly -> '%(FullPath)')" + $(ILRepackArgs) "@(IntermediateAssembly -> '%(FullPath)')" + $(ILRepackArgs) @(MergedAssemblies -> '"%(FullPath)"', ' ') - + diff --git a/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj b/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj index 01959326a3..17f6b699f7 100644 --- a/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj +++ b/msbuild/Xamarin.iOS.Tasks/Xamarin.iOS.Tasks.csproj @@ -124,8 +124,12 @@ /keyfile:"$(AssemblyOriginatorKeyFile)" + $(ILRepackArgs) @(LibDir -> '/lib:"%(Identity)."', ' ') + $(ILRepackArgs) /out:"@(IntermediateAssembly -> '%(FullPath)')" + $(ILRepackArgs) "@(IntermediateAssembly -> '%(FullPath)')" + $(ILRepackArgs) @(MergedAssemblies -> '"%(FullPath)"', ' ') - +