File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Xamarin.iOS.Tasks.Windows Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments