Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 82de4ee

Browse files
authored
Merge pull request #17 from microsoftgraph/vidadhee/Readme
Update readme
2 parents 900e40c + 9bb11a4 commit 82de4ee

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,25 @@ This library supports both iOS and MacOS platforms.
1313
## Installation
1414

1515

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+
1623

1724
### Using Carthage
1825

1926

2027

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.
2229

2330

2431

2532
1. Install Carthage on your Mac using a download from their website or if using Homebrew `brew install carthage`.
2633

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.
2835

2936

3037

@@ -36,9 +43,9 @@ github "microsoftgraph/msgraph-sdk-objc" "master"
3643

3744

3845

39-
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.
4047

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.
4249

4350
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:
4451

@@ -58,7 +65,7 @@ and add the paths to the frameworks you want to use under “Input Files”, e.g
5865

5966
```
6067
61-
$(SRCROOT)/Carthage/Build/iOS/MSGraphCoreSDK.framework
68+
$(SRCROOT)/Carthage/Build/iOS/MSGraphClientSDK.framework
6269
6370
```
6471

@@ -108,7 +115,7 @@ Assuming you have gone thorugh the above steps, you will now have :
108115

109116

110117

111-
1. MSGraphCoreSDK.framework integrated in your project
118+
1. A .xcworkspace file integrated with MSGraphClientSDK pod or MSGraphClientSDK.framework integrated in your project.
112119

113120

114121

0 commit comments

Comments
 (0)