Added visual studio code tasks to build and test solution
This commit is contained in:
Родитель
e9a5348f6b
Коммит
95576a82c4
|
@ -195,8 +195,6 @@ bld/
|
|||
[Ll]og/
|
||||
# Visual Studio 2015 cache/options directory
|
||||
.vs/
|
||||
# Visual Studio Code tasks directory
|
||||
.vscode
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
# NUNIT
|
||||
|
@ -320,4 +318,15 @@ tools/
|
|||
!tools/packages.config
|
||||
|
||||
# .NET Core
|
||||
.dotnet/
|
||||
.dotnet/
|
||||
|
||||
# VisualStudioCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
|
||||
# VisualStudioCode Patch
|
||||
# Ignore all local history of files
|
||||
.history
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "./build.ps1 -t Build",
|
||||
"windows": {
|
||||
"command": ".\\build.cmd -t Build"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Test",
|
||||
"type": "shell",
|
||||
"command": "./build.ps1 -t Test",
|
||||
"windows": {
|
||||
"command": ".\\build.cmd -t Test"
|
||||
},
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче