Skip to content

Commit 57cde3a

Browse files
author
Vasiliy Sinitsyn
committed
Initial commit
0 parents  commit 57cde3a

File tree

235 files changed

+70678
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+70678
-0
lines changed

.gitignore

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
2+
Temp/
3+
obj/
4+
classes/
5+
generated/
6+
*.suo
7+
bin/
8+
*_out_*
9+
* Out*
10+
* out*
11+
*.ldb
12+
Thumbs.db
13+
_ReSharper*/
14+
out/
15+
*.lic
16+
*.user
17+
Out/
18+
Out*/
19+
Data/*Out*
20+
TestResults/
21+
*.ide
22+
*.vsmdi
23+
test-results/
24+
node_modules/
25+
*.userprefs
26+
packages/
27+
Plugins/Aspose_Tasks_NET_for_PHP/.idea/*
28+
Plugins/Aspose_Tasks_NET_for_PHP/vendor/*
29+
Plugins/Aspose_Tasks_NET_for_PHP/composer.lock
30+
*.gitattributes
31+
*.pyc
32+
# Built application files
33+
*.apk
34+
*.ap_
35+
36+
# Files for the ART/Dalvik VM
37+
*.dex
38+
39+
# Java class files
40+
*.class
41+
42+
# Generated files
43+
bin/
44+
gen/
45+
out/
46+
47+
# Gradle files
48+
.gradle/
49+
build/
50+
51+
# Local configuration file (sdk path, etc)
52+
local.properties
53+
54+
# Proguard folder generated by Eclipse
55+
proguard/
56+
57+
# Log Files
58+
*.log
59+
60+
# Android Studio Navigation editor temp files
61+
.navigation/
62+
63+
# Android Studio captures folder
64+
captures/
65+
66+
# Intellij
67+
*.iml
68+
.idea/workspace.xml
69+
.idea/tasks.xml
70+
.idea/gradle.xml
71+
.idea/dictionaries
72+
.idea/libraries
73+
74+
# Keystore files
75+
*.jks
76+
77+
# External native build folder generated in Android Studio 2.2 and later
78+
.externalNativeBuild
79+
80+
# Google Services (e.g. APIs or Firebase)
81+
google-services.json
82+
83+
# Freeline
84+
freeline.py
85+
freeline/
86+
freeline_project_description.json
87+
88+
# Compiled class file
89+
*.class
90+
91+
# Log file
92+
*.log
93+
94+
# BlueJ files
95+
*.ctxt
96+
97+
# Mobile Tools for Java (J2ME)
98+
.mtj.tmp/
99+
100+
# Package Files #
101+
*.war
102+
*.ear
103+
*.zip
104+
*.tar.gz
105+
*.rar
106+
107+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
108+
hs_err_pid*
109+
110+
.DS_Store
111+
*.xcuserstate*StyleCop.Cache
112+
*StyleCop.Cache
113+
.idea/*
114+
vendor/*
115+
testReports/*
116+
/.settings/org.eclipse.wst.validation.prefs
117+
/.buildpath
118+
/.project

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Aspose Pty Ltd
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Aspose.Tasks for Cloud
2+
[Aspose.Tasks for Cloud](https://products.aspose.cloud/tasks/cloud)
3+
4+
Aspose.Tasks for Cloud is a REST API for manipulating and converting Microsoft Project documents hosted on cloud platforms. It allows you to work with all aspects of a Project document as well as offers a wide range of export options allowing developers to convert Microsoft Project documents a number of industry standard formats. Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to work with Project documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights.
5+
6+
This repository contains Aspose.Tasks Cloud SDK for PHP source code. This SDK allows you to work with Aspose.Tasks Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.
7+
8+
To use these SDK, you will need App SID and App Key which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (free registration in Aspose Cloud is required for this).
9+
10+
# Licensing
11+
All Aspose.Tasks for Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
12+
13+
# Resources
14+
+ [**Website**](https://www.aspose.cloud)
15+
+ [**Product Home**](https://products.aspose.cloud/tasks/cloud)
16+
+ [**Documentation**](https://docs.aspose.cloud/display/taskscloud/Home)
17+
+ [**Free Support Forum**](https://forum.aspose.cloud/c/tasks)
18+
+ [**Paid Support Helpdesk**](https://helpdesk.aspose.cloud/)
19+
+ [**Blog**](https://blog.aspose.cloud/category/aspose-products/aspose-tasks-product-family/)

TestData/Calenar with exception.mpp

222 KB
Binary file not shown.

TestData/CalendarWorkWeeks.mpp

176 KB
Binary file not shown.

TestData/EmptyDuration.mpp

181 KB
Binary file not shown.

TestData/External_Links_ProjectB.mpp

228 KB
Binary file not shown.

TestData/Home move plan.mpp

410 KB
Binary file not shown.

TestData/New project 2013.mpp

224 KB
Binary file not shown.

TestData/NewProductDev.mpp

351 KB
Binary file not shown.

0 commit comments

Comments
 (0)