You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimize compression of embedded PDB file. (#113803)
* Optimize compression of embedded PDB file.
Instead of buffering the compressed bytes to a `MemoryStream`, we directly write them to the `BlobBuilder`. This is achieved by defining a write-only stream type that wraps a `BlobBuilder`.
* Simplify writing blob builder to stream.
Copy file name to clipboardExpand all lines: src/libraries/System.Reflection.Metadata/src/System/Reflection/PortableExecutable/DebugDirectory/DebugDirectoryBuilder.EmbeddedPortablePdb.cs
+22-9Lines changed: 22 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -47,20 +47,33 @@ private static int WriteEmbeddedPortablePdbData(BlobBuilder builder, BlobBuilder
0 commit comments