-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFtpClient.sublime-project
More file actions
45 lines (44 loc) · 883 Bytes
/
FtpClient.sublime-project
File metadata and controls
45 lines (44 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"folders":
[
{
"path": "System.Net.FtpClient",
"name": "System.Net.FtpClient",
"file_exclude_patterns": ["*.csproj", "*.sln"],
"folder_exclude_patterns": ["bin", "obj"]
},
{
"path": "Tests",
"name": "Tests",
"file_exclude_patterns": ["*.csproj", "*.sln"],
"folder_exclude_patterns": ["bin", "obj"]
},
{
"path": "Examples",
"name": "Examples",
"file_exclude_patterns": ["*.csproj", "*.sln"],
"folder_exclude_patterns": ["bin", "obj"]
}
],
"settings": {
"tab_size": 4
},
"build_systems": [
{
"name": "Build Debug",
"cmd": ["make", "debug"],
"working_dir": "$project_path"
},
{
"name": "Build Release",
"cmd": ["make", "release"],
"working_dir": "$project_path"
},
{
"name": "Run Tests",
"cmd": ["make", "test"],
"working_dir": "$project_path"
}
],
"solution_file": "./FtpClient.sln"
}