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
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
2
2
[](https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-dotnet/blob/master/LICENSE)
3
3
4
-
# Manipulate Project Files via .NET Cloud REST API
4
+
# Manipulate MS Project Files in .NET via Cloud REST API
5
5
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.
7
7
8
8
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.
9
9
10
-
## MS Project Processing Features
10
+
## MS Project in .NET Processing Features
11
11
- Add project assignments or delete project assignments along with their references.
12
12
- Get the project's outline codes by index & get links to all project tasks.
13
13
- Import projects from Primavera DB formats or from databases with the specified connection string.
## Get Started with Aspose.Tasks Cloud SDK for .NET
54
54
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`.
56
56
57
-
## Convert MPP Project File to CSV in C# .Net
57
+
## Convert MS Project MPP to PDF in .NET
58
58
59
59
```csharp
60
60
// 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/#
65
65
};
66
66
67
67
vartasksApi=newTasksApi(config);
68
-
using (varinputStream=newFileStream("template.mpp", FileMode.Open))
68
+
using (varinputStream=newFileStream("some_project.mpp", FileMode.Open))
0 commit comments