* Added auto discovery fo files to monitor.

* Fixed scriptanalyzer rule

* Adjusted the parameter attributes

* testing feature specifications

* Added module building

* fix build

* fix build

* fix build

* Exceptions and spacing

* added project settings

* minor edits

* resolve merge conflict
This commit is contained in:
Kevin Marquette
2017-08-05 19:54:53 -07:00
committed by GitHub
parent 3fdc8a02d9
commit 9deb9890e7
3 changed files with 6 additions and 2 deletions

4
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,4 @@
// Place your settings in this file to overwrite default and user settings.
{
"powershell.codeFormatting.preset": "Allman"
}

View File

@@ -25,7 +25,7 @@ class Chronometer
$breakpointParam = @{ $breakpointParam = @{
Script = $file Script = $file
Line = $bpLine Line = $bpLine
Action = { [ScriptProfiler]::RecordExecution( $_) } Action = { [ScriptProfiler]::RecordExecution( $_) }
} }
$this.breakPoint += Set-PSBreakpoint @breakpointParam $this.breakPoint += Set-PSBreakpoint @breakpointParam

View File

@@ -130,7 +130,7 @@ Task Deploy -Depends Build {
) )
{ {
$Params = @{ $Params = @{
Path = $ProjectRoot Path = $ProjectRoot
Force = $true Force = $true
} }