File tree 2 files changed +61
-0
lines changed
2 files changed +61
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to find out which attributes exist for C# debugging
3
+ // Use hover for the description of the existing attributes
4
+ // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " .NET Core Launch (web)" ,
9
+ "type" : " coreclr" ,
10
+ "request" : " launch" ,
11
+ "preLaunchTask" : " build" ,
12
+ // If you have changed target frameworks, make sure to update the program path.
13
+ "program" : " ${workspaceFolder}/src/Web.Api/bin/Debug/netcoreapp2.1/Web.Api.dll" ,
14
+ "args" : [],
15
+ "cwd" : " ${workspaceFolder}/src/Web.Api" ,
16
+ "stopAtEntry" : false ,
17
+ "internalConsoleOptions" : " openOnSessionStart" ,
18
+ "launchBrowser" : {
19
+ "enabled" : true ,
20
+ "args" : " http://localhost:5000/swagger" ,
21
+ "windows" : {
22
+ "command" : " cmd.exe" ,
23
+ "args" : " /C start http://localhost:5000/swagger"
24
+ },
25
+ "osx" : {
26
+ "command" : " open"
27
+ },
28
+ "linux" : {
29
+ "command" : " xdg-open"
30
+ }
31
+ },
32
+ "env" : {
33
+ "ASPNETCORE_ENVIRONMENT" : " Development"
34
+ },
35
+ "sourceFileMap" : {
36
+ "/Views" : " ${workspaceFolder}/Views"
37
+ }
38
+ },
39
+ {
40
+ "name" : " .NET Core Attach" ,
41
+ "type" : " coreclr" ,
42
+ "request" : " attach" ,
43
+ "processId" : " ${command:pickProcess}"
44
+ }
45
+ , ]
46
+ }
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/Web.Api/Web.Api.csproj"
11
+ ],
12
+ "problemMatcher" : " $msCompile"
13
+ }
14
+ ]
15
+ }
You can’t perform that action at this time.
0 commit comments