forked from microsoft/kiota
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoftKiotaAbstractions.podspec
More file actions
20 lines (19 loc) · 1.01 KB
/
MicrosoftKiotaAbstractions.podspec
File metadata and controls
20 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "MicrosoftKiotaAbstractions"
s.version = "1.0.0"
s.summary = "MicrosoftKiotaAbstractions provides the base infrastructure for the Kiota-generated SDKs to function.
It defines multiple concepts related to abstract HTTP requests, serialization, and authentication.
These concepts can then be implemented independently without tying the SDKs to any specific implementation.
Kiota also provides default implementations for these concepts."
s.homepage = "https://github.com/microsoft/kiota"
s.license = { :type => "MIT" }
s.authors = { "Microsoft" => "graphtooling+kiota@service.microsoft.com" }
s.requires_arc = true
s.swift_version = "5.0"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "9.0"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/microsoft/kiota.git", :tag => s.version }
s.source_files = "Source/*.swift"
end