From c238d7402db4205f1d72b4abfe06c4ba1d55607b Mon Sep 17 00:00:00 2001 From: OCram85 Date: Thu, 21 Sep 2017 11:12:50 +0200 Subject: [PATCH] fix end of line dequence --- .vscode/tasks.json | 114 ++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index db4b410..1b864e8 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,57 +1,57 @@ -{ - // 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" - ] - }, - "linux": { - "command": "/usr/bin/powershell", - "args": [ - "-NoProfile" - ] - }, - "osx": { - "command": "/usr/local/bin/powershell", - "args": [ - "-NoProfile" - ] - }, - "tasks": [ - { - "taskName": "Test", - "suppressTaskName": true, - "isTestCommand": true, - "args": [ - "Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script '.\\tests\\*' -EnableExit $flase -PesterOption @{IncludeVSCodeMarker=$true};", - "Invoke-Command { Write-Host 'Completed Test task in task runner.' }" - ], - "problemMatcher": "$pester", - "group": { - "kind": "test", - "isDefault": true - } - }, - { - "taskName": "DebugBuild", - "suppressTaskName": true, - "args": [ - "Write-Host 'Invoking Build...';", - "Write-Host -Object 'Test previous builds.' -ForegroundColor Blue;", - "If (Test-Path -Path '.\\bin\\PSCredentialStore.zip') { Remove-Item -Path '.\\bin\\PSCredentialStore.zip' -Verbose};", - "Copy-Item -Path '.\\src\\' -Destination '.\\bin\\PSCredentialStore' -Recurse -Verbose -Force;", - "Compress-Archive -Path '.\\src\\*' -DestinationPath '.\\bin\\PSCredentialStore.zip' -Update -Verbose;" - ], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} +{ + // 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" + ] + }, + "linux": { + "command": "/usr/bin/powershell", + "args": [ + "-NoProfile" + ] + }, + "osx": { + "command": "/usr/local/bin/powershell", + "args": [ + "-NoProfile" + ] + }, + "tasks": [ + { + "taskName": "Test", + "suppressTaskName": true, + "isTestCommand": true, + "args": [ + "Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script '.\\tests\\*' -EnableExit $flase -PesterOption @{IncludeVSCodeMarker=$true};", + "Invoke-Command { Write-Host 'Completed Test task in task runner.' }" + ], + "problemMatcher": "$pester", + "group": { + "kind": "test", + "isDefault": true + } + }, + { + "taskName": "DebugBuild", + "suppressTaskName": true, + "args": [ + "Write-Host 'Invoking Build...';", + "Write-Host -Object 'Test previous builds.' -ForegroundColor Blue;", + "If (Test-Path -Path '.\\bin\\PSCredentialStore.zip') { Remove-Item -Path '.\\bin\\PSCredentialStore.zip' -Verbose};", + "Copy-Item -Path '.\\src\\' -Destination '.\\bin\\PSCredentialStore' -Recurse -Verbose -Force;", + "Compress-Archive -Path '.\\src\\*' -DestinationPath '.\\bin\\PSCredentialStore.zip' -Update -Verbose;" + ], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}