-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnail.NET.code-workspace
More file actions
104 lines (104 loc) · 2.02 KB
/
Copy pathSnail.NET.code-workspace
File metadata and controls
104 lines (104 loc) · 2.02 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"folders": [
{
"path": ".",
"name": "ROOT"
},
// -- 系统扩展:工具层面
{
"path": "./src/Snail.Utilities",
"name": "💎 src/Snail.Utilities"
},
// -- 抽象层
{
"path": "./src/Snail.Abstractions",
"name": "📌 src/Snail.Abstractions"
},
{
"path": "./src/Snail.Aspect",
"name": "📌 src/Snail.Aspect"
},
// -- 实现类库
{
"path": "./src/Snail",
"name": "📦 src/Snail"
},
{
"path": "./src/Snail.Logger",
"name": "📦 src/Snail.Logger"
},
{
"path": "./src/Snail.RabbitMQ",
"name": "📦 src/Snail.RabbitMQ"
},
{
"path": "./src/Snail.WebApp",
"name": "📦 src/Snail.WebApp"
},
// -- 实现类库:数据库实现
{
"path": "./src/Snail.Elastic",
"name": "🗄️ src/Snail.Elastic"
},
{
"path": "./src/Snail.Mongo",
"name": "🗄️ src/Snail.Mongo"
},
{
"path": "./src/Snail.MySql",
"name": "🗄️ src/Snail.MySql"
},
{
"path": "./src/Snail.SqlCore",
"name": "🗄️ src/Snail.SqlCore"
},
{
"path": "./src/Snail.PostgreSql",
"name": "🗄️ src/Snail.PostgreSql"
},
// -- 测试类库
{
"path": "./test/Snail.Test",
"name": "🧰 test/Snail.Test"
},
{
"path": "./test/Snail.WebApiTest",
"name": "🧰 test/Snail.WebApiTest"
},
],
"settings": {
"files.exclude": {
// 默认配置
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
},
"svn.ignoreMissingSvnWarning": true
},
"extensions": {
"recommendations": [
"ms-dotnettools.vscode-dotnet-runtime",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"tintoy.msbuild-project-tools",
"jtlowe.vscode-icon-theme",
"ms-vscode.vs-keybindings",
"MS-CEINTL.vscode-language-pack-zh-hans",
],
},
// 运行启动 配置
"launch": {
"version": "0.2.0",
"configurations": [
// 附加进程,方便调试iis站点
{
"name": "🎉 .NET Core Attach",
"type": "coreclr",
"request": "attach",
},
],
"compounds": []
},
}