@@ -262,7 +262,8 @@ public void BinaryLoggerShouldEmbedFilesViaTaskOutput()
262262
263263 // Can't just compare `Name` because `ZipArchive` does not handle unix directory separators well
264264 // thus producing garbled fully qualified paths in the actual .ProjectImports.zip entries
265- zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( "testtaskoutputfile.txt" ) ) ;
265+ zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( "testtaskoutputfile.txt" ) ,
266+ ( ) => $ "Embedded files: { string . Join ( "," , zipArchive . Entries ) } ") ;
266267 }
267268
268269 [ RequiresSymbolicLinksFact ]
@@ -321,10 +322,14 @@ public void BinaryLoggerShouldEmbedSymlinkFilesViaTaskOutput()
321322
322323 // Can't just compare `Name` because `ZipArchive` does not handle unix directory separators well
323324 // thus producing garbled fully qualified paths in the actual .ProjectImports.zip entries
324- zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( "testtaskoutputfile.txt" ) ) ;
325- zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( symlinkName ) ) ;
326- zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( symlinkLvl2Name ) ) ;
327- zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( emptyFileName ) ) ;
325+ zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( "testtaskoutputfile.txt" ) ,
326+ ( ) => $ "Embedded files: { string . Join ( "," , zipArchive . Entries ) } ") ;
327+ zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( symlinkName ) ,
328+ ( ) => $ "Embedded files: { string . Join ( "," , zipArchive . Entries ) } ") ;
329+ zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( symlinkLvl2Name ) ,
330+ ( ) => $ "Embedded files: { string . Join ( "," , zipArchive . Entries ) } ") ;
331+ zipArchive . Entries . ShouldContain ( zE => zE . Name . EndsWith ( emptyFileName ) ,
332+ ( ) => $ "Embedded files: { string . Join ( "," , zipArchive . Entries ) } ") ;
328333 }
329334
330335 [ Fact ]
0 commit comments