Skip to content

Commit 173be18

Browse files
committed
Merged PR 475885: Add support for F5 for csproj and sln
Add support for F5 for csproj and sln This PR adds a new "language" for the "dotnet" debugger to use when a user presses F5 / Run and Debug when the current active file is a '.csproj' or '.sln'. Related work items: #1829422
1 parent 88c95b4 commit 173be18

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

package.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,7 @@
679679
"onDebugResolve:dotnet",
680680
"onLanguage:csharp",
681681
"onLanguage:aspnetcorerazor",
682+
"onLanguage:dotnetProject",
682683
"onCommand:o.restart",
683684
"onCommand:o.pickProjectAndStart",
684685
"onCommand:o.showOutput",
@@ -4121,7 +4122,8 @@
41214122
"languages": [
41224123
"csharp",
41234124
"razor",
4124-
"aspnetcorerazor"
4125+
"aspnetcorerazor",
4126+
"dotnetProject"
41254127
],
41264128
"variables": {},
41274129
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
@@ -4739,6 +4741,16 @@
47394741
"aliases": [
47404742
"ASP.NET Razor"
47414743
]
4744+
},
4745+
{
4746+
"id": "dotnetProject",
4747+
"extensions": [
4748+
".csproj",
4749+
".sln"
4750+
],
4751+
"aliases": [
4752+
".NET Project"
4753+
]
47424754
}
47434755
],
47444756
"grammars": [

0 commit comments

Comments
 (0)