@@ -184,7 +184,7 @@ public async Task PackageCommand_ToolDiscovery_FindsCommonBuildTools()
184184 var missingTools = new List < string > ( ) ;
185185
186186 // Ensure BuildTools are installed
187- var buildToolsPath = await _buildToolsService . EnsureBuildToolsAsync ( quiet : true ) ;
187+ var buildToolsPath = await _buildToolsService . EnsureBuildToolsAsync ( ) ;
188188 if ( buildToolsPath == null )
189189 {
190190 Assert . Fail ( "Cannot run test - BuildTools installation failed." ) ;
@@ -249,7 +249,6 @@ public async Task CreateMsixPackageAsync_OutputPathHandling_WorksCorrectly(strin
249249 packageName : "TestPackage" ,
250250 skipPri : true ,
251251 autoSign : false ,
252- verbose : true ,
253252 cancellationToken : CancellationToken . None
254253 ) ;
255254
@@ -273,7 +272,6 @@ await _msixService.CreateMsixPackageAsync(
273272 packageName : "TestPackage" ,
274273 skipPri : true ,
275274 autoSign : false ,
276- verbose : true ,
277275 cancellationToken : CancellationToken . None
278276 ) ;
279277 } , "Expected DirectoryNotFoundException when input folder does not exist." ) ;
@@ -298,7 +296,6 @@ await _msixService.CreateMsixPackageAsync(
298296 packageName : "TestPackage" ,
299297 skipPri : true ,
300298 autoSign : false ,
301- verbose : true ,
302299 cancellationToken : CancellationToken . None
303300 ) ;
304301 } , "Expected FileNotFoundException when manifest file is missing." ) ;
@@ -340,7 +337,6 @@ public async Task CreateMsixPackageAsync_ExternalManifestWithAssets_CopiesManife
340337 skipPri : true ,
341338 autoSign : false ,
342339 manifestPath : externalManifestPath ,
343- verbose : true ,
344340 cancellationToken : CancellationToken . None
345341 ) ;
346342
@@ -368,7 +364,7 @@ public async Task CreateMsixPackageAsync_WithSigningAndMatchingPublishers_Should
368364 const string testPublisher = "CN=TestPublisher" ; // This matches StandardTestManifestContent
369365
370366 var certResult = await _certificateService . GenerateDevCertificateAsync (
371- testPublisher , certPath , testPassword , verbose : true ) ;
367+ testPublisher , certPath , testPassword ) ;
372368
373369 // Create minimal winsdk.yaml
374370 await File . WriteAllTextAsync ( _configService . ConfigPath , "packages: []" ) ;
@@ -382,7 +378,6 @@ public async Task CreateMsixPackageAsync_WithSigningAndMatchingPublishers_Should
382378 autoSign : true ,
383379 certificatePath : certPath ,
384380 certificatePassword : testPassword ,
385- verbose : true ,
386381 cancellationToken : CancellationToken . None
387382 ) ;
388383
@@ -405,7 +400,7 @@ public async Task CreateMsixPackageAsync_WithSigningAndMismatchedPublishers_Shou
405400 const string wrongPublisher = "CN=WrongPublisher" ; // This does NOT match StandardTestManifestContent
406401
407402 var certResult = await _certificateService . GenerateDevCertificateAsync (
408- wrongPublisher , certPath , testPassword , verbose : true ) ;
403+ wrongPublisher , certPath , testPassword ) ;
409404
410405 // Create minimal winsdk.yaml
411406 await File . WriteAllTextAsync ( _configService . ConfigPath , "packages: []" ) ;
@@ -421,7 +416,6 @@ await _msixService.CreateMsixPackageAsync(
421416 autoSign : true ,
422417 certificatePath : certPath ,
423418 certificatePassword : testPassword ,
424- verbose : true ,
425419 cancellationToken : CancellationToken . None
426420 ) ;
427421 } ) ;
@@ -453,7 +447,7 @@ public async Task CreateMsixPackageAsync_WithExternalManifestAndMismatchedCertif
453447 const string wrongPublisher = "CN=DifferentPublisher" ;
454448
455449 await _certificateService . GenerateDevCertificateAsync (
456- wrongPublisher , certPath , testPassword , verbose : true ) ;
450+ wrongPublisher , certPath , testPassword ) ;
457451
458452 // Create minimal winsdk.yaml
459453 await File . WriteAllTextAsync ( _configService . ConfigPath , "packages: []" ) ;
@@ -470,7 +464,6 @@ await _msixService.CreateMsixPackageAsync(
470464 certificatePath : certPath ,
471465 certificatePassword : testPassword ,
472466 manifestPath : externalManifestPath ,
473- verbose : true ,
474467 cancellationToken : CancellationToken . None
475468 ) ;
476469 } ) ;
@@ -494,7 +487,7 @@ public void CertificateService_ExtractPublisherFromCertificate_ShouldReturnCorre
494487
495488 // Create a test certificate using the existing certificate service
496489 var certResult = _certificateService . GenerateDevCertificateAsync (
497- testPublisherCN , certPath , testPassword , verbose : true ) . GetAwaiter ( ) . GetResult ( ) ;
490+ testPublisherCN , certPath , testPassword ) . GetAwaiter ( ) . GetResult ( ) ;
498491
499492 // Act
500493 var extractedPublisher = CertificateService . ExtractPublisherFromCertificate ( certPath , testPassword ) ;
@@ -525,7 +518,7 @@ public void CertificateService_ExtractPublisherFromCertificate_WithWrongPassword
525518 const string wrongPassword = "wrong123" ;
526519
527520 _certificateService . GenerateDevCertificateAsync (
528- "CN=PasswordTestPublisher" , certPath , correctPassword , verbose : true ) . GetAwaiter ( ) . GetResult ( ) ;
521+ "CN=PasswordTestPublisher" , certPath , correctPassword ) . GetAwaiter ( ) . GetResult ( ) ;
529522
530523 // Act & Assert
531524 Assert . ThrowsExactly < InvalidOperationException > ( ( ) =>
@@ -545,7 +538,7 @@ public async Task CertificateService_ValidatePublisherMatch_WithMatchingPublishe
545538
546539 // Create certificate
547540 await _certificateService . GenerateDevCertificateAsync (
548- commonPublisher , certPath , testPassword , verbose : true ) ;
541+ commonPublisher , certPath , testPassword ) ;
549542
550543 // Create manifest with same publisher
551544 var manifestContent = StandardTestManifestContent . Replace (
@@ -566,7 +559,7 @@ public async Task CertificateService_ValidatePublisherMatch_WithMismatchedPublis
566559
567560 // Create certificate with one publisher
568561 await _certificateService . GenerateDevCertificateAsync (
569- "CN=CertificatePublisher" , certPath , testPassword , verbose : true ) ;
562+ "CN=CertificatePublisher" , certPath , testPassword ) ;
570563
571564 // Create manifest with different publisher
572565 var manifestContent = StandardTestManifestContent . Replace (
0 commit comments