You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,25 @@ This library supports both iOS and MacOS platforms.
13
13
## Installation
14
14
15
15
16
+
### Using CocoaPods
17
+
18
+
You can use [CocoaPods](https://cocoapods.org/) to remain up to date with our latest version. Include the following line in your podfile:
19
+
```
20
+
pod 'MSGraphClientSDK'
21
+
```
22
+
16
23
17
24
### Using Carthage
18
25
19
26
20
27
21
-
We use [Carthage](https://github.com/Carthage/Carthage) for package management during the preview period. This package manager integrates very nicely with XCode while maintaining our ability to make changes to the library.
28
+
You can also chose to use [Carthage](https://github.com/Carthage/Carthage) for package management.
22
29
23
30
24
31
25
32
1. Install Carthage on your Mac using a download from their website or if using Homebrew `brew install carthage`.
26
33
27
-
2. You must create a `Cartfile` that lists the MSGraphCoreSDK library for this project on Github.
34
+
2. You must create a `Cartfile` that lists the MSGraphClientSDK library for this project on Github.
3. Run `carthage update`. This will fetch dependencies into a `Carthage/Checkouts` folder, then build the MSGraphCoreSDK library.
46
+
3. Run `carthage update`. This will fetch dependencies into a `Carthage/Checkouts` folder, then build the MSGraphClientSDK library.
40
47
41
-
4. On your application target's “General” settings tab, in the “Linked Frameworks and Libraries” section, drag and drop the `MSGraphCoreSDK.framework` from the `Carthage/Build` folder on disk.
48
+
4. On your application target's “General” settings tab, in the “Linked Frameworks and Libraries” section, drag and drop the `MSGraphClientSDK.framework` from the `Carthage/Build` folder on disk.
42
49
43
50
5. On your application target's “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase”. Create a Run Script in which you specify your shell (ex: `/bin/sh`), add the following contents to the script area below the shell:
44
51
@@ -58,7 +65,7 @@ and add the paths to the frameworks you want to use under “Input Files”, e.g
0 commit comments