mirror of https://github.com/icsharpcode/ILSpy.git
Browse Source
This commit adds a new parameter to PortablePdbWriter.WritePdb that allows the caller to provide an implementation of IProgress to receive status updates on the pdb generation process. Currently, the progress reports include the number of files generated so far and the total number of files.pull/2802/head
5 changed files with 130 additions and 8 deletions
@ -0,0 +1,44 @@
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<symbols> |
||||
<files> |
||||
<file id="1" name="ICSharpCode.Decompiler.Tests.TestCases.PdbGen\ProgressReporting.cs" language="C#" checksumAlgorithm="SHA256"> |
||||
<![CDATA[using System; |
||||
|
||||
namespace ICSharpCode.Decompiler.Tests.TestCases.PdbGen; |
||||
|
||||
public class ProgressReporting |
||||
{ |
||||
public static void Main(string[] args) |
||||
{ |
||||
Console.ReadKey(); |
||||
Console.WriteLine("Hello World!"); |
||||
Console.ReadKey(); |
||||
} |
||||
} |
||||
|
||||
public class Class1 |
||||
{ |
||||
public static void Test() |
||||
{ |
||||
Console.WriteLine("Class1"); |
||||
} |
||||
} |
||||
|
||||
public class Class2 |
||||
{ |
||||
public static void Test() |
||||
{ |
||||
Console.WriteLine("Class2"); |
||||
} |
||||
} |
||||
|
||||
public class Class3 |
||||
{ |
||||
public static void Test() |
||||
{ |
||||
Console.WriteLine("Class3"); |
||||
} |
||||
} |
||||
]]></file> |
||||
</files> |
||||
</symbols> |
Loading…
Reference in new issue