mirror of https://github.com/icsharpcode/ILSpy.git
5 changed files with 82 additions and 24 deletions
@ -1,2 +1,4 @@ |
|||||||
/*.dll |
/*.dll |
||||||
/*.pdb |
/*.pdb |
||||||
|
/*.expected.xml |
||||||
|
/*.generated.xml |
||||||
|
@ -1,33 +1,38 @@ |
|||||||
<?xml version="1.0" encoding="utf-16"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<symbols> |
<symbols> |
||||||
<files> |
<files> |
||||||
<file id="1" name="HelloWorld.cs" language="C#" checksumAlgorithm="SHA1" checksum="80-99-0D-B3-EA-B0-A3-72-39-A0-C5-FB-17-13-1B-CC-BF-3D-4C-AA" embeddedSourceLength="200"><![CDATA[using System; |
<file id="1" name="ICSharpCode\Decompiler\Tests\TestCases\PdbGen\HelloWorld.cs" language="C#" checksumAlgorithm="SHA256"><![CDATA[using System; |
||||||
|
|
||||||
namespace ICSharpCode.Decompiler.Tests.TestCases.PdbGen |
namespace ICSharpCode.Decompiler.Tests.TestCases.PdbGen |
||||||
{ |
{ |
||||||
public class HelloWorld |
public class HelloWorld |
||||||
{ |
{ |
||||||
public static void Hello() |
public static void Main(string[] args) |
||||||
{ |
{ |
||||||
|
Console.ReadKey(); |
||||||
Console.WriteLine("Hello World!"); |
Console.WriteLine("Hello World!"); |
||||||
|
Console.ReadKey(); |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
]]></file> |
]]></file> |
||||||
</files> |
</files> |
||||||
<methods> |
<methods> |
||||||
<method containingType="ICSharpCode.Decompiler.Tests.TestCases.PdbGen.HelloWorld" name="Hello" token="0x6000001"> |
<method containingType="ICSharpCode.Decompiler.Tests.TestCases.PdbGen.HelloWorld" name="Main" parameterNames="args" token="0x6000001"> |
||||||
<sequencePoints> |
<sequencePoints> |
||||||
<entry offset="0x0" startLine="8" startColumn="3" endLine="8" endColumn="4" document="1" /> |
<entry offset="0x0" startLine="8" startColumn="3" endLine="8" endColumn="4" document="1" /> |
||||||
<entry offset="0x1" startLine="9" startColumn="4" endLine="9" endColumn="38" document="1" /> |
<entry offset="0x1" startLine="9" startColumn="4" endLine="9" endColumn="22" document="1" /> |
||||||
<entry offset="0xc" startLine="10" startColumn="3" endLine="10" endColumn="4" document="1" /> |
<entry offset="0x7" startLine="10" startColumn="4" endLine="10" endColumn="38" document="1" /> |
||||||
|
|
||||||
|
<entry offset="0x12" startLine="11" startColumn="4" endLine="11" endColumn="22" document="1" /> |
||||||
|
<entry offset="0x18" startLine="12" startColumn="3" endLine="12" endColumn="4" document="1" /> |
||||||
</sequencePoints> |
</sequencePoints> |
||||||
<scope startOffset="0x0" endOffset="0xd" /> |
<scope startOffset="0x0" endOffset="0x19" /> |
||||||
</method> |
</method> |
||||||
</methods> |
</methods> |
||||||
<method-spans> |
<method-spans> |
||||||
<method declaringType="ICSharpCode.Decompiler.Tests.TestCases.PdbGen.HelloWorld" methodName="Hello" token="0x6000001"> |
<method declaringType="ICSharpCode.Decompiler.Tests.TestCases.PdbGen.HelloWorld" methodName="Main" parameterNames="args" token="0x6000001"> |
||||||
<document startLine="8" endLine="10" /> |
<document startLine="8" endLine="12" /> |
||||||
</method> |
</method> |
||||||
</method-spans> |
</method-spans> |
||||||
</symbols> |
</symbols> |
Loading…
Reference in new issue