File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " Launch Samples/VinV" ,
9+ "type" : " coreclr" ,
10+ "request" : " launch" ,
11+ "preLaunchTask" : " build-vinv-sample" ,
12+ "program" : " ${workspaceFolder}/Samples/VariableInVariable/bin/Debug/netcoreapp2.0/VariableInVariable.dll" ,
13+ "args" : [],
14+ "cwd" : " ${workspaceFolder}" ,
15+ "console" : " internalConsole" ,
16+ "stopAtEntry" : false ,
17+ "internalConsoleOptions" : " openOnSessionStart" ,
18+ "env" : {
19+ "ASPNETCORE_ENVIRONMENT" : " Development"
20+ }
21+ },
22+ {
23+ "name" : " .NET Core Attach" ,
24+ "type" : " coreclr" ,
25+ "request" : " attach" ,
26+ "processId" : " ${command:pickProcess}"
27+ }
28+ ]
29+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build-vinv-sample" ,
6+ "command" : " dotnet" ,
7+ "type" : " process" ,
8+ "args" : [
9+ " build" ,
10+ " ${workspaceFolder}/Samples/VariableInVariable/VariableInVariable.csproj"
11+ ],
12+ "problemMatcher" : " $msCompile"
13+ }
14+ ]
15+ }
You can’t perform that action at this time.
0 commit comments