|
62 | 62 | "stopAtEntry": false, |
63 | 63 | "console": "internalConsole" |
64 | 64 | }, |
| 65 | + { |
| 66 | + "name": "Launch Microsoft.Build.Tasks.CodeAnalysis.dll via MSBuild.exe (netfx)", |
| 67 | + "type": "clr", |
| 68 | + "request": "launch", |
| 69 | + "preLaunchTask": "build toolset", |
| 70 | + "program": "C:/Program Files/Microsoft Visual Studio/2022/Preview/MSBuild/Current/Bin/amd64/MSBuild.exe", |
| 71 | + "args": [ |
| 72 | + "-restore", |
| 73 | + "-p:RoslynTargetsPath=${workspaceFolder}/artifacts/bin/Microsoft.Net.Compilers.Toolset.Package/Debug/tasks/net472", |
| 74 | + ], |
| 75 | + // A simple project that can be used to debug the build tasks against. |
| 76 | + "cwd": "${workspaceFolder}/src/Tools/Source/CompilerGeneratorTools/Source/BoundTreeGenerator", |
| 77 | + "stopAtEntry": false, |
| 78 | + "console": "internalConsole" |
| 79 | + }, |
| 80 | + { |
| 81 | + "name": "Launch Microsoft.Build.Tasks.CodeAnalysis.dll via MSBuild.exe (netcore)", |
| 82 | + "type": "clr", |
| 83 | + "request": "launch", |
| 84 | + "preLaunchTask": "build toolset", |
| 85 | + "program": "C:/Program Files/Microsoft Visual Studio/2022/Preview/MSBuild/Current/Bin/amd64/MSBuild.exe", |
| 86 | + "args": [ |
| 87 | + "-restore", |
| 88 | + "-p:RoslynTargetsPath=${workspaceFolder}/artifacts/bin/Microsoft.Net.Compilers.Toolset.Package/Debug/tasks/netcore", |
| 89 | + ], |
| 90 | + // A simple project that can be used to debug the build tasks against. |
| 91 | + "cwd": "${workspaceFolder}/src/Tools/Source/CompilerGeneratorTools/Source/BoundTreeGenerator", |
| 92 | + "stopAtEntry": false, |
| 93 | + "console": "internalConsole" |
| 94 | + }, |
| 95 | + { |
| 96 | + "name": "Launch Microsoft.Build.Tasks.CodeAnalysis.dll via dotnet build", |
| 97 | + "type": "coreclr", |
| 98 | + "request": "launch", |
| 99 | + "preLaunchTask": "build toolset", |
| 100 | + "program": "dotnet", |
| 101 | + "args": [ |
| 102 | + "build", |
| 103 | + "-p:RoslynTargetsPath=${workspaceFolder}/artifacts/bin/Microsoft.Net.Compilers.Toolset.Package/Debug/tasks/netcore", |
| 104 | + ], |
| 105 | + // A simple project that can be used to debug the build tasks against. |
| 106 | + "cwd": "${workspaceFolder}/src/Tools/Source/CompilerGeneratorTools/Source/BoundTreeGenerator", |
| 107 | + "stopAtEntry": false, |
| 108 | + "console": "internalConsole" |
| 109 | + }, |
65 | 110 | { |
66 | 111 | "name": ".NET Core Launch (console)", |
67 | 112 | "type": "coreclr", |
|
0 commit comments