-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #898 from Microsoft/develop
Release 1.2.0
- Loading branch information
Showing
131 changed files
with
4,709 additions
and
2,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AppCenter' | ||
s.version = '1.1.0' | ||
s.version = '1.2.0' | ||
|
||
s.summary = 'Visual Studio App Center is your continuous integration, delivery and learning solution for iOS and macOS apps.' | ||
s.description = <<-DESC | ||
|
@@ -25,6 +25,7 @@ Pod::Spec.new do |s| | |
|
||
s.homepage = 'https://appcenter.ms' | ||
s.documentation_url = "https://docs.microsoft.com/en-us/appcenter/sdk" | ||
s.social_media_url = 'https://twitter.com/vsappcenter' | ||
|
||
s.license = { :type => 'MIT', :file => 'AppCenter-SDK-Apple/iOS/LICENSE' } | ||
s.author = { 'Microsoft' => '[email protected]' } | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
AppCenter/AppCenter/Internals/AppDelegate/MSAppDelegateUtil.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#import <Foundation/Foundation.h> | ||
#if TARGET_OS_OSX | ||
#import <AppKit/AppKit.h> | ||
#ifndef MSApplicationDelegate | ||
#define MSApplicationDelegate NSApplicationDelegate | ||
#endif | ||
#ifndef MSApplication | ||
#define MSApplication NSApplication | ||
#endif | ||
#else | ||
#import <UIKit/UIKit.h> | ||
#ifndef MSApplicationDelegate | ||
#define MSApplicationDelegate UIApplicationDelegate | ||
#endif | ||
#ifndef MSApplication | ||
#define MSApplication UIApplication | ||
#endif | ||
#endif | ||
|
Oops, something went wrong.