Skip to content

Commit 46d2fb7

Browse files
committed
organized into operations for simpler module division later
1 parent cfa2bc5 commit 46d2fb7

File tree

65 files changed

+4721
-3867
lines changed

Some content is hidden

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

65 files changed

+4721
-3867
lines changed

.brackets.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"typescript": {
3+
"target": "ES5",
4+
"module": "none",
5+
"noImplicitAny": true,
6+
"sources" : [
7+
"src/**/*.ts",
8+
"src/**/*.d.ts"
9+
]
10+
}
11+
}

src/ews-javascript-api.sln

+7-25
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,25 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.22512.0
4+
VisualStudioVersion = 14.0.22609.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ews-typescript-api", "ews-typescript-api\ews-typescript-api.csproj", "{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}"
7-
EndProject
86
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8B0ECC63-A9E9-428A-8CBE-C9EDA38717D2}"
97
ProjectSection(SolutionItems) = preProject
108
WebEssentials-Settings.json = WebEssentials-Settings.json
119
EndProjectSection
1210
EndProject
11+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ews-typescript-api", "ews-typescript-api\ews-typescript-api.csproj", "{96CC8472-61A3-4AD5-B44A-5AB50696A751}"
12+
EndProject
1313
Global
1414
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1515
Debug|Any CPU = Debug|Any CPU
16-
Debug|ARM = Debug|ARM
17-
Debug|x64 = Debug|x64
18-
Debug|x86 = Debug|x86
1916
Release|Any CPU = Release|Any CPU
20-
Release|ARM = Release|ARM
21-
Release|x64 = Release|x64
22-
Release|x86 = Release|x86
2317
EndGlobalSection
2418
GlobalSection(ProjectConfigurationPlatforms) = postSolution
25-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|Any CPU.Build.0 = Debug|Any CPU
27-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|ARM.ActiveCfg = Debug|Any CPU
28-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|ARM.Build.0 = Debug|Any CPU
29-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|x64.ActiveCfg = Debug|Any CPU
30-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|x64.Build.0 = Debug|Any CPU
31-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|x86.ActiveCfg = Debug|Any CPU
32-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Debug|x86.Build.0 = Debug|Any CPU
33-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|Any CPU.ActiveCfg = Release|Any CPU
34-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|Any CPU.Build.0 = Release|Any CPU
35-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|ARM.ActiveCfg = Release|Any CPU
36-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|ARM.Build.0 = Release|Any CPU
37-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|x64.ActiveCfg = Release|Any CPU
38-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|x64.Build.0 = Release|Any CPU
39-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|x86.ActiveCfg = Release|Any CPU
40-
{2ED46AD9-99FB-4711-B2E9-F5882C0A8BCF}.Release|x86.Build.0 = Release|Any CPU
19+
{96CC8472-61A3-4AD5-B44A-5AB50696A751}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{96CC8472-61A3-4AD5-B44A-5AB50696A751}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{96CC8472-61A3-4AD5-B44A-5AB50696A751}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{96CC8472-61A3-4AD5-B44A-5AB50696A751}.Release|Any CPU.Build.0 = Release|Any CPU
4123
EndGlobalSection
4224
GlobalSection(SolutionProperties) = preSolution
4325
HideSolutionNode = FALSE

src/ews-typescript-api/Autodiscover.d.ts

-185
This file was deleted.

0 commit comments

Comments
 (0)