File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " TesterApp Launch" ,
6+ "type" : " coreclr" ,
7+ "request" : " launch" ,
8+ "preLaunchTask" : " Build" ,
9+ "program" : " ${workspaceFolder}/src/TestServer/bin/Debug/netcoreapp3.1/TestServer.dll" ,
10+ "cwd" : " ${workspaceFolder}/src/TestServer/bin/Debug/netcoreapp3.1/" ,
11+ "internalConsoleOptions" : " openOnSessionStart" ,
12+ "env" :
13+ {
14+ "ASPNETCORE_ENVIRONMENT" : " Development"
15+ }
16+ }]
17+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " Build" ,
6+ "command" : " dotnet" ,
7+ "type" : " process" ,
8+ "args" : [
9+ " build" ,
10+ " ${workspaceFolder}/src/Simplify.Web.Multipart.sln"
11+ ],
12+ "problemMatcher" : " $msCompile" ,
13+ "group" :
14+ {
15+ "kind" : " build" ,
16+ "isDefault" : true
17+ }
18+ }]
19+ }
You can’t perform that action at this time.
0 commit comments