1- // Do not edit! This file is generated by New-VSCodeTask.ps1
2- // Modify the build script or tasks-merge.json and recreate.
31{
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
44 "version" : " 2.0.0" ,
55 "windows" : {
66 "options" : {
77 "shell" : {
88 "executable" : " pwsh.exe" ,
99 "args" : [
1010 " -NoProfile" ,
11+ " -ExecutionPolicy Bypass" ,
1112 " -NonInteractive" ,
12- " -ExecutionPolicy" ,
13- " Bypass" ,
1413 " -Command"
1514 ]
1615 }
2019 "options" : {
2120 "shell" : {
2221 "executable" : " /usr/bin/pwsh" ,
23- "args" : [
24- " -NoProfile" ,
25- " -Command"
26- ]
22+ "args" : [ " -NoProfile" , " -Command" ]
2723 }
2824 }
2925 },
3026 "osx" : {
3127 "options" : {
3228 "shell" : {
3329 "executable" : " /usr/local/bin/pwsh" ,
34- "args" : [
35- " -NoProfile" ,
36- " -Command"
37- ]
30+ "args" : [ " -NoProfile" , " -Command" ]
3831 }
3932 }
4033 },
4134 "tasks" : [
4235 {
4336 "label" : " Build" ,
44- "group" : " build" ,
4537 "type" : " shell" ,
46- "command" : " Invoke-Build -Task Build" ,
47- "problemMatcher" : " $msCompile" ,
48- "presentation" : {
49- "echo" : false ,
50- "showReuseMessage" : false
51- }
38+ "group" : " build" ,
39+ "command" : " Invoke-Build Build" ,
40+ "problemMatcher" : []
5241 },
5342 {
5443 "label" : " Clean" ,
5544 "type" : " shell" ,
56- "command" : " Invoke-Build -Task Clean" ,
57- "problemMatcher" : " $msCompile" ,
58- "presentation" : {
59- "echo" : false ,
60- "showReuseMessage" : false
61- }
45+ "command" : " Invoke-Build Clean" ,
46+ "problemMatcher" : []
47+ },
48+ {
49+ "label" : " Install" ,
50+ "type" : " shell" ,
51+ "command" : " Invoke-Build Install" ,
52+ "problemMatcher" : []
53+ },
54+ {
55+ "label" : " Update docs" ,
56+ "type" : " shell" ,
57+ "command" : " Invoke-Build UpdateDocs" ,
58+ "problemMatcher" : []
6259 },
6360 {
6461 "label" : " Test" ,
6562 "group" : " test" ,
6663 "type" : " shell" ,
6764 "command" : " Invoke-Pester" ,
68- "args" : [" -Output" , " Detailed" ],
6965 "options" : {
70- "cwd" : " test"
66+ "cwd" : " ${workspaceFolder}/ test"
7167 },
7268 "problemMatcher" : " $msCompile" ,
7369 "presentation" : {
7470 "echo" : false ,
7571 "showReuseMessage" : false
7672 },
7773 "dependsOn" : " Build"
78- },
79- {
80- "label" : " Install" ,
81- "type" : " shell" ,
82- "command" : " Invoke-Build" ,
83- "args" : [" Install" , " -Configuration" , " Release" ],
84- "problemMatcher" : " $msCompile" ,
85- "presentation" : {
86- "echo" : false ,
87- "showReuseMessage" : false
88- }
8974 }
9075 ]
91- }
76+ }
0 commit comments