-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from AtlassianPS/release/v2.1
Release v2.1
- Loading branch information
Showing
91 changed files
with
5,637 additions
and
1,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File w/Args Prompt", | ||
"script": "${file}", | ||
"args": [ | ||
"${command:SpecifyScriptArgs}" | ||
], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "attach", | ||
"name": "PowerShell Attach to Host Process", | ||
"processId": "${command:PickPSHostProcess}", | ||
"runspaceId": 1 | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Interactive Session", | ||
"cwd": "${workspaceRoot}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.trimTrailingWhitespace": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,121 @@ | ||
// Do not edit! This file is generated by New-VSCodeTask.ps1 | ||
// Modify the build script instead and regenerate this file. | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${relativeFile}: the current opened file relative to workspaceRoot | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
{ | ||
"version": "0.1.0", | ||
"command": ".\\.vscode\\tasks.cmd", | ||
"suppressTaskName": false, | ||
"showOutput": "always", | ||
"tasks": [ | ||
{ | ||
"isBuildCommand": true, | ||
"taskName": "." | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
|
||
// Start PowerShell | ||
"windows": { | ||
"command": "${env.windir}\\system32\\windowspowershell\\v1.0\\PowerShell.exe" | ||
}, | ||
{ | ||
"taskName": "Init" | ||
"linux": { | ||
"command": "/usr/bin/powershell" | ||
}, | ||
{ | ||
"taskName": "Test" | ||
"osx": { | ||
"command": "/usr/local/bin/powershell" | ||
}, | ||
{ | ||
"taskName": "Build" | ||
}, | ||
{ | ||
"taskName": "Deploy" | ||
}, | ||
{ | ||
"taskName": "?" | ||
} | ||
] | ||
|
||
// The command is a shell script | ||
"isShellCommand": true, | ||
|
||
// Show the output window always | ||
"showOutput": "always", | ||
|
||
"args": [ | ||
"-NoProfile", "-ExecutionPolicy", "Bypass" | ||
], | ||
|
||
// Associate with test task runner | ||
"tasks": [ | ||
{ | ||
"taskName": "Clean", | ||
"suppressTaskName": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList Clean'; Invoke-psake build\\build.psake.ps1 -taskList Clean;", | ||
"Invoke-Command { Write-Host 'Completed Clean task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "Build", | ||
"suppressTaskName": true, | ||
"isBuildCommand": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList Build'; Invoke-psake build\\build.psake.ps1 -taskList Build;", | ||
"Invoke-Command { Write-Host 'Completed Build task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "BuildHelp", | ||
"suppressTaskName": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList BuildHelp'; Invoke-psake build\\build.psake.ps1 -taskList BuildHelp;", | ||
"Invoke-Command { Write-Host 'Completed BuildHelp task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "Analyze", | ||
"suppressTaskName": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList Analyze'; Invoke-psake build\\build.psake.ps1 -taskList Analyze;", | ||
"Invoke-Command { Write-Host 'Completed Analyze task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "Install", | ||
"suppressTaskName": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList Install'; Invoke-psake build\\build.psake.ps1 -taskList Install;", | ||
"Invoke-Command { Write-Host 'Completed Install task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "Publish", | ||
"suppressTaskName": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking psake on build.psake.ps1 -taskList Publish'; Invoke-psake build\\build.psake.ps1 -taskList Publish;", | ||
"Invoke-Command { Write-Host 'Completed Publish task in task runner.' }" | ||
] | ||
}, | ||
{ | ||
"taskName": "Test", | ||
"suppressTaskName": true, | ||
"isTestCommand": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"Write-Host 'Invoking Pester'; Invoke-Pester -PesterOption @{IncludeVSCodeMarker=$true};", | ||
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }" | ||
], | ||
"problemMatcher": [ | ||
{ | ||
"owner": "powershell", | ||
"fileLocation": ["absolute"], | ||
"severity": "error", | ||
"pattern": [ | ||
{ | ||
"regexp": "^\\s*(\\[-\\]\\s*.*?)(\\d+)ms\\s*$", | ||
"message": 1 | ||
}, | ||
{ | ||
"regexp": "^\\s+at\\s+[^,]+,\\s*(.*?):\\s+line\\s+(\\d+)$", | ||
"file": 1, | ||
"line": 2 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.