99# confidence and expedience of validation.
1010
1111parameters :
12+ # General Parameters =====================================================
13+
1214 # Configuration with which to build the packages and execute the tests.
1315 - name : buildConfiguration
1416 type : string
@@ -20,6 +22,21 @@ parameters:
2022 - name : buildSuffix
2123 type : string
2224
25+ # Dotnet CLI verbosity level.
26+ - name : dotnetVerbosity
27+ type : string
28+ default : normal
29+ values :
30+ - quiet
31+ - minimal
32+ - normal
33+ - detailed
34+ - diagnostic
35+
36+ # Name of the pool to use for jobs that require customized VM images.
37+ - name : poolName
38+ type : string
39+
2340 # Name of the build/pack stage that this stage will depend on.
2441 - name : stageNamePack
2542 type : string
@@ -28,10 +45,6 @@ parameters:
2845 - name : stageNameSecrets
2946 type : string
3047
31- # Name of the pool to use for jobs that require customized VM images.
32- - name : poolName
33- type : string
34-
3548 # Manual Test Configuration Parameters ==================================
3649
3750 # Azure Key Vault tenant ID that will be set in the config.json file for sqlclient manual tests.
@@ -106,6 +119,7 @@ stages:
106119 parameters :
107120 buildConfiguration : ${{ parameters.buildConfiguration }}
108121 buildSuffix : ${{ parameters.buildSuffix }}
122+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
109123 platformDisplayName : ${{ platform.displayName }}
110124 platformDotnet : ${{ platform.dotnet }}
111125 platformImage : ${{ platform.image }}
@@ -119,6 +133,7 @@ stages:
119133 parameters :
120134 buildConfiguration : ${{ parameters.buildConfiguration }}
121135 buildSuffix : ${{ parameters.buildSuffix }}
136+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
122137 platformDisplayName : ${{ platform.displayName }}
123138 platformDotnet : ${{ platform.dotnet }}
124139 platformImage : ${{ platform.image }}
@@ -132,6 +147,7 @@ stages:
132147 parameters :
133148 buildConfiguration : ${{ parameters.buildConfiguration }}
134149 buildSuffix : ${{ parameters.buildSuffix }}
150+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
135151 platformDisplayName : ${{ platform.displayName }}
136152 platformDotnet : ${{ platform.dotnet }}
137153 platformImage : ${{ platform.image }}
@@ -146,6 +162,7 @@ stages:
146162 parameters :
147163 buildConfiguration : ${{ parameters.buildConfiguration }}
148164 buildSuffix : ${{ parameters.buildSuffix }}
165+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
149166 stageNameSecrets : ${{ parameters.stageNameSecrets }}
150167
151168 platformDisplayName : ${{ platform.displayName }}
@@ -170,6 +187,7 @@ stages:
170187 parameters :
171188 buildConfiguration : ${{ parameters.buildConfiguration }}
172189 buildSuffix : ${{ parameters.buildSuffix }}
190+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
173191 stageNameSecrets : ${{ parameters.stageNameSecrets }}
174192
175193 platformDisplayName : ${{ platform.displayName }}
@@ -194,6 +212,7 @@ stages:
194212 parameters :
195213 buildConfiguration : " Release" # AE tests are not stable enough to run in DEBUG mode (as of 5/29/26)
196214 buildSuffix : ${{ parameters.buildSuffix }}
215+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
197216 stageNameSecrets : ${{ parameters.stageNameSecrets }}
198217
199218 platformDisplayName : ${{ platform.displayName }}
@@ -218,6 +237,7 @@ stages:
218237 parameters :
219238 buildConfiguration : ${{ parameters.buildConfiguration }}
220239 buildSuffix : ${{ parameters.buildSuffix }}
240+ dotnetVerbosity : ${{ parameters.dotnetVerbosity }}
221241 platformDisplayName : ${{ platform.displayName }}
222242 platformDotnet : ${{ platform.dotnet }}
223243 platformImage : ${{ platform.image }}
0 commit comments