From 63101b9d0abd13a296c0f20d752521f4341d9ed2 Mon Sep 17 00:00:00 2001 From: Jeff Hicks Date: Tue, 8 Jan 2019 17:04:49 -0500 Subject: [PATCH] git changes --- .vscode/settings.json | 5 ----- .vscode/tasks.json | 46 ------------------------------------------- 2 files changed, 51 deletions(-) delete mode 100644 .vscode/settings.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index ea1e47c..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ - -{ - // When enabled, will trim trailing whitespace when you save a file. - "files.trimTrailingWhitespace": true -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 968d48b..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,46 +0,0 @@ -// 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 -{ - // 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", - "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ] - }, - "powershellcore-windows" : { - "command" :"${env:programfiles}/PowerShell/*/pwsh.exe", - "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ] - - }, - "powershellcore-linux": { - "command": "/usr/bin/pwsh", - "args": [ "-NoProfile" ] - }, - "powershellcore-osx": { - "command": "/usr/local/bin/pwsh", - "args": [ "-NoProfile" ] - }, - - // Associate with test task runner - "tasks": [ - { - "taskName": "Test", - "suppressTaskName": true, - "isTestCommand": true, - "args": [ - "Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script test -PesterOption @{IncludeVSCodeMarker=$true};", - "Invoke-Command { Write-Host 'Completed Test task in task runner.' }" - ], - "problemMatcher": "$pester" - } - ] -}