We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 470658e commit 410c157Copy full SHA for 410c157
1 file changed
Make.ps1
@@ -36,6 +36,11 @@ param (
36
# Build, run tests, produce code coverage report.
37
[Parameter(Mandatory, ParameterSetName="Coverage")]
38
[switch] $Coverage
39
+,
40
+ # Do not build before running tests.
41
+ [Parameter(ParameterSetName="Test")]
42
+ [Parameter(ParameterSetName="Coverage")]
43
+ [switch] $NoBuild
44
,
45
# The configuration to build: Debug or Release. The default is Debug.
46
[Parameter(ParameterSetName="Build")]
@@ -78,7 +83,9 @@ function Main {
78
83
return
79
84
}
80
85
81
- Invoke-Build
86
+ if (!$NoBuild) {
87
+ Invoke-Build
88
+ }
82
89
90
if ($Test -or $Coverage) {
91
Invoke-Test
0 commit comments