Skip to content

Commit 858eebd

Browse files
committed
A couple more
1 parent 305c390 commit 858eebd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

msbuild/Xamarin.Shared/Xamarin.Shared.targets

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ Copyright (C) 2018 Microsoft. All rights reserved.
366366
</Target>
367367

368368
<Target Name="_CleanDebugSymbols" Condition="'$(_CanOutputAppBundle)' == 'true'" DependsOnTargets="_GenerateBundleName">
369-
<GetDirectories SessionId="$(BuildSessionId)" Condition="'$(IsMacEnabled)' == 'true'" Path="$(DeviceSpecificOutputPath)" Pattern="*.dSYM">
369+
<GetDirectories SessionId="$(BuildSessionId)" Condition="'$(IsMacEnabled)' == 'true'" Path="$(DeviceSpecificOutputPath)" Pattern="*.dSYM" SdkDevPath="$(_SdkDevPath)">
370370
<Output TaskParameter="Directories" ItemName="_DebugSymbolDir" />
371371
</GetDirectories>
372372

@@ -3192,6 +3192,7 @@ Copyright (C) 2018 Microsoft. All rights reserved.
31923192
ProjectGuid="$(ProjectGuid)"
31933193
ProjectName="$(MSBuildProjectName)"
31943194
ProjectTypeGuids="$(ProjectTypeGuids)"
3195+
SdkDevPath="$(_SdkDevPath)"
31953196
SigningKey="$(_CodeSigningKey)"
31963197
SolutionPath="$(SolutionPath)"
31973198
RuntimeIdentifiers="$(RuntimeIdentifiers);$(RuntimeIdentifier)"
@@ -3275,7 +3276,8 @@ Copyright (C) 2018 Microsoft. All rights reserved.
32753276
_GetAppBundleEntitlements;
32763277
Codesign;
32773278
_CompileProductDefinition;
3278-
_WriteAppManifest
3279+
_WriteAppManifest;
3280+
_DetectSdkLocations;
32793281
</_CreateInstallerDependsOn>
32803282
</PropertyGroup>
32813283

msbuild/Xamarin.iOS.Tasks.Windows/Xamarin.iOS.Common.After.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Copyright (C) 2011-2013 Xamarin. All rights reserved.
181181
<!--Copy watchOS Dsym folders from Mac-->
182182
<MSBuild Projects="@(_WatchAppReferenceWithConfigurationExistent)" Targets="CopyDSYMFromMac" Properties="%(_WatchAppReferenceWithConfigurationExistent.SetConfiguration); %(_WatchAppReferenceWithConfigurationExistent.SetPlatform); BuildIpa=true" Condition="'$(IsWatchApp)' == 'false' And '@(_WatchAppReferenceWithConfigurationExistent)' != '' And '$(_BuildReferencedExtensionProjects)' != 'true'"></MSBuild>
183183
<!--Look for all *.dsym folders int the output path of the main app -->
184-
<GetDirectories SessionId="$(BuildSessionId)" Condition="'$(IsMacEnabled)' == 'true'" Path="$(DeviceSpecificOutputPath)" Pattern="*.dSYM">
184+
<GetDirectories SessionId="$(BuildSessionId)" Condition="'$(IsMacEnabled)' == 'true'" Path="$(DeviceSpecificOutputPath)" Pattern="*.dSYM" SdkDevPath="$(_SdkDevPath)">
185185
<Output TaskParameter="Directories" ItemName="_DSYMDir" />
186186
</GetDirectories>
187187
<ItemGroup>

0 commit comments

Comments
 (0)