├── .gitattributes ├── .github └── workflows │ ├── netfx.yml │ └── netstd.yml ├── .gitignore ├── CilTools.BytecodeAnalysis ├── CallingConvention.cs ├── CilAnalysis.cs ├── CilErrorEventArgs.cs ├── CilGraph.cs ├── CilGraphNode.cs ├── CilInstruction.cs ├── CilInstructionImpl.cs ├── CilReader.cs ├── CilTokenInstruction.cs ├── CilTools.BytecodeAnalysis.csproj ├── CustomModifier.cs ├── DebugUtils.cs ├── Diagnostics.cs ├── ElementType.cs ├── Extensions.cs ├── MetadataReader.cs ├── ReadMe.txt ├── Reflection │ ├── ComplexType.cs │ ├── CustomMethod.cs │ ├── ExceptionBlock.cs │ ├── FunctionPointerType.cs │ ├── GenericContext.cs │ ├── GenericParamType.cs │ ├── ICustomAttribute.cs │ ├── ICustomMethod.cs │ ├── IParamsProvider.cs │ ├── IReflectionInfo.cs │ ├── ITokenResolver.cs │ ├── ITypeInfo.cs │ ├── LocalVariable.cs │ ├── MemoryImage.cs │ ├── Methods │ │ ├── ConstructorInfoWrapper.cs │ │ ├── MethodBaseWrapper.cs │ │ ├── MethodBodyData.cs │ │ └── MethodInfoWrapper.cs │ ├── ModuleWrapper.cs │ ├── ModuleWrapperDynamic.cs │ ├── PInvokeParams.cs │ ├── PortableExecutable │ │ └── VTable.cs │ ├── RefResolutionMode.cs │ ├── ReflectionFacts.cs │ ├── ReflectionUtils.cs │ ├── SignatureContext.cs │ ├── Types.cs │ ├── UnknownMethod.cs │ └── UnknownType.cs ├── Signature.cs ├── SourceCode │ ├── FragmentBase.cs │ ├── SourceCodeProvider.cs │ ├── SourceDocument.cs │ ├── SourceFragment.cs │ └── SourceUtils.cs ├── Syntax │ ├── BlockSyntax.cs │ ├── CommentSyntax.cs │ ├── DirectiveSyntax.cs │ ├── Disassembler.cs │ ├── DisassemblerParams.cs │ ├── Generation │ │ ├── SyntaxGenerator.cs │ │ └── TypeSyntaxGenerator.cs │ ├── GenericSyntax.cs │ ├── IdentifierSyntax.cs │ ├── InstructionSyntax.cs │ ├── InvalidSyntax.cs │ ├── KeywordKind.cs │ ├── KeywordSyntax.cs │ ├── LiteralSyntax.cs │ ├── MemberRefSyntax.cs │ ├── MethodDefSyntax.cs │ ├── PunctuationSyntax.cs │ ├── SyntaxClassifier.cs │ ├── SyntaxFactory.cs │ ├── SyntaxNode.cs │ ├── SyntaxUtils.cs │ └── Tokens │ │ ├── IlasmTokenFactory.cs │ │ ├── SyntaxReader.cs │ │ ├── SyntaxTokenDefinition.cs │ │ └── TokenReader.cs ├── TypeSpec.cs ├── docs │ └── design-analyzers.md ├── license.txt └── readme.md ├── CilTools.CommandLine ├── BrowseCommand.cs ├── CLI.cs ├── CilTools.CommandLine.csproj ├── Command.cs ├── CommandLineArgs.cs ├── DisasmCommand.cs ├── FileInfoCommand.cs ├── HelpCommand.cs ├── Program.cs ├── ReadmeCommand.cs ├── ViewCommand.cs ├── ViewSourceCommand.cs ├── changes.md ├── cil.cmd ├── cil.sh ├── license.txt ├── readme.md └── run.cmd ├── CilTools.Metadata ├── AssemblyReader.cs ├── AssemblyRef.cs ├── CilTools.Metadata.csproj ├── Constructors │ ├── ConstructorDef.cs │ ├── ConstructorRef.cs │ └── MdConstructorBase.cs ├── EventDef.cs ├── FieldDef.cs ├── FieldRef.cs ├── Internal │ ├── AttributeComparer.cs │ ├── MemberComparer.cs │ └── Utils.cs ├── MetadataAssembly.cs ├── MetadataCustomAttribute.cs ├── Methods │ ├── AttributesCollection.cs │ ├── MdMethodInfoBase.cs │ ├── MethodDef.cs │ ├── MethodRef.cs │ └── MethodSpec.cs ├── ModuleDef.cs ├── ParameterSpec.cs ├── PortableExecutable │ └── VTableSlot.cs ├── PropertyDef.cs ├── TypeDef.cs ├── TypeForward.cs ├── TypeRef.cs ├── UnknownMethod.cs ├── UnknownType.cs ├── changes.md └── license.txt ├── CilTools.Runtime ├── CilTools.Runtime.csproj ├── ClrAssemblyInfo.cs ├── ClrAssemblyReader.cs ├── ClrConstructorInfo.cs ├── ClrDynamicMethod.cs ├── ClrFieldInfo.cs ├── ClrMethodInfo.cs ├── ClrStackFrameInfo.cs ├── ClrThreadInfo.cs ├── ClrTypeInfo.cs ├── DynamicMethodsAssembly.cs ├── DynamicMethodsType.cs ├── DynamicResolver.cs ├── HeapScanner.cs ├── MethodId.cs ├── Methods │ ├── AttributesCollection.cs │ └── ClrMethodData.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadMe.txt ├── UnknownType.cs ├── Utils.cs ├── packages.config └── pkg │ ├── .gitignore │ ├── CilTools.Runtime.dll.nuspec │ ├── ReadMe.txt │ ├── lib │ └── net45 │ │ └── CilTools.Runtime.XML │ └── package.cmd ├── CilTools.SourceCode ├── CSharp │ ├── CSharpClassifier.cs │ └── CSharpVerbatimLiteralToken.cs ├── CilTools.SourceCode.csproj ├── Common │ ├── CommonNameToken.cs │ ├── SourceCodeUtils.cs │ ├── SourceLanguage.cs │ ├── SourceParser.cs │ ├── SourceToken.cs │ ├── SourceTokenFactory.cs │ ├── SyntaxNodeCollection.cs │ ├── TokenClassifier.cs │ └── TokenKind.cs ├── Cpp │ └── CppClassifier.cs ├── VisualBasic │ ├── VbClassifier.cs │ └── VbCommentToken.cs └── license.txt ├── CilTools.Visualization ├── CilTools.Visualization.csproj ├── ConsoleVisualizer.cs ├── HtmlBuilder.cs ├── HtmlVisualizer.cs ├── OutputFormat.cs ├── PlaintextVisualizer.cs ├── SyntaxVisualizer.cs ├── UrlProviderBase.cs ├── Utils.cs ├── VisualizationOptions.cs └── license.txt ├── CilTools.sln ├── CilToolsDemo ├── App.config ├── AssemblyInfo.cs ├── CilToolsDemo.csproj └── Program.cs ├── CilView.Core ├── CilView.Core.csproj ├── Common │ ├── HtmlBuilder.cs │ └── Utils.cs ├── DocumentModel │ ├── IlasmAssembly.cs │ └── IlasmType.cs ├── Documentation │ ├── DocsRewriter.cs │ ├── TextFragment.cs │ └── TextParagraph.cs ├── FileSystem │ ├── AssemblyFile.cs │ └── RuntimeDir.cs ├── FileUtils.cs ├── InstructionInfo.cs ├── Internal.Pdb.Readers │ ├── Portable │ │ ├── PortablePdb.cs │ │ └── SourceLineData.cs │ └── Windows │ │ ├── BitAccess.cs │ │ ├── BitSet.cs │ │ ├── CvInfo.cs │ │ ├── DataStream.cs │ │ ├── DbiDbgHdr.cs │ │ ├── DbiHeader.cs │ │ ├── DbiModuleInfo.cs │ │ ├── DbiSecCon.cs │ │ ├── LICENSE │ │ ├── MsfDirectory.cs │ │ ├── PdbConstant.cs │ │ ├── PdbDebugException.cs │ │ ├── PdbException.cs │ │ ├── PdbFile.cs │ │ ├── PdbFileHeader.cs │ │ ├── PdbFunction.cs │ │ ├── PdbReader.cs │ │ ├── PdbScope.cs │ │ ├── PdbSequencePoint.cs │ │ ├── PdbSequencePointCollection.cs │ │ ├── PdbSlot.cs │ │ ├── PdbSource.cs │ │ ├── PdbStreamHelper.cs │ │ └── ReadMe.txt ├── MethodRunner.cs ├── Reflection │ ├── AssemblyInfoProvider.cs │ ├── MethodExecutionResults.cs │ └── MethodParameter.cs ├── SourceCode │ ├── CppDecompiler.cs │ ├── CsharpDecompiler.cs │ ├── Decompiler.cs │ ├── PdbCodeProvider.cs │ ├── PdbUtils.cs │ ├── SymbolsException.cs │ ├── SymbolsQueryType.cs │ └── VisualBasic │ │ └── VbDecompiler.cs ├── Syntax │ ├── DocumentSyntax.cs │ ├── IlasmParser.cs │ └── SyntaxWriter.cs └── Visualization │ └── AssemblyUrlProvider.cs ├── CilView.UI ├── AppBuilder.cs ├── AssemblySource.cs ├── AssemblyUrlProvider.cs ├── CilView.UI.csproj ├── FileAssemblySource.cs ├── IndexPage.cs ├── SearchResult.cs └── index.html ├── CilView ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblySource.cs ├── Build │ ├── BuildProjectOperation.cs │ ├── BuildSystemInvocation.cs │ ├── CsTemplate.xml │ ├── ProjectGenerator.cs │ ├── ProjectInfo.cs │ └── VbTemplate.xml ├── CilView.csproj ├── CilVisualization.cs ├── Common │ ├── Audio.cs │ ├── HistoryContainer.cs │ └── WpfUtils.cs ├── ErrorHandler.cs ├── Exceptions │ ├── ExceptionInfo.cs │ └── TypeExceptionInfo.cs ├── FileAssemblySource.cs ├── IlasmAssemblySource.cs ├── Image │ └── IL.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── OpenDocumentOperation.cs ├── OpenFileOperation.cs ├── OpenProcessOperation.cs ├── OperationBase.cs ├── ProcessAssemblySource.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── README.md ├── SearchResult.cs ├── SourceCode │ ├── SourceCodeUI.cs │ ├── SourceLinkEntry.cs │ ├── SourceLinkMap.cs │ └── SourceVisualization.cs ├── ThreadsWindow.xaml ├── ThreadsWindow.xaml.cs ├── UI.Controls │ ├── CilBrowser.xaml │ ├── CilBrowser.xaml.cs │ ├── CilBrowserPage.xaml │ ├── CilBrowserPage.xaml.cs │ ├── InstructionMenu.cs │ └── TextListViewer.cs ├── UI.Dialogs │ ├── ExecuteWindow.xaml │ ├── ExecuteWindow.xaml.cs │ ├── HtmlViewWindow.xaml │ ├── HtmlViewWindow.xaml.cs │ ├── MethodSourceViewWindow.xaml │ ├── MethodSourceViewWindow.xaml.cs │ ├── OpenBclWindow.xaml │ ├── OpenBclWindow.xaml.cs │ ├── OpenCodeWindow.xaml │ ├── OpenCodeWindow.xaml.cs │ ├── ProgressWindow.xaml │ ├── ProgressWindow.xaml.cs │ ├── SelectProcessWindow.xaml │ ├── SelectProcessWindow.xaml.cs │ ├── SourceViewWindow.xaml │ ├── SourceViewWindow.xaml.cs │ ├── TextViewWindow.xaml │ ├── TextViewWindow.xaml.cs │ ├── wndError.xaml │ └── wndError.xaml.cs ├── Visualization │ ├── CilViewUrlProvider.cs │ ├── ServerBase.cs │ └── VisualizationServer.cs ├── WmiAssemblySource.cs ├── credits.txt ├── license.txt ├── manual.html ├── packages.config └── readme.txt ├── Directory.Build.props ├── Examples ├── CilTools_Examples.sln ├── Example4.cs ├── ExampleDisassemble │ ├── App.config │ ├── ExampleDisassemble.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── packages.config │ └── readme.md ├── ExampleInstructions │ ├── ExampleInstructions.csproj │ ├── Program.cs │ └── readme.md ├── ExampleReferencedMethods │ ├── ExampleReferencedMethods.csproj │ ├── Program.cs │ └── readme.md ├── Example_ClrMD.cs ├── Example_MetadataReader.cs └── readme.md ├── LICENSE ├── README.md ├── browser.cfg ├── docfx_project ├── .gitignore ├── _site_pdf │ └── docfx_project.json ├── api │ ├── .manifest │ ├── CilTools.BytecodeAnalysis.CallingConvention.yml │ ├── CilTools.BytecodeAnalysis.CilAnalysis.yml │ ├── CilTools.BytecodeAnalysis.CilErrorEventArgs.yml │ ├── CilTools.BytecodeAnalysis.CilGraph.yml │ ├── CilTools.BytecodeAnalysis.CilGraphNode.yml │ ├── CilTools.BytecodeAnalysis.CilGraphNodeMutable.yml │ ├── CilTools.BytecodeAnalysis.CilInstruction.yml │ ├── CilTools.BytecodeAnalysis.CilParserException.yml │ ├── CilTools.BytecodeAnalysis.CilReader.yml │ ├── CilTools.BytecodeAnalysis.CilReaderState.yml │ ├── CilTools.BytecodeAnalysis.CustomModifier.yml │ ├── CilTools.BytecodeAnalysis.DebugUtils.yml │ ├── CilTools.BytecodeAnalysis.Diagnostics.yml │ ├── CilTools.BytecodeAnalysis.ElementType.yml │ ├── CilTools.BytecodeAnalysis.Extensions.CilExtensions.yml │ ├── CilTools.BytecodeAnalysis.Extensions.yml │ ├── CilTools.BytecodeAnalysis.MemberCriteria.yml │ ├── CilTools.BytecodeAnalysis.Signature.yml │ ├── CilTools.BytecodeAnalysis.TypeSpec.yml │ ├── CilTools.BytecodeAnalysis.yml │ ├── CilTools.Metadata.AssemblyReader.yml │ ├── CilTools.Metadata.yml │ ├── CilTools.Reflection.ComplexType.yml │ ├── CilTools.Reflection.ComplexTypeKind.yml │ ├── CilTools.Reflection.CustomMethod.yml │ ├── CilTools.Reflection.ExceptionBlock.yml │ ├── CilTools.Reflection.GenericContext.yml │ ├── CilTools.Reflection.GenericParamType.yml │ ├── CilTools.Reflection.ICustomAttribute.yml │ ├── CilTools.Reflection.ICustomMethod.yml │ ├── CilTools.Reflection.IParamsProvider.yml │ ├── CilTools.Reflection.IReflectionInfo.yml │ ├── CilTools.Reflection.ITokenResolver.yml │ ├── CilTools.Reflection.ITypeInfo.yml │ ├── CilTools.Reflection.LocalVariable.yml │ ├── CilTools.Reflection.MemoryImage.yml │ ├── CilTools.Reflection.PInvokeParams.yml │ ├── CilTools.Reflection.PortableExecutable.VTable.yml │ ├── CilTools.Reflection.PortableExecutable.yml │ ├── CilTools.Reflection.RefResolutionMode.yml │ ├── CilTools.Reflection.ReflectionProperties.yml │ ├── CilTools.Reflection.SignatureContext.yml │ ├── CilTools.Reflection.yml │ ├── CilTools.Runtime.ClrAssemblyInfo.yml │ ├── CilTools.Runtime.ClrAssemblyReader.yml │ ├── CilTools.Runtime.ClrConstructorInfo.yml │ ├── CilTools.Runtime.ClrMethodInfo.yml │ ├── CilTools.Runtime.ClrStackFrameInfo.yml │ ├── CilTools.Runtime.ClrThreadInfo.yml │ ├── CilTools.Runtime.DynamicMethodsAssembly.yml │ ├── CilTools.Runtime.yml │ ├── CilTools.SourceCode.Common.SourceCodeUtils.yml │ ├── CilTools.SourceCode.Common.SourceLanguage.yml │ ├── CilTools.SourceCode.Common.SourceParser.yml │ ├── CilTools.SourceCode.Common.SourceToken.yml │ ├── CilTools.SourceCode.Common.SourceTokenFactory.yml │ ├── CilTools.SourceCode.Common.SyntaxNodeCollection.yml │ ├── CilTools.SourceCode.Common.TokenKind.yml │ ├── CilTools.SourceCode.Common.yml │ ├── CilTools.SourceCode.FragmentBase.yml │ ├── CilTools.SourceCode.SourceCodeProvider.yml │ ├── CilTools.SourceCode.SourceDocument.yml │ ├── CilTools.SourceCode.SourceFragment.yml │ ├── CilTools.SourceCode.yml │ ├── CilTools.Syntax.BlockSyntax.yml │ ├── CilTools.Syntax.CommentSyntax.yml │ ├── CilTools.Syntax.DirectiveSyntax.yml │ ├── CilTools.Syntax.Disassembler.yml │ ├── CilTools.Syntax.DisassemblerParams.yml │ ├── CilTools.Syntax.IdentifierKind.yml │ ├── CilTools.Syntax.IdentifierSyntax.yml │ ├── CilTools.Syntax.InstructionSyntax.yml │ ├── CilTools.Syntax.KeywordKind.yml │ ├── CilTools.Syntax.KeywordSyntax.yml │ ├── CilTools.Syntax.LiteralSyntax.yml │ ├── CilTools.Syntax.MemberRefSyntax.yml │ ├── CilTools.Syntax.MethodDefSyntax.yml │ ├── CilTools.Syntax.PunctuationSyntax.yml │ ├── CilTools.Syntax.SyntaxFactory.yml │ ├── CilTools.Syntax.SyntaxNode.yml │ ├── CilTools.Syntax.Tokens.CommentToken.yml │ ├── CilTools.Syntax.Tokens.DoubleQuotLiteralToken.yml │ ├── CilTools.Syntax.Tokens.MultilineCommentToken.yml │ ├── CilTools.Syntax.Tokens.NumericLiteralToken.yml │ ├── CilTools.Syntax.Tokens.PunctuationToken.yml │ ├── CilTools.Syntax.Tokens.SingleQuotLiteralToken.yml │ ├── CilTools.Syntax.Tokens.SyntaxReader.yml │ ├── CilTools.Syntax.Tokens.SyntaxTokenDefinition.yml │ ├── CilTools.Syntax.Tokens.TokenReader.yml │ ├── CilTools.Syntax.Tokens.WhitespaceToken.yml │ ├── CilTools.Syntax.Tokens.yml │ ├── CilTools.Syntax.yml │ ├── CilTools.Visualization.HtmlVisualizer.yml │ ├── CilTools.Visualization.OutputFormat.yml │ ├── CilTools.Visualization.SyntaxVisualizer.yml │ ├── CilTools.Visualization.UrlProviderBase.yml │ ├── CilTools.Visualization.VisualizationOptions.yml │ ├── CilTools.Visualization.yml │ ├── index.md │ └── toc.yml ├── articles │ ├── architecture.md │ ├── cilview-manual.md │ ├── inspect-function-pointers.md │ ├── intro.md │ ├── toc.yml │ ├── using-bytecode-analysis.md │ ├── using-ciltools-metadata.md │ └── using-syntax-api.md ├── build.cmd ├── docfx.json ├── images │ ├── IL.png │ ├── cilview.png │ ├── cilview2.png │ └── cilview3.png ├── index.md ├── logo.svg ├── pdf │ └── toc.yml └── toc.yml ├── docs ├── api │ ├── CilTools.BytecodeAnalysis.CallingConvention.html │ ├── CilTools.BytecodeAnalysis.CilAnalysis.html │ ├── CilTools.BytecodeAnalysis.CilErrorEventArgs.html │ ├── CilTools.BytecodeAnalysis.CilGraph.html │ ├── CilTools.BytecodeAnalysis.CilGraphNode.html │ ├── CilTools.BytecodeAnalysis.CilGraphNodeMutable.html │ ├── CilTools.BytecodeAnalysis.CilInstruction.html │ ├── CilTools.BytecodeAnalysis.CilParserException.html │ ├── CilTools.BytecodeAnalysis.CilReader.html │ ├── CilTools.BytecodeAnalysis.CilReaderState.html │ ├── CilTools.BytecodeAnalysis.CustomModifier.html │ ├── CilTools.BytecodeAnalysis.DebugUtils.html │ ├── CilTools.BytecodeAnalysis.Diagnostics.html │ ├── CilTools.BytecodeAnalysis.ElementType.html │ ├── CilTools.BytecodeAnalysis.Extensions.CilExtensions.html │ ├── CilTools.BytecodeAnalysis.Extensions.html │ ├── CilTools.BytecodeAnalysis.MemberCriteria.html │ ├── CilTools.BytecodeAnalysis.Signature.html │ ├── CilTools.BytecodeAnalysis.TypeSpec.html │ ├── CilTools.BytecodeAnalysis.html │ ├── CilTools.Metadata.AssemblyReader.html │ ├── CilTools.Metadata.html │ ├── CilTools.Reflection.ComplexType.html │ ├── CilTools.Reflection.ComplexTypeKind.html │ ├── CilTools.Reflection.CustomMethod.html │ ├── CilTools.Reflection.ExceptionBlock.html │ ├── CilTools.Reflection.GenericContext.html │ ├── CilTools.Reflection.GenericParamType.html │ ├── CilTools.Reflection.ICustomAttribute.html │ ├── CilTools.Reflection.ICustomMethod.html │ ├── CilTools.Reflection.IParamsProvider.html │ ├── CilTools.Reflection.IReflectionInfo.html │ ├── CilTools.Reflection.ITokenResolver.html │ ├── CilTools.Reflection.ITypeInfo.html │ ├── CilTools.Reflection.LocalVariable.html │ ├── CilTools.Reflection.MemoryImage.html │ ├── CilTools.Reflection.PInvokeParams.html │ ├── CilTools.Reflection.PortableExecutable.VTable.html │ ├── CilTools.Reflection.PortableExecutable.html │ ├── CilTools.Reflection.RefResolutionMode.html │ ├── CilTools.Reflection.ReflectionProperties.html │ ├── CilTools.Reflection.SignatureContext.html │ ├── CilTools.Reflection.html │ ├── CilTools.Runtime.ClrAssemblyInfo.html │ ├── CilTools.Runtime.ClrAssemblyReader.html │ ├── CilTools.Runtime.ClrConstructorInfo.html │ ├── CilTools.Runtime.ClrMethodInfo.html │ ├── CilTools.Runtime.ClrStackFrameInfo.html │ ├── CilTools.Runtime.ClrThreadInfo.html │ ├── CilTools.Runtime.DynamicMethodsAssembly.html │ ├── CilTools.Runtime.html │ ├── CilTools.SourceCode.Common.SourceCodeUtils.html │ ├── CilTools.SourceCode.Common.SourceLanguage.html │ ├── CilTools.SourceCode.Common.SourceParser.html │ ├── CilTools.SourceCode.Common.SourceToken.html │ ├── CilTools.SourceCode.Common.SourceTokenFactory.html │ ├── CilTools.SourceCode.Common.SyntaxNodeCollection.html │ ├── CilTools.SourceCode.Common.TokenKind.html │ ├── CilTools.SourceCode.Common.html │ ├── CilTools.SourceCode.FragmentBase.html │ ├── CilTools.SourceCode.SourceCodeProvider.html │ ├── CilTools.SourceCode.SourceDocument.html │ ├── CilTools.SourceCode.SourceFragment.html │ ├── CilTools.SourceCode.html │ ├── CilTools.Syntax.BlockSyntax.html │ ├── CilTools.Syntax.CommentSyntax.html │ ├── CilTools.Syntax.DirectiveSyntax.html │ ├── CilTools.Syntax.Disassembler.html │ ├── CilTools.Syntax.DisassemblerParams.html │ ├── CilTools.Syntax.IdentifierKind.html │ ├── CilTools.Syntax.IdentifierSyntax.html │ ├── CilTools.Syntax.InstructionSyntax.html │ ├── CilTools.Syntax.KeywordKind.html │ ├── CilTools.Syntax.KeywordSyntax.html │ ├── CilTools.Syntax.LiteralSyntax.html │ ├── CilTools.Syntax.MemberRefSyntax.html │ ├── CilTools.Syntax.MethodDefSyntax.html │ ├── CilTools.Syntax.PunctuationSyntax.html │ ├── CilTools.Syntax.SyntaxFactory.html │ ├── CilTools.Syntax.SyntaxNode.html │ ├── CilTools.Syntax.Tokens.CommentToken.html │ ├── CilTools.Syntax.Tokens.DoubleQuotLiteralToken.html │ ├── CilTools.Syntax.Tokens.MultilineCommentToken.html │ ├── CilTools.Syntax.Tokens.NumericLiteralToken.html │ ├── CilTools.Syntax.Tokens.PunctuationToken.html │ ├── CilTools.Syntax.Tokens.SingleQuotLiteralToken.html │ ├── CilTools.Syntax.Tokens.SyntaxReader.html │ ├── CilTools.Syntax.Tokens.SyntaxTokenDefinition.html │ ├── CilTools.Syntax.Tokens.TokenReader.html │ ├── CilTools.Syntax.Tokens.WhitespaceToken.html │ ├── CilTools.Syntax.Tokens.html │ ├── CilTools.Syntax.html │ ├── CilTools.Visualization.HtmlVisualizer.html │ ├── CilTools.Visualization.OutputFormat.html │ ├── CilTools.Visualization.SyntaxVisualizer.html │ ├── CilTools.Visualization.UrlProviderBase.html │ ├── CilTools.Visualization.VisualizationOptions.html │ ├── CilTools.Visualization.html │ ├── index.html │ └── toc.html ├── articles │ ├── architecture.html │ ├── cilview-manual.html │ ├── inspect-function-pointers.html │ ├── intro.html │ ├── toc.html │ ├── using-bytecode-analysis.html │ ├── using-ciltools-metadata.html │ └── using-syntax-api.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── IL.png │ ├── cilview.png │ ├── cilview2.png │ └── cilview3.png ├── index.html ├── logo.svg ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ └── search-worker.js ├── toc.html ├── update │ ├── Application Files │ │ ├── CilView_1_0_0_5 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.BytecodeAnalysis.pdb.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.Runtime.pdb.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── CilView.pdb.deploy │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ └── license.txt.deploy │ │ ├── CilView_1_0_0_6 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.BytecodeAnalysis.pdb.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.Runtime.pdb.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── CilView.pdb.deploy │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ └── license.txt.deploy │ │ ├── CilView_2_0_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_1_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_2_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_3_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_4_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_5_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ ├── manual.html.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_5_0_1 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ ├── manual.html.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_6_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.SourceCode.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_6_1_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.SourceCode.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ ├── CilView_2_8_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.SourceCode.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ │ └── CilView_2_9_0_0 │ │ │ ├── CilTools.BytecodeAnalysis.dll.deploy │ │ │ ├── CilTools.Metadata.dll.deploy │ │ │ ├── CilTools.Runtime.dll.deploy │ │ │ ├── CilTools.SourceCode.dll.deploy │ │ │ ├── CilTools.Visualization.dll.deploy │ │ │ ├── CilView.Core.dll.deploy │ │ │ ├── CilView.application │ │ │ ├── CilView.exe.config.deploy │ │ │ ├── CilView.exe.deploy │ │ │ ├── CilView.exe.manifest │ │ │ ├── Image │ │ │ └── IL.ico.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.dll.deploy │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb.deploy │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ ├── System.Collections.Immutable.dll.deploy │ │ │ ├── System.Reflection.Metadata.dll.deploy │ │ │ ├── credits.txt.deploy │ │ │ ├── license.txt.deploy │ │ │ └── readme.txt.deploy │ ├── CilView.application │ └── index.html └── xrefmap.yml ├── scripts ├── copy.cmd ├── empty.zip ├── extract-article.ps1 ├── netfx │ ├── build.ps1 │ └── test.ps1 ├── netstd │ ├── build.ps1 │ └── test.ps1 ├── package.ps1 ├── package_cli.ps1 ├── push.ps1 └── restore.cmd └── tests ├── CilTools.BytecodeAnalysis.Tests ├── CilAnalysisTests.cs ├── CilGraphNodeTests.cs ├── CilGraphTests.cs ├── CilGraphTests_Text.cs ├── CilInstructionTests.cs ├── CilReaderTests.cs ├── CilTools.BytecodeAnalysis.Tests.csproj ├── EmitTests.cs ├── IlAsmTests.cs ├── MethodTestDataAttribute.cs ├── ReflectionTests.cs ├── Signatures │ ├── MockTokenResolver.cs │ ├── SignatureTests.cs │ └── TypeSpecTests.cs ├── SourceCode │ └── SourceCodeProviderTests.cs ├── Syntax │ ├── DisassemblerTests.cs │ ├── IdentifierSyntaxTest.cs │ ├── SyntaxFactoryTests.cs │ ├── SyntaxGenerationTests.cs │ ├── SyntaxNodeTests.cs │ ├── SyntaxReaderTests.cs │ └── TokenReaderTests.cs └── SyntaxTests.cs ├── CilTools.CommandLine.Tests ├── CilTools.CommandLine.Tests.csproj ├── CommandLineTests.cs └── test.il ├── CilTools.Metadata.Tests ├── AssemblyReaderTests.cs ├── CilGraphTests_Text.cs ├── CilTools.Metadata.Tests.csproj ├── EventDefTests.cs ├── FieldDefTests.cs ├── GenericsTests.cs ├── MemoryImageTests.cs ├── MetadataAssemblyTests.cs ├── Methods │ ├── MethodDefTests.cs │ ├── MethodRefTests.cs │ └── MethodSpecTests.cs ├── ModuleDefTests.cs ├── ParameterSpecTests.cs ├── PropertyDefTests.cs ├── ReaderFactory.cs ├── ReflectionTests.cs ├── TestData │ ├── AttrInheritanceTestType.cs │ ├── DuplicateAttrSample.cs │ ├── SampleType.cs │ └── TypeWithStaticCtor.cs └── Types │ ├── TypeDefTests.cs │ └── TypeRefTests.cs ├── CilTools.Runtime.Tests ├── App.config ├── CilTools.Runtime.Tests.csproj ├── ClrTests.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── test.cmd ├── CilTools.Tests.Common ├── AssemblyEmitter.cs ├── AssertThat.cs ├── Attributes │ ├── ConditionalTestAttribute.cs │ ├── LongTestAttribute.cs │ └── TypeTestDataAttribute.cs ├── BytecodeProviders.cs ├── CilGraphTestsCore.cs ├── CilTools.Tests.Common.csproj ├── CilViewTestsCore.cs ├── IlAsm.cs ├── LongTestsRunner.cs ├── SyntaxTestsCore.cs ├── TestData │ ├── DisassemblerSampleType.cs │ ├── EventsSample.cs │ ├── FieldsSampleType.cs │ ├── GenericConstraintsSample.cs │ ├── InterfacesSampleType.cs │ ├── MMDeviceEnumerator.cs │ ├── MyAttribute.cs │ ├── SampleMethods.cs │ └── StructSamples.cs ├── TextUtils │ ├── DiffElement.cs │ ├── StringDiff.cs │ └── Text.cs └── Utils.cs ├── CilView.Tests ├── AssemblyInfoProviderTests.cs ├── CilView.Tests.csproj ├── DocumentModel │ ├── IlasmAssemblyTests.cs │ └── IlasmTypeTests.cs ├── IlAsmParserTests.cs ├── MethodRunnerTests.cs ├── SourceCode │ ├── DecompilerTests.cs │ ├── PdbCodeProviderTests.cs │ ├── SourceTokenFactoryTests.cs │ └── SourceTokenTests.cs ├── SyntaxWriterTests.cs └── Visualization │ ├── HtmlVisualizerTests.cs │ ├── HtmlVisualizerTests_Metadata.cs │ ├── HtmlVisualizerTests_Source.cs │ └── SampleType.cs ├── EmitSampleApp ├── EmitSampleApp.csproj └── EmitSampleProgram.cs ├── cases └── Test.vb └── draft ├── StringDiff.cs └── Utils.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/netfx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/.github/workflows/netfx.yml -------------------------------------------------------------------------------- /.github/workflows/netstd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/.github/workflows/netstd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CallingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CallingConvention.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilAnalysis.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilErrorEventArgs.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilGraph.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilGraphNode.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilInstruction.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilInstructionImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilInstructionImpl.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilReader.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilTokenInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilTokenInstruction.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CilTools.BytecodeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CilTools.BytecodeAnalysis.csproj -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/CustomModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/CustomModifier.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/DebugUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/DebugUtils.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Diagnostics.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/ElementType.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Extensions.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/MetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/MetadataReader.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/ReadMe.txt -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ComplexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ComplexType.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/CustomMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/CustomMethod.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ExceptionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ExceptionBlock.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/FunctionPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/FunctionPointerType.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/GenericContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/GenericContext.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/GenericParamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/GenericParamType.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ICustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ICustomAttribute.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ICustomMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ICustomMethod.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/IParamsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/IParamsProvider.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/IReflectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/IReflectionInfo.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ITokenResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ITokenResolver.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ITypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ITypeInfo.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/LocalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/LocalVariable.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/MemoryImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/MemoryImage.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/Methods/MethodBaseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/Methods/MethodBaseWrapper.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/Methods/MethodBodyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/Methods/MethodBodyData.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/Methods/MethodInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/Methods/MethodInfoWrapper.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ModuleWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ModuleWrapper.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ModuleWrapperDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ModuleWrapperDynamic.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/PInvokeParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/PInvokeParams.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/PortableExecutable/VTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/PortableExecutable/VTable.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/RefResolutionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/RefResolutionMode.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ReflectionFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ReflectionFacts.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/ReflectionUtils.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/SignatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/SignatureContext.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/Types.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/UnknownMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/UnknownMethod.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Reflection/UnknownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Reflection/UnknownType.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Signature.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/SourceCode/FragmentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/SourceCode/FragmentBase.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/SourceCode/SourceCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/SourceCode/SourceCodeProvider.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/SourceCode/SourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/SourceCode/SourceDocument.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/SourceCode/SourceFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/SourceCode/SourceFragment.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/SourceCode/SourceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/SourceCode/SourceUtils.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/BlockSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/BlockSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/CommentSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/CommentSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/DirectiveSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/DirectiveSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Disassembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Disassembler.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/DisassemblerParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/DisassemblerParams.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Generation/SyntaxGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Generation/SyntaxGenerator.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Generation/TypeSyntaxGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Generation/TypeSyntaxGenerator.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/GenericSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/GenericSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/IdentifierSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/IdentifierSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/InstructionSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/InstructionSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/InvalidSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/InvalidSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/KeywordKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/KeywordKind.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/KeywordSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/KeywordSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/LiteralSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/LiteralSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/MemberRefSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/MemberRefSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/MethodDefSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/MethodDefSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/PunctuationSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/PunctuationSyntax.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/SyntaxClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/SyntaxClassifier.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/SyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/SyntaxFactory.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/SyntaxNode.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/SyntaxUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/SyntaxUtils.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Tokens/IlasmTokenFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Tokens/IlasmTokenFactory.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Tokens/SyntaxReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Tokens/SyntaxReader.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Tokens/SyntaxTokenDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Tokens/SyntaxTokenDefinition.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/Syntax/Tokens/TokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/Syntax/Tokens/TokenReader.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/TypeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/TypeSpec.cs -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/docs/design-analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/docs/design-analyzers.md -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/license.txt -------------------------------------------------------------------------------- /CilTools.BytecodeAnalysis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.BytecodeAnalysis/readme.md -------------------------------------------------------------------------------- /CilTools.CommandLine/BrowseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/BrowseCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/CLI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/CLI.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/CilTools.CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/CilTools.CommandLine.csproj -------------------------------------------------------------------------------- /CilTools.CommandLine/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/Command.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/CommandLineArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/CommandLineArgs.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/DisasmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/DisasmCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/FileInfoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/FileInfoCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/HelpCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/Program.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/ReadmeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/ReadmeCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/ViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/ViewCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/ViewSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/ViewSourceCommand.cs -------------------------------------------------------------------------------- /CilTools.CommandLine/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/changes.md -------------------------------------------------------------------------------- /CilTools.CommandLine/cil.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | dotnet cil.dll %* 3 | -------------------------------------------------------------------------------- /CilTools.CommandLine/cil.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | dotnet cil.dll $@ 3 | -------------------------------------------------------------------------------- /CilTools.CommandLine/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/license.txt -------------------------------------------------------------------------------- /CilTools.CommandLine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/readme.md -------------------------------------------------------------------------------- /CilTools.CommandLine/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.CommandLine/run.cmd -------------------------------------------------------------------------------- /CilTools.Metadata/AssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/AssemblyReader.cs -------------------------------------------------------------------------------- /CilTools.Metadata/AssemblyRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/AssemblyRef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/CilTools.Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/CilTools.Metadata.csproj -------------------------------------------------------------------------------- /CilTools.Metadata/Constructors/ConstructorDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Constructors/ConstructorDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Constructors/ConstructorRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Constructors/ConstructorRef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Constructors/MdConstructorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Constructors/MdConstructorBase.cs -------------------------------------------------------------------------------- /CilTools.Metadata/EventDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/EventDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/FieldDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/FieldDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/FieldRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/FieldRef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Internal/AttributeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Internal/AttributeComparer.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Internal/MemberComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Internal/MemberComparer.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Internal/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Internal/Utils.cs -------------------------------------------------------------------------------- /CilTools.Metadata/MetadataAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/MetadataAssembly.cs -------------------------------------------------------------------------------- /CilTools.Metadata/MetadataCustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/MetadataCustomAttribute.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Methods/AttributesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Methods/AttributesCollection.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Methods/MdMethodInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Methods/MdMethodInfoBase.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Methods/MethodDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Methods/MethodDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Methods/MethodRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Methods/MethodRef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/Methods/MethodSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/Methods/MethodSpec.cs -------------------------------------------------------------------------------- /CilTools.Metadata/ModuleDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/ModuleDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/ParameterSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/ParameterSpec.cs -------------------------------------------------------------------------------- /CilTools.Metadata/PortableExecutable/VTableSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/PortableExecutable/VTableSlot.cs -------------------------------------------------------------------------------- /CilTools.Metadata/PropertyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/PropertyDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/TypeDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/TypeDef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/TypeForward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/TypeForward.cs -------------------------------------------------------------------------------- /CilTools.Metadata/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/TypeRef.cs -------------------------------------------------------------------------------- /CilTools.Metadata/UnknownMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/UnknownMethod.cs -------------------------------------------------------------------------------- /CilTools.Metadata/UnknownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/UnknownType.cs -------------------------------------------------------------------------------- /CilTools.Metadata/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/changes.md -------------------------------------------------------------------------------- /CilTools.Metadata/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Metadata/license.txt -------------------------------------------------------------------------------- /CilTools.Runtime/CilTools.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/CilTools.Runtime.csproj -------------------------------------------------------------------------------- /CilTools.Runtime/ClrAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrAssemblyInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrAssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrAssemblyReader.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrConstructorInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrDynamicMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrDynamicMethod.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrFieldInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrMethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrMethodInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrStackFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrStackFrameInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrThreadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrThreadInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ClrTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ClrTypeInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/DynamicMethodsAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/DynamicMethodsAssembly.cs -------------------------------------------------------------------------------- /CilTools.Runtime/DynamicMethodsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/DynamicMethodsType.cs -------------------------------------------------------------------------------- /CilTools.Runtime/DynamicResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/DynamicResolver.cs -------------------------------------------------------------------------------- /CilTools.Runtime/HeapScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/HeapScanner.cs -------------------------------------------------------------------------------- /CilTools.Runtime/MethodId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/MethodId.cs -------------------------------------------------------------------------------- /CilTools.Runtime/Methods/AttributesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/Methods/AttributesCollection.cs -------------------------------------------------------------------------------- /CilTools.Runtime/Methods/ClrMethodData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/Methods/ClrMethodData.cs -------------------------------------------------------------------------------- /CilTools.Runtime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CilTools.Runtime/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/ReadMe.txt -------------------------------------------------------------------------------- /CilTools.Runtime/UnknownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/UnknownType.cs -------------------------------------------------------------------------------- /CilTools.Runtime/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/Utils.cs -------------------------------------------------------------------------------- /CilTools.Runtime/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/packages.config -------------------------------------------------------------------------------- /CilTools.Runtime/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/pkg/.gitignore -------------------------------------------------------------------------------- /CilTools.Runtime/pkg/CilTools.Runtime.dll.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/pkg/CilTools.Runtime.dll.nuspec -------------------------------------------------------------------------------- /CilTools.Runtime/pkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/pkg/ReadMe.txt -------------------------------------------------------------------------------- /CilTools.Runtime/pkg/lib/net45/CilTools.Runtime.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/pkg/lib/net45/CilTools.Runtime.XML -------------------------------------------------------------------------------- /CilTools.Runtime/pkg/package.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Runtime/pkg/package.cmd -------------------------------------------------------------------------------- /CilTools.SourceCode/CSharp/CSharpClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/CSharp/CSharpClassifier.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/CSharp/CSharpVerbatimLiteralToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/CSharp/CSharpVerbatimLiteralToken.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/CilTools.SourceCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/CilTools.SourceCode.csproj -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/CommonNameToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/CommonNameToken.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SourceCodeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SourceCodeUtils.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SourceLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SourceLanguage.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SourceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SourceParser.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SourceToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SourceToken.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SourceTokenFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SourceTokenFactory.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/SyntaxNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/SyntaxNodeCollection.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/TokenClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/TokenClassifier.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Common/TokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Common/TokenKind.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/Cpp/CppClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/Cpp/CppClassifier.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/VisualBasic/VbClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/VisualBasic/VbClassifier.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/VisualBasic/VbCommentToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/VisualBasic/VbCommentToken.cs -------------------------------------------------------------------------------- /CilTools.SourceCode/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.SourceCode/license.txt -------------------------------------------------------------------------------- /CilTools.Visualization/CilTools.Visualization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/CilTools.Visualization.csproj -------------------------------------------------------------------------------- /CilTools.Visualization/ConsoleVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/ConsoleVisualizer.cs -------------------------------------------------------------------------------- /CilTools.Visualization/HtmlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/HtmlBuilder.cs -------------------------------------------------------------------------------- /CilTools.Visualization/HtmlVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/HtmlVisualizer.cs -------------------------------------------------------------------------------- /CilTools.Visualization/OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/OutputFormat.cs -------------------------------------------------------------------------------- /CilTools.Visualization/PlaintextVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/PlaintextVisualizer.cs -------------------------------------------------------------------------------- /CilTools.Visualization/SyntaxVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/SyntaxVisualizer.cs -------------------------------------------------------------------------------- /CilTools.Visualization/UrlProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/UrlProviderBase.cs -------------------------------------------------------------------------------- /CilTools.Visualization/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/Utils.cs -------------------------------------------------------------------------------- /CilTools.Visualization/VisualizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/VisualizationOptions.cs -------------------------------------------------------------------------------- /CilTools.Visualization/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.Visualization/license.txt -------------------------------------------------------------------------------- /CilTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilTools.sln -------------------------------------------------------------------------------- /CilToolsDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilToolsDemo/App.config -------------------------------------------------------------------------------- /CilToolsDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilToolsDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /CilToolsDemo/CilToolsDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilToolsDemo/CilToolsDemo.csproj -------------------------------------------------------------------------------- /CilToolsDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilToolsDemo/Program.cs -------------------------------------------------------------------------------- /CilView.Core/CilView.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/CilView.Core.csproj -------------------------------------------------------------------------------- /CilView.Core/Common/HtmlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Common/HtmlBuilder.cs -------------------------------------------------------------------------------- /CilView.Core/Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Common/Utils.cs -------------------------------------------------------------------------------- /CilView.Core/DocumentModel/IlasmAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/DocumentModel/IlasmAssembly.cs -------------------------------------------------------------------------------- /CilView.Core/DocumentModel/IlasmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/DocumentModel/IlasmType.cs -------------------------------------------------------------------------------- /CilView.Core/Documentation/DocsRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Documentation/DocsRewriter.cs -------------------------------------------------------------------------------- /CilView.Core/Documentation/TextFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Documentation/TextFragment.cs -------------------------------------------------------------------------------- /CilView.Core/Documentation/TextParagraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Documentation/TextParagraph.cs -------------------------------------------------------------------------------- /CilView.Core/FileSystem/AssemblyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/FileSystem/AssemblyFile.cs -------------------------------------------------------------------------------- /CilView.Core/FileSystem/RuntimeDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/FileSystem/RuntimeDir.cs -------------------------------------------------------------------------------- /CilView.Core/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/FileUtils.cs -------------------------------------------------------------------------------- /CilView.Core/InstructionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/InstructionInfo.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Portable/PortablePdb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Portable/PortablePdb.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Portable/SourceLineData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Portable/SourceLineData.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/BitAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/BitAccess.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/BitSet.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/CvInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/CvInfo.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/DataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/DataStream.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/DbiDbgHdr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/DbiDbgHdr.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/DbiHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/DbiHeader.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/DbiModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/DbiModuleInfo.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/DbiSecCon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/DbiSecCon.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/LICENSE -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/MsfDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/MsfDirectory.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbConstant.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbDebugException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbDebugException.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbException.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbFile.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbFileHeader.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbFunction.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbReader.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbScope.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbSequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbSequencePoint.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbSlot.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbSource.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/PdbStreamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/PdbStreamHelper.cs -------------------------------------------------------------------------------- /CilView.Core/Internal.Pdb.Readers/Windows/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Internal.Pdb.Readers/Windows/ReadMe.txt -------------------------------------------------------------------------------- /CilView.Core/MethodRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/MethodRunner.cs -------------------------------------------------------------------------------- /CilView.Core/Reflection/AssemblyInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Reflection/AssemblyInfoProvider.cs -------------------------------------------------------------------------------- /CilView.Core/Reflection/MethodExecutionResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Reflection/MethodExecutionResults.cs -------------------------------------------------------------------------------- /CilView.Core/Reflection/MethodParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Reflection/MethodParameter.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/CppDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/CppDecompiler.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/CsharpDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/CsharpDecompiler.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/Decompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/Decompiler.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/PdbCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/PdbCodeProvider.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/PdbUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/PdbUtils.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/SymbolsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/SymbolsException.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/SymbolsQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/SymbolsQueryType.cs -------------------------------------------------------------------------------- /CilView.Core/SourceCode/VisualBasic/VbDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/SourceCode/VisualBasic/VbDecompiler.cs -------------------------------------------------------------------------------- /CilView.Core/Syntax/DocumentSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Syntax/DocumentSyntax.cs -------------------------------------------------------------------------------- /CilView.Core/Syntax/IlasmParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Syntax/IlasmParser.cs -------------------------------------------------------------------------------- /CilView.Core/Syntax/SyntaxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Syntax/SyntaxWriter.cs -------------------------------------------------------------------------------- /CilView.Core/Visualization/AssemblyUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.Core/Visualization/AssemblyUrlProvider.cs -------------------------------------------------------------------------------- /CilView.UI/AppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/AppBuilder.cs -------------------------------------------------------------------------------- /CilView.UI/AssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/AssemblySource.cs -------------------------------------------------------------------------------- /CilView.UI/AssemblyUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/AssemblyUrlProvider.cs -------------------------------------------------------------------------------- /CilView.UI/CilView.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/CilView.UI.csproj -------------------------------------------------------------------------------- /CilView.UI/FileAssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/FileAssemblySource.cs -------------------------------------------------------------------------------- /CilView.UI/IndexPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/IndexPage.cs -------------------------------------------------------------------------------- /CilView.UI/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/SearchResult.cs -------------------------------------------------------------------------------- /CilView.UI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView.UI/index.html -------------------------------------------------------------------------------- /CilView/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/App.config -------------------------------------------------------------------------------- /CilView/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/App.xaml -------------------------------------------------------------------------------- /CilView/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/App.xaml.cs -------------------------------------------------------------------------------- /CilView/AssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/AssemblySource.cs -------------------------------------------------------------------------------- /CilView/Build/BuildProjectOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/BuildProjectOperation.cs -------------------------------------------------------------------------------- /CilView/Build/BuildSystemInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/BuildSystemInvocation.cs -------------------------------------------------------------------------------- /CilView/Build/CsTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/CsTemplate.xml -------------------------------------------------------------------------------- /CilView/Build/ProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/ProjectGenerator.cs -------------------------------------------------------------------------------- /CilView/Build/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/ProjectInfo.cs -------------------------------------------------------------------------------- /CilView/Build/VbTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Build/VbTemplate.xml -------------------------------------------------------------------------------- /CilView/CilView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/CilView.csproj -------------------------------------------------------------------------------- /CilView/CilVisualization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/CilVisualization.cs -------------------------------------------------------------------------------- /CilView/Common/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Common/Audio.cs -------------------------------------------------------------------------------- /CilView/Common/HistoryContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Common/HistoryContainer.cs -------------------------------------------------------------------------------- /CilView/Common/WpfUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Common/WpfUtils.cs -------------------------------------------------------------------------------- /CilView/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/ErrorHandler.cs -------------------------------------------------------------------------------- /CilView/Exceptions/ExceptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Exceptions/ExceptionInfo.cs -------------------------------------------------------------------------------- /CilView/Exceptions/TypeExceptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Exceptions/TypeExceptionInfo.cs -------------------------------------------------------------------------------- /CilView/FileAssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/FileAssemblySource.cs -------------------------------------------------------------------------------- /CilView/IlasmAssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/IlasmAssemblySource.cs -------------------------------------------------------------------------------- /CilView/Image/IL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Image/IL.ico -------------------------------------------------------------------------------- /CilView/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/MainWindow.xaml -------------------------------------------------------------------------------- /CilView/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/MainWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/OpenDocumentOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/OpenDocumentOperation.cs -------------------------------------------------------------------------------- /CilView/OpenFileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/OpenFileOperation.cs -------------------------------------------------------------------------------- /CilView/OpenProcessOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/OpenProcessOperation.cs -------------------------------------------------------------------------------- /CilView/OperationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/OperationBase.cs -------------------------------------------------------------------------------- /CilView/ProcessAssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/ProcessAssemblySource.cs -------------------------------------------------------------------------------- /CilView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CilView/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CilView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/Resources.resx -------------------------------------------------------------------------------- /CilView/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CilView/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/Settings.settings -------------------------------------------------------------------------------- /CilView/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Properties/app.manifest -------------------------------------------------------------------------------- /CilView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/README.md -------------------------------------------------------------------------------- /CilView/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/SearchResult.cs -------------------------------------------------------------------------------- /CilView/SourceCode/SourceCodeUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/SourceCode/SourceCodeUI.cs -------------------------------------------------------------------------------- /CilView/SourceCode/SourceLinkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/SourceCode/SourceLinkEntry.cs -------------------------------------------------------------------------------- /CilView/SourceCode/SourceLinkMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/SourceCode/SourceLinkMap.cs -------------------------------------------------------------------------------- /CilView/SourceCode/SourceVisualization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/SourceCode/SourceVisualization.cs -------------------------------------------------------------------------------- /CilView/ThreadsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/ThreadsWindow.xaml -------------------------------------------------------------------------------- /CilView/ThreadsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/ThreadsWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Controls/CilBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/CilBrowser.xaml -------------------------------------------------------------------------------- /CilView/UI.Controls/CilBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/CilBrowser.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Controls/CilBrowserPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/CilBrowserPage.xaml -------------------------------------------------------------------------------- /CilView/UI.Controls/CilBrowserPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/CilBrowserPage.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Controls/InstructionMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/InstructionMenu.cs -------------------------------------------------------------------------------- /CilView/UI.Controls/TextListViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Controls/TextListViewer.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/ExecuteWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/ExecuteWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/ExecuteWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/ExecuteWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/HtmlViewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/HtmlViewWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/HtmlViewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/HtmlViewWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/MethodSourceViewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/MethodSourceViewWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/MethodSourceViewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/MethodSourceViewWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/OpenBclWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/OpenBclWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/OpenBclWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/OpenBclWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/OpenCodeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/OpenCodeWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/OpenCodeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/OpenCodeWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/ProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/ProgressWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/ProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/ProgressWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/SelectProcessWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/SelectProcessWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/SelectProcessWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/SelectProcessWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/SourceViewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/SourceViewWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/SourceViewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/SourceViewWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/TextViewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/TextViewWindow.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/TextViewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/TextViewWindow.xaml.cs -------------------------------------------------------------------------------- /CilView/UI.Dialogs/wndError.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/wndError.xaml -------------------------------------------------------------------------------- /CilView/UI.Dialogs/wndError.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/UI.Dialogs/wndError.xaml.cs -------------------------------------------------------------------------------- /CilView/Visualization/CilViewUrlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Visualization/CilViewUrlProvider.cs -------------------------------------------------------------------------------- /CilView/Visualization/ServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Visualization/ServerBase.cs -------------------------------------------------------------------------------- /CilView/Visualization/VisualizationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/Visualization/VisualizationServer.cs -------------------------------------------------------------------------------- /CilView/WmiAssemblySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/WmiAssemblySource.cs -------------------------------------------------------------------------------- /CilView/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/credits.txt -------------------------------------------------------------------------------- /CilView/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/license.txt -------------------------------------------------------------------------------- /CilView/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/manual.html -------------------------------------------------------------------------------- /CilView/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/packages.config -------------------------------------------------------------------------------- /CilView/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/CilView/readme.txt -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Examples/CilTools_Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/CilTools_Examples.sln -------------------------------------------------------------------------------- /Examples/Example4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/Example4.cs -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/App.config -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/ExampleDisassemble.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/ExampleDisassemble.csproj -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/Program.cs -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/packages.config -------------------------------------------------------------------------------- /Examples/ExampleDisassemble/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleDisassemble/readme.md -------------------------------------------------------------------------------- /Examples/ExampleInstructions/ExampleInstructions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleInstructions/ExampleInstructions.csproj -------------------------------------------------------------------------------- /Examples/ExampleInstructions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleInstructions/Program.cs -------------------------------------------------------------------------------- /Examples/ExampleInstructions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleInstructions/readme.md -------------------------------------------------------------------------------- /Examples/ExampleReferencedMethods/ExampleReferencedMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleReferencedMethods/ExampleReferencedMethods.csproj -------------------------------------------------------------------------------- /Examples/ExampleReferencedMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleReferencedMethods/Program.cs -------------------------------------------------------------------------------- /Examples/ExampleReferencedMethods/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/ExampleReferencedMethods/readme.md -------------------------------------------------------------------------------- /Examples/Example_ClrMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/Example_ClrMD.cs -------------------------------------------------------------------------------- /Examples/Example_MetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/Example_MetadataReader.cs -------------------------------------------------------------------------------- /Examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/Examples/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/README.md -------------------------------------------------------------------------------- /browser.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/browser.cfg -------------------------------------------------------------------------------- /docfx_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/.gitignore -------------------------------------------------------------------------------- /docfx_project/_site_pdf/docfx_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/_site_pdf/docfx_project.json -------------------------------------------------------------------------------- /docfx_project/api/.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/.manifest -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CallingConvention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CallingConvention.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilAnalysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilAnalysis.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilErrorEventArgs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilErrorEventArgs.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilGraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilGraph.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilGraphNode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilGraphNode.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilInstruction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilInstruction.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilParserException.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilParserException.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilReader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilReader.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CilReaderState.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CilReaderState.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.CustomModifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.CustomModifier.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.DebugUtils.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.DebugUtils.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.Diagnostics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.Diagnostics.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.ElementType.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.ElementType.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.Extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.Extensions.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.MemberCriteria.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.MemberCriteria.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.Signature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.Signature.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.TypeSpec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.TypeSpec.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.BytecodeAnalysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.BytecodeAnalysis.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Metadata.AssemblyReader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Metadata.AssemblyReader.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Metadata.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ComplexType.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ComplexType.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ComplexTypeKind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ComplexTypeKind.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.CustomMethod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.CustomMethod.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ExceptionBlock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ExceptionBlock.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.GenericContext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.GenericContext.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.GenericParamType.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.GenericParamType.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ICustomAttribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ICustomAttribute.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ICustomMethod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ICustomMethod.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.IParamsProvider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.IParamsProvider.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.IReflectionInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.IReflectionInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ITokenResolver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ITokenResolver.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ITypeInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ITypeInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.LocalVariable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.LocalVariable.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.MemoryImage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.MemoryImage.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.PInvokeParams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.PInvokeParams.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.PortableExecutable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.PortableExecutable.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.RefResolutionMode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.RefResolutionMode.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.ReflectionProperties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.ReflectionProperties.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.SignatureContext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.SignatureContext.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Reflection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Reflection.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrAssemblyInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrAssemblyInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrAssemblyReader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrAssemblyReader.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrConstructorInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrConstructorInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrMethodInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrMethodInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrStackFrameInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrStackFrameInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.ClrThreadInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.ClrThreadInfo.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.DynamicMethodsAssembly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.DynamicMethodsAssembly.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Runtime.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.SourceCodeUtils.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.SourceCodeUtils.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.SourceLanguage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.SourceLanguage.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.SourceParser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.SourceParser.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.SourceToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.SourceToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.TokenKind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.TokenKind.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.Common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.Common.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.FragmentBase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.FragmentBase.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.SourceCodeProvider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.SourceCodeProvider.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.SourceDocument.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.SourceDocument.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.SourceFragment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.SourceFragment.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.SourceCode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.SourceCode.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.BlockSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.BlockSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.CommentSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.CommentSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.DirectiveSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.DirectiveSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Disassembler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Disassembler.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.DisassemblerParams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.DisassemblerParams.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.IdentifierKind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.IdentifierKind.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.IdentifierSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.IdentifierSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.InstructionSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.InstructionSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.KeywordKind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.KeywordKind.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.KeywordSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.KeywordSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.LiteralSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.LiteralSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.MemberRefSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.MemberRefSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.MethodDefSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.MethodDefSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.PunctuationSyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.PunctuationSyntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.SyntaxFactory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.SyntaxFactory.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.SyntaxNode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.SyntaxNode.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.CommentToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.CommentToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.MultilineCommentToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.MultilineCommentToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.NumericLiteralToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.NumericLiteralToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.PunctuationToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.PunctuationToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.SyntaxReader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.SyntaxReader.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.SyntaxTokenDefinition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.SyntaxTokenDefinition.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.TokenReader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.TokenReader.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.WhitespaceToken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.WhitespaceToken.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.Tokens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.Tokens.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Syntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Syntax.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.HtmlVisualizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.HtmlVisualizer.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.OutputFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.OutputFormat.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.SyntaxVisualizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.SyntaxVisualizer.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.UrlProviderBase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.UrlProviderBase.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.VisualizationOptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.VisualizationOptions.yml -------------------------------------------------------------------------------- /docfx_project/api/CilTools.Visualization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/CilTools.Visualization.yml -------------------------------------------------------------------------------- /docfx_project/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/index.md -------------------------------------------------------------------------------- /docfx_project/api/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/api/toc.yml -------------------------------------------------------------------------------- /docfx_project/articles/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/architecture.md -------------------------------------------------------------------------------- /docfx_project/articles/cilview-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/cilview-manual.md -------------------------------------------------------------------------------- /docfx_project/articles/inspect-function-pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/inspect-function-pointers.md -------------------------------------------------------------------------------- /docfx_project/articles/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/intro.md -------------------------------------------------------------------------------- /docfx_project/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/toc.yml -------------------------------------------------------------------------------- /docfx_project/articles/using-bytecode-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/using-bytecode-analysis.md -------------------------------------------------------------------------------- /docfx_project/articles/using-ciltools-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/using-ciltools-metadata.md -------------------------------------------------------------------------------- /docfx_project/articles/using-syntax-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/articles/using-syntax-api.md -------------------------------------------------------------------------------- /docfx_project/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/build.cmd -------------------------------------------------------------------------------- /docfx_project/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/docfx.json -------------------------------------------------------------------------------- /docfx_project/images/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/images/IL.png -------------------------------------------------------------------------------- /docfx_project/images/cilview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/images/cilview.png -------------------------------------------------------------------------------- /docfx_project/images/cilview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/images/cilview2.png -------------------------------------------------------------------------------- /docfx_project/images/cilview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/images/cilview3.png -------------------------------------------------------------------------------- /docfx_project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/index.md -------------------------------------------------------------------------------- /docfx_project/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/logo.svg -------------------------------------------------------------------------------- /docfx_project/pdf/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/pdf/toc.yml -------------------------------------------------------------------------------- /docfx_project/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docfx_project/toc.yml -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CallingConvention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CallingConvention.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilAnalysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilAnalysis.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilErrorEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilErrorEventArgs.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilGraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilGraph.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilGraphNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilGraphNode.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilGraphNodeMutable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilGraphNodeMutable.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilInstruction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilInstruction.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilParserException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilParserException.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilReader.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CilReaderState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CilReaderState.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.CustomModifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.CustomModifier.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.DebugUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.DebugUtils.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.Diagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.Diagnostics.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.ElementType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.ElementType.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.Extensions.CilExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.Extensions.CilExtensions.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.Extensions.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.MemberCriteria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.MemberCriteria.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.Signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.Signature.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.TypeSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.TypeSpec.html -------------------------------------------------------------------------------- /docs/api/CilTools.BytecodeAnalysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.BytecodeAnalysis.html -------------------------------------------------------------------------------- /docs/api/CilTools.Metadata.AssemblyReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Metadata.AssemblyReader.html -------------------------------------------------------------------------------- /docs/api/CilTools.Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Metadata.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ComplexType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ComplexType.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ComplexTypeKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ComplexTypeKind.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.CustomMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.CustomMethod.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ExceptionBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ExceptionBlock.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.GenericContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.GenericContext.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.GenericParamType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.GenericParamType.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ICustomAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ICustomAttribute.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ICustomMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ICustomMethod.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.IParamsProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.IParamsProvider.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.IReflectionInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.IReflectionInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ITokenResolver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ITokenResolver.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ITypeInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ITypeInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.LocalVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.LocalVariable.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.MemoryImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.MemoryImage.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.PInvokeParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.PInvokeParams.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.PortableExecutable.VTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.PortableExecutable.VTable.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.PortableExecutable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.PortableExecutable.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.RefResolutionMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.RefResolutionMode.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.ReflectionProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.ReflectionProperties.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.SignatureContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.SignatureContext.html -------------------------------------------------------------------------------- /docs/api/CilTools.Reflection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Reflection.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrAssemblyInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrAssemblyInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrAssemblyReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrAssemblyReader.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrConstructorInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrConstructorInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrMethodInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrMethodInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrStackFrameInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrStackFrameInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.ClrThreadInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.ClrThreadInfo.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.DynamicMethodsAssembly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.DynamicMethodsAssembly.html -------------------------------------------------------------------------------- /docs/api/CilTools.Runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Runtime.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SourceCodeUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SourceCodeUtils.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SourceLanguage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SourceLanguage.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SourceParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SourceParser.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SourceToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SourceToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SourceTokenFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SourceTokenFactory.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.SyntaxNodeCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.SyntaxNodeCollection.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.TokenKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.TokenKind.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.Common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.Common.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.FragmentBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.FragmentBase.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.SourceCodeProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.SourceCodeProvider.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.SourceDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.SourceDocument.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.SourceFragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.SourceFragment.html -------------------------------------------------------------------------------- /docs/api/CilTools.SourceCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.SourceCode.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.BlockSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.BlockSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.CommentSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.CommentSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.DirectiveSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.DirectiveSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Disassembler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Disassembler.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.DisassemblerParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.DisassemblerParams.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.IdentifierKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.IdentifierKind.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.IdentifierSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.IdentifierSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.InstructionSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.InstructionSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.KeywordKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.KeywordKind.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.KeywordSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.KeywordSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.LiteralSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.LiteralSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.MemberRefSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.MemberRefSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.MethodDefSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.MethodDefSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.PunctuationSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.PunctuationSyntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.SyntaxFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.SyntaxFactory.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.SyntaxNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.SyntaxNode.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.CommentToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.CommentToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.DoubleQuotLiteralToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.DoubleQuotLiteralToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.MultilineCommentToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.MultilineCommentToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.NumericLiteralToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.NumericLiteralToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.PunctuationToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.PunctuationToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.SingleQuotLiteralToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.SingleQuotLiteralToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.SyntaxReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.SyntaxReader.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.SyntaxTokenDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.SyntaxTokenDefinition.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.TokenReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.TokenReader.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.WhitespaceToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.WhitespaceToken.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.Tokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.Tokens.html -------------------------------------------------------------------------------- /docs/api/CilTools.Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Syntax.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.HtmlVisualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.HtmlVisualizer.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.OutputFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.OutputFormat.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.SyntaxVisualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.SyntaxVisualizer.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.UrlProviderBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.UrlProviderBase.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.VisualizationOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.VisualizationOptions.html -------------------------------------------------------------------------------- /docs/api/CilTools.Visualization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/CilTools.Visualization.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/articles/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/architecture.html -------------------------------------------------------------------------------- /docs/articles/cilview-manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/cilview-manual.html -------------------------------------------------------------------------------- /docs/articles/inspect-function-pointers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/inspect-function-pointers.html -------------------------------------------------------------------------------- /docs/articles/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/intro.html -------------------------------------------------------------------------------- /docs/articles/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/toc.html -------------------------------------------------------------------------------- /docs/articles/using-bytecode-analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/using-bytecode-analysis.html -------------------------------------------------------------------------------- /docs/articles/using-ciltools-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/using-ciltools-metadata.html -------------------------------------------------------------------------------- /docs/articles/using-syntax-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/articles/using-syntax-api.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/images/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/images/IL.png -------------------------------------------------------------------------------- /docs/images/cilview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/images/cilview.png -------------------------------------------------------------------------------- /docs/images/cilview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/images/cilview2.png -------------------------------------------------------------------------------- /docs/images/cilview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/images/cilview3.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/CilView.pdb.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/CilView.pdb.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_5/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_5/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/CilView.pdb.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/CilView.pdb.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_1_0_0_6/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_1_0_0_6/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_0_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_0_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_1_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_1_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_2_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_2_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_3_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_3_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_4_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_4_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/credits.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/credits.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/manual.html.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/manual.html.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/credits.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/credits.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/manual.html.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/manual.html.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_5_0_1/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_5_0_1/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/credits.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/credits.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/CilView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/CilView.exe.manifest -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/Image/IL.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/Image/IL.ico.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/credits.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/credits.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/license.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/license.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_6_1_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_6_1_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_8_0_0/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_8_0_0/CilView.application -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_8_0_0/CilView.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_8_0_0/CilView.exe.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_8_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_8_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/Application Files/CilView_2_9_0_0/readme.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/Application Files/CilView_2_9_0_0/readme.txt.deploy -------------------------------------------------------------------------------- /docs/update/CilView.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/CilView.application -------------------------------------------------------------------------------- /docs/update/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/update/index.html -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /scripts/copy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/copy.cmd -------------------------------------------------------------------------------- /scripts/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/empty.zip -------------------------------------------------------------------------------- /scripts/extract-article.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/extract-article.ps1 -------------------------------------------------------------------------------- /scripts/netfx/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/netfx/build.ps1 -------------------------------------------------------------------------------- /scripts/netfx/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/netfx/test.ps1 -------------------------------------------------------------------------------- /scripts/netstd/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/netstd/build.ps1 -------------------------------------------------------------------------------- /scripts/netstd/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/netstd/test.ps1 -------------------------------------------------------------------------------- /scripts/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/package.ps1 -------------------------------------------------------------------------------- /scripts/package_cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/package_cli.ps1 -------------------------------------------------------------------------------- /scripts/push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/push.ps1 -------------------------------------------------------------------------------- /scripts/restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/scripts/restore.cmd -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilAnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilAnalysisTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilGraphNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilGraphNodeTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilGraphTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilGraphTests_Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilGraphTests_Text.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilInstructionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilInstructionTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/CilReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/CilReaderTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/EmitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/EmitTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/IlAsmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/IlAsmTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/ReflectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/ReflectionTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/Syntax/SyntaxNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/Syntax/SyntaxNodeTests.cs -------------------------------------------------------------------------------- /tests/CilTools.BytecodeAnalysis.Tests/SyntaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.BytecodeAnalysis.Tests/SyntaxTests.cs -------------------------------------------------------------------------------- /tests/CilTools.CommandLine.Tests/CommandLineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.CommandLine.Tests/CommandLineTests.cs -------------------------------------------------------------------------------- /tests/CilTools.CommandLine.Tests/test.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.CommandLine.Tests/test.il -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/AssemblyReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/AssemblyReaderTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/CilGraphTests_Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/CilGraphTests_Text.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/CilTools.Metadata.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/CilTools.Metadata.Tests.csproj -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/EventDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/EventDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/FieldDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/FieldDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/GenericsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/GenericsTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/MemoryImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/MemoryImageTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/MetadataAssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/MetadataAssemblyTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/Methods/MethodDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/Methods/MethodDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/Methods/MethodRefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/Methods/MethodRefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/Methods/MethodSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/Methods/MethodSpecTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/ModuleDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/ModuleDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/ParameterSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/ParameterSpecTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/PropertyDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/PropertyDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/ReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/ReaderFactory.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/ReflectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/ReflectionTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/TestData/DuplicateAttrSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/TestData/DuplicateAttrSample.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/TestData/SampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/TestData/SampleType.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/TestData/TypeWithStaticCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/TestData/TypeWithStaticCtor.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/Types/TypeDefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/Types/TypeDefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Metadata.Tests/Types/TypeRefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Metadata.Tests/Types/TypeRefTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/App.config -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/CilTools.Runtime.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/CilTools.Runtime.Tests.csproj -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/ClrTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/ClrTests.cs -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/Program.cs -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Runtime.Tests/packages.config -------------------------------------------------------------------------------- /tests/CilTools.Runtime.Tests/test.cmd: -------------------------------------------------------------------------------- 1 | cd .\bin\Debug\ 2 | CilTools.Runtime.Tests.exe 3 | PAUSE -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/AssemblyEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/AssemblyEmitter.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/AssertThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/AssertThat.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/Attributes/LongTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/Attributes/LongTestAttribute.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/Attributes/TypeTestDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/Attributes/TypeTestDataAttribute.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/BytecodeProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/BytecodeProviders.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/CilGraphTestsCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/CilGraphTestsCore.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/CilTools.Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/CilTools.Tests.Common.csproj -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/CilViewTestsCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/CilViewTestsCore.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/IlAsm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/IlAsm.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/LongTestsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/LongTestsRunner.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/SyntaxTestsCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/SyntaxTestsCore.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/DisassemblerSampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/DisassemblerSampleType.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/EventsSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/EventsSample.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/FieldsSampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/FieldsSampleType.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/InterfacesSampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/InterfacesSampleType.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/MMDeviceEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/MMDeviceEnumerator.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/MyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/MyAttribute.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/SampleMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/SampleMethods.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TestData/StructSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TestData/StructSamples.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TextUtils/DiffElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TextUtils/DiffElement.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TextUtils/StringDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TextUtils/StringDiff.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/TextUtils/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/TextUtils/Text.cs -------------------------------------------------------------------------------- /tests/CilTools.Tests.Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilTools.Tests.Common/Utils.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/AssemblyInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/AssemblyInfoProviderTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/CilView.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/CilView.Tests.csproj -------------------------------------------------------------------------------- /tests/CilView.Tests/DocumentModel/IlasmAssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/DocumentModel/IlasmAssemblyTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/DocumentModel/IlasmTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/DocumentModel/IlasmTypeTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/IlAsmParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/IlAsmParserTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/MethodRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/MethodRunnerTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/SourceCode/DecompilerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/SourceCode/DecompilerTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/SourceCode/PdbCodeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/SourceCode/PdbCodeProviderTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/SourceCode/SourceTokenFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/SourceCode/SourceTokenFactoryTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/SourceCode/SourceTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/SourceCode/SourceTokenTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/SyntaxWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/SyntaxWriterTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/Visualization/HtmlVisualizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/Visualization/HtmlVisualizerTests.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/Visualization/HtmlVisualizerTests_Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/Visualization/HtmlVisualizerTests_Source.cs -------------------------------------------------------------------------------- /tests/CilView.Tests/Visualization/SampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/CilView.Tests/Visualization/SampleType.cs -------------------------------------------------------------------------------- /tests/EmitSampleApp/EmitSampleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/EmitSampleApp/EmitSampleApp.csproj -------------------------------------------------------------------------------- /tests/EmitSampleApp/EmitSampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/EmitSampleApp/EmitSampleProgram.cs -------------------------------------------------------------------------------- /tests/cases/Test.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/cases/Test.vb -------------------------------------------------------------------------------- /tests/draft/StringDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/draft/StringDiff.cs -------------------------------------------------------------------------------- /tests/draft/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSDN-WhiteKnight/CilTools/HEAD/tests/draft/Utils.cs --------------------------------------------------------------------------------