Skip to content

Commit 3ca1919

Browse files
Updated README.md
1 parent 9c94f1e commit 3ca1919

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22
![](https://img.shields.io/badge/api-v3.0-lightgrey) ![Nuget](https://img.shields.io/nuget/v/Aspose.tasks-Cloud) ![Nuget](https://img.shields.io/nuget/dt/Aspose.tasks-Cloud) [![GitHub license](https://img.shields.io/github/license/aspose-tasks-cloud/aspose-tasks-cloud-dotnet)](https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-dotnet/blob/master/LICENSE) ![GitHub last commit](https://img.shields.io/github/last-commit/Aspose-tasks-Cloud/aspose-tasks-cloud-dotnet)
33

4-
# Manipulate Project Files via .NET Cloud REST API
4+
# Manipulate MS Project Files in .NET via Cloud REST API
55

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

88
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.
99

10-
## MS Project Processing Features
10+
## MS Project in .NET Processing Features
1111
- Add project assignments or delete project assignments along with their references.
1212
- Get the project's outline codes by index & get links to all project tasks.
1313
- Import projects from Primavera DB formats or from databases with the specified connection string.
@@ -52,9 +52,9 @@ XER, XLSX, HTML, XML, TXT, TIF, SVG, PNG, JPEG
5252

5353
## Get Started with Aspose.Tasks Cloud SDK for .NET
5454

55-
Register an account at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) to get you application information. Next, execute `Install-Package Aspose.Tasks-Cloud` from the Package Manager Console in Visual Studio to fetch & reference Aspose.Tasks Cloud SDK assembly in your project. If you already have Aspose.Tasks Cloud SDK for .NET, execute `Update-Package Aspose.Tasks-Cloud` to get the latest version. You may alternatively install the package from command line as `nuget install Aspose.Tasks-Cloud`.
55+
Register an account at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) to get you application information. Next, execute `Install-Package Aspose.Tasks-Cloud` from the Package Manager Console in Visual Studio to fetch & reference Aspose.Tasks Cloud SDK .NET assembly in your project. If you already have Aspose.Tasks Cloud SDK for .NET, execute `Update-Package Aspose.Tasks-Cloud` to get the latest version. You may alternatively install the package from command line as `nuget install Aspose.Tasks-Cloud`.
5656

57-
## Convert MPP Project File to CSV in C# .Net
57+
## Convert MS Project MPP to PDF in .NET
5858

5959
```csharp
6060
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
@@ -65,16 +65,16 @@ Register an account at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#
6565
};
6666

6767
var tasksApi = new TasksApi(config);
68-
using (var inputStream = new FileStream("template.mpp", FileMode.Open))
68+
using (var inputStream = new FileStream("some_project.mpp", FileMode.Open))
6969
{
70-
var uploadFileRequest = new PostCreateRequest("template.mpp", inputStream);
70+
var uploadFileRequest = new PostCreateRequest("some_project.mpp", inputStream);
7171
tasksApi.UploadFile(uploadFileRequest);
7272
}
7373

74-
var request = new PostTaskDocumentWithFormatRequest();
75-
request.Name = "template.mpp";
76-
request.Format = ProjectFileFormat.Csv;
77-
Stream response = tasksApi.PostTaskDocumentWithFormat(request);
74+
var request = new GetReportPdfRequest();
75+
request.Name = "some_project.mpp";
76+
request.Type = ReportType.Milestones;
77+
Stream response = await tasksApi.GetReportPdfAsync(request);
7878
```
7979

8080
## Aspose.Tasks Cloud SDKs in Popular Languages

0 commit comments

Comments
 (0)