Skip to content

Commit

Permalink
Merge pull request #2407 from microsoft/develop
Browse files Browse the repository at this point in the history
Merge develop to master for release 4.4.2(after fix)
  • Loading branch information
DmitriyKirakosyan committed Mar 28, 2022
2 parents e16321c + 876b237 commit 8354a50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SasquatchMac/SasquatchMac/Constants.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ + (NSString *_Nonnull)kMSObjcAppSecret {

+ (NSString *_Nonnull)kMSObjCTargetToken {
#if ACTIVE_COMPILATION_CONDITION_PUPPET
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"IOS_OBJC_TARGET_TOKEN_PUPPET"] ?: @"";
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"MAC_OBJC_TARGET_TOKEN_PUPPET"] ?: @"";
#else
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"IOS_OBJC_TARGET_TOKEN"] ?: @"";
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"MAC_OBJC_TARGET_TOKEN"] ?: @"";
#endif
}

+ (NSString *_Nonnull)kMSObjCRuntimeTargetToken {
#if ACTIVE_COMPILATION_CONDITION_PUPPET
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"IOS_OBJC_RUNTIME_TARGET_TOKEN_PUPPET"] ?: @"";
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"MAC_OBJC_RUNTIME_TARGET_TOKEN_PUPPET"] ?: @"";
#else
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"IOS_OBJC_RUNTIME_TARGET_TOKEN"] ?: @"";
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"MAC_OBJC_RUNTIME_TARGET_TOKEN"] ?: @"";
#endif
}

Expand Down

0 comments on commit 8354a50

Please sign in to comment.