Add JSON assets for VSCode development

- This adds two configuration files that allow VSCode to open the solution and begin work with the project
This commit is contained in:
Anthony Lavado
2019-01-02 02:10:43 -05:00
parent 6c27e3a7f7
commit cdcdeb5996
2 changed files with 43 additions and 0 deletions

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}/Jellyfin.Server/Jellyfin.Server.csproj"
],
"problemMatcher": "$msCompile"
}
]
}