forked from microsoftgraph/msgraph-sdk-objc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMSGraphMSALAuthProvider.podspec
More file actions
27 lines (18 loc) · 947 Bytes
/
MSGraphMSALAuthProvider.podspec
File metadata and controls
27 lines (18 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "MSGraphMSALAuthProvider"
s.version = "0.2.1"
s.summary = "Microsoft Graph Auth Provider for MSAL."
s.description = <<-DESC
Integrate authentication in your apps using this provider to add the capability of communicating with MSGraphClientSDK.
DESC
s.homepage = "http://graph.microsoft.io"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'Microsoft Graph'
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/microsoftgraph/msgraph-sdk-objc-auth.git", :tag=> s.version }
s.source_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.{h,m}"
s.exclude_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProviderTests/*"
s.public_header_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.h"
s.dependency 'MSGraphClientSDK', '~> 1.0.0'
s.dependency 'MSAL', '~> 1.0.0'
end