Create tasks.json

This commit is contained in:
Marco Carvalho 2024-04-26 00:03:24 -03:00 committed by GitHub
parent 5ab46720bf
commit 3f39524aa3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

15
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Ryujinx.sln"
],
"problemMatcher": "$msCompile"
}
]
}