From 1bcc85318a6b30705bf600347c7157fd804a1acf Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 14 Mar 2022 07:59:45 +0100 Subject: [PATCH] [msbuild] Disable native strip + dsymutil for simulator builds by default. (#14380) There's no reason to spend time running 'strip' or 'dsymutil' for simulator builds, so default to not doing it. --- msbuild/Xamarin.Shared/Xamarin.Shared.props | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/msbuild/Xamarin.Shared/Xamarin.Shared.props b/msbuild/Xamarin.Shared/Xamarin.Shared.props index 89bff7c2391a..85d323f03af5 100644 --- a/msbuild/Xamarin.Shared/Xamarin.Shared.props +++ b/msbuild/Xamarin.Shared/Xamarin.Shared.props @@ -236,12 +236,17 @@ Copyright (C) 2020 Microsoft. All rights reserved. $(MtouchNoSymbolStrip) true + + true false $(MtouchNoDSymUtil) + true + + true false