Skip to content

Commit 469f926

Browse files
Updated README.md
1 parent 833179e commit 469f926

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
![](https://img.shields.io/badge/api-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-tasks-cloud/aspose-tasks-cloud-go)](https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-go)
22

3-
# Manipulate Project Files via Go Cloud REST API
3+
# Manipulate MS Project Files in Go via Cloud REST API
44

5-
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in the Cloud. [Aspose.Tasks Cloud SDK for Go](https://products.aspose.cloud/tasks/go) wraps the REST API to make it easier for the developers to integrate Task Management features in their own cloud-based Go applications.
5+
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in Go. [Aspose.Tasks Cloud SDK for Go](https://products.aspose.cloud/tasks/go) wraps the REST API to make it easier for the developers to integrate MS Project Task Management features in their own cloud-based Go applications on Linux, MacOS, Windows or Android.
66

77
Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/taskscloud/Developer+Guide) & [API Reference](https://apireference.aspose.cloud/tasks/) to know all about Aspose.Tasks Cloud API.
88

9-
## MS Project Processing Features
9+
## MS Project in Go Processing Features
1010
- Add project assignments or delete project assignments along with their references.
1111
- Get the project's outline codes by index & get links to all project tasks.
1212
- Import projects from Primavera DB formats or from databases with the specified connection string.
@@ -67,9 +67,9 @@ The complete source code is available at [GitHub Repository](https://github.com/
6767

6868
## Sample usage via the SDK
6969

70-
The examples below show how your application have to initiate and get assignments from you project file using Aspose.Tasks-Cloud library:
70+
The examples below show how your application have to initiate and convert your ms project file to PDF using Go Aspose.Tasks-Cloud library:
7171

72-
## Get MPP Project Assignments in GO
72+
## Convert MS Project MPP to PDF in GO
7373

7474
```
7575
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
@@ -91,17 +91,17 @@ The examples below show how your application have to initiate and get assignment
9191
Path: "uploaded_sample.mpp",
9292
})
9393
94-
// get assignments from the project file
95-
options := &requests.GetAssignmentsOpts{
96-
Name: "uploaded_sample.mpp",
94+
// convert your ms project file to PDF
95+
options := &requests.GetReportPdfOpts{
96+
Type_: string(models.MILESTONES_ReportType),
97+
Name: "uploaded_sample.mpp"
9798
}
9899
99-
result, _, err := tasksApi.GetAssignments(ctx, options)
100+
file, response, err := tasksApi.GetReportPdf(ctx, options)
100101
101102
if err != nil {
102103
//error handling
103104
}
104-
fmt.Println(result.Assignments.AssignmentItem[0].Uid)
105105
```
106106

107107
## Aspose.Tasks Cloud SDKs in Popular Languages

0 commit comments

Comments
 (0)