-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathtasks.code-workspace
More file actions
112 lines (112 loc) · 3.4 KB
/
tasks.code-workspace
File metadata and controls
112 lines (112 loc) · 3.4 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
105
106
107
108
109
110
111
112
{
"folders": [
{
"path": "."
}
],
"settings": {
"dotnet.defaultSolution": "tasks.slnf"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug dn (AOT native)",
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "publish-and-copy-dn-aot",
"program": "${workspaceFolder}${/}artifacts${/}bin${/}dn${/}Debug${/}net11.0${/}win-x64${/}publish${/}dn.exe",
"args": ["--info"],
"cwd": "${workspaceFolder}${/}artifacts${/}bin${/}dn${/}Debug${/}net11.0${/}win-x64${/}publish",
"environment": [
{ "name": "DOTNET_ROOT", "value": "${workspaceFolder}/.dotnet" },
{ "name": "DOTNET_CLI_ENABLEAOT", "value": "true" }
],
"stopAtEntry": false,
"console": "integratedTerminal"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "publish-dotnet-aot",
"command": "${workspaceFolder}/.dotnet/dotnet.exe",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/Cli/dotnet-aot/dotnet-aot.csproj",
"-r", "win-x64",
"-c", "Debug"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "publish-dn",
"command": "${workspaceFolder}/.dotnet/dotnet.exe",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/Cli/dn/dn.csproj",
"-r", "win-x64",
"-c", "Debug"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "copy-dotnet-aot-lib",
"type": "shell",
"command": "copy",
"args": [
"${workspaceFolder}\\artifacts\\bin\\dotnet-aot\\Debug\\net11.0\\win-x64\\publish\\dotnet-aot.dll",
"${workspaceFolder}\\artifacts\\bin\\dn\\Debug\\net11.0\\win-x64\\publish\\"
],
"problemMatcher": []
},
{
"label": "build-dotnet",
"command": "${workspaceFolder}/.dotnet/dotnet.exe",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Cli/dotnet/dotnet.csproj",
"-c", "Debug"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "copy-dotnet-managed",
"type": "shell",
"command": "xcopy",
"args": [
"${workspaceFolder}\\artifacts\\bin\\dotnet\\Debug\\net11.0\\*",
"${workspaceFolder}\\artifacts\\bin\\dn\\Debug\\net11.0\\win-x64\\publish\\",
"/S", "/Y", "/Q"
],
"problemMatcher": []
},
{
"label": "publish-dn-aot",
"dependsOn": ["publish-dotnet-aot", "publish-dn", "build-dotnet"],
"dependsOrder": "sequence",
"problemMatcher": []
},
{
"label": "copy-all-deps",
"dependsOn": ["copy-dotnet-aot-lib", "copy-dotnet-managed"],
"dependsOrder": "sequence",
"problemMatcher": []
},
{
"label": "publish-and-copy-dn-aot",
"dependsOn": ["publish-dn-aot", "copy-all-deps"],
"dependsOrder": "sequence",
"problemMatcher": []
}
]
}
}