├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Directory.Build.props ├── Directory.Build.targets ├── ICSharpCode.Decompiler.PdbProvider.Cecil ├── ICSharpCode.Decompiler.PdbProvider.Cecil.csproj └── MonoCecilDebugInfoProvider.cs ├── ICSharpCode.Decompiler ├── ICSharpCode.Decompiler.ruleset └── ICSharpCode.Decompiler.snk ├── ILSpy.Core ├── AboutPage.cs ├── Analyzers │ ├── AnalyzeCommand.cs │ ├── AnalyzerEntityTreeNode.cs │ ├── AnalyzerScope.cs │ ├── AnalyzerSearchTreeNode.cs │ ├── AnalyzerTreeNode.cs │ ├── AnalyzerTreeView.cs │ ├── Builtin │ │ ├── AttributeAppliedToAnalyzer.cs │ │ ├── EventImplementsInterfaceAnalyzer.cs │ │ ├── EventOverriddenByAnalyzer.cs │ │ ├── FieldAccessAnalyzer.cs │ │ ├── MethodImplementsInterfaceAnalyzer.cs │ │ ├── MethodOverriddenByAnalyzer.cs │ │ ├── MethodUsedByAnalyzer.cs │ │ ├── MethodUsesAnalyzer.cs │ │ ├── MethodVirtualUsedByAnalyzer.cs │ │ ├── PropertyImplementsInterfaceAnalyzer.cs │ │ ├── PropertyOverriddenByAnalyzer.cs │ │ ├── TypeExposedByAnalyzer.cs │ │ ├── TypeExtensionMethodsAnalyzer.cs │ │ ├── TypeInstantiatedByAnalyzer.cs │ │ └── TypeUsedByAnalyzer.cs │ ├── IAnalyzer.cs │ ├── RemoveAnalyzeContextMenuEntry.cs │ └── TreeNodes │ │ ├── AnalyzedAccessorTreeNode.cs │ │ ├── AnalyzedEventTreeNode.cs │ │ ├── AnalyzedFieldTreeNode.cs │ │ ├── AnalyzedMethodTreeNode.cs │ │ ├── AnalyzedModuleTreeNode.cs │ │ ├── AnalyzedPropertyTreeNode.cs │ │ └── AnalyzedTypeTreeNode.cs ├── App.xaml ├── App.xaml.cs ├── ApplicationExtensions.cs ├── AssemblyList.cs ├── AssemblyListManager.cs ├── AvalonEdit │ ├── ITextMarker.cs │ └── TextMarkerService.cs ├── CommandLineArguments.cs ├── Commands │ ├── BrowseBackCommand.cs │ ├── BrowseForwardCommand.cs │ ├── CheckForUpdatesCommand.cs │ ├── CommandWrapper.cs │ ├── DecompileAllCommand.cs │ ├── DisassembleAllCommand.cs │ ├── ExitCommand.cs │ ├── ExportCommandAttribute.cs │ ├── GeneratePdbContextMenuEntry.cs │ ├── ILSpyCommands.cs │ ├── NavigationCommand.cs │ ├── OpenCommand.cs │ ├── OpenFromNuGetCommand.cs │ ├── OpenListCommand.cs │ ├── Pdb2XmlCommand.cs │ ├── RefreshCommand.cs │ ├── RemoveAssembliesWithLoadErrors.cs │ ├── SaveCodeContextMenuEntry.cs │ ├── SaveCommand.cs │ ├── ShowDebugSteps.cs │ ├── ShowDialog.cs │ ├── SimpleCommand.cs │ └── SortAssemblyListCommand.cs ├── ContextMenuEntry.cs ├── Controls │ ├── ControlColor.cs │ ├── CustomDialog.xaml │ ├── CustomDialog.xaml.cs │ ├── DialogWindow.cs │ ├── DockedPane.cs │ ├── DockedPane.xaml │ ├── ExtensionMethods.cs │ ├── PlatformDependentWindow.cs │ ├── ResourceObjectTable.xaml │ ├── ResourceObjectTable.xaml.cs │ ├── ResourceStringTable.xaml │ ├── ResourceStringTable.xaml.cs │ ├── SearchBox.cs │ └── SearchBox.xaml ├── CreateListDialog.xaml ├── CreateListDialog.xaml.cs ├── DebugInfo │ ├── DiaSymNativeDebugInfoProvider.cs │ └── PortableDebugInfoProvider.cs ├── DebugSteps.xaml ├── DebugSteps.xaml.cs ├── DecompilationOptions.cs ├── ExtensionMethods.cs ├── FilterSettings.cs ├── GuessFileType.cs ├── ILSpy.Core.csproj ├── ILSpySettings.cs ├── ILSpyTraceListener.cs ├── IPane.cs ├── ISmartTextOutput.cs ├── Images │ ├── AccessOverlayIcon.cs │ ├── Assembly.png │ ├── AssemblyList.png │ ├── AssemblyListGAC.png │ ├── AssemblyWarning.png │ ├── Back.png │ ├── Break.png │ ├── Breakpoint.png │ ├── Class.png │ ├── ClearSearch.png │ ├── CollapseAll.png │ ├── Constructor.png │ ├── Copy.png │ ├── CurrentLine.png │ ├── Delegate.png │ ├── Delete.png │ ├── DisabledBreakpoint.png │ ├── Enum.png │ ├── EnumValue.png │ ├── Event.png │ ├── ExtensionMethod.png │ ├── Field.png │ ├── FieldReadOnly.png │ ├── Find.png │ ├── FindAssembly.png │ ├── Folder.Closed.png │ ├── Folder.Open.png │ ├── Forward.png │ ├── ILSpy.pdn │ ├── ILSpy.png │ ├── ILSpyNewIconList.txt │ ├── Images.cs │ ├── Indexer.png │ ├── Interface.png │ ├── Library.png │ ├── Literal.png │ ├── MemberIcon.cs │ ├── Method.png │ ├── NameSpace.png │ ├── OK.png │ ├── Open.png │ ├── Operator.png │ ├── OverlayCompilerControlled.png │ ├── OverlayInternal.png │ ├── OverlayPrivate.png │ ├── OverlayPrivateProtected.png │ ├── OverlayProtected.png │ ├── OverlayProtectedInternal.png │ ├── OverlayStatic.png │ ├── PInvokeMethod.png │ ├── PrivateInternal.png │ ├── Property.png │ ├── ReferenceFolder.Closed.png │ ├── ReferenceFolder.Open.png │ ├── Refresh.png │ ├── Resource.png │ ├── ResourceImage.png │ ├── ResourceResourcesFile.png │ ├── ResourceXml.png │ ├── ResourceXsd.png │ ├── ResourceXsl.png │ ├── ResourceXslt.png │ ├── SaveFile.png │ ├── Search.png │ ├── SearchMsdn.png │ ├── ShowAll.png │ ├── Sort.png │ ├── StaticClass.png │ ├── Struct.png │ ├── SubTypes.png │ ├── SuperTypes.png │ ├── TypeIcon.cs │ ├── ViewCode.png │ ├── VirtualMethod.png │ └── Warning.png ├── Languages │ ├── CSharpBracketSearcher.cs │ ├── CSharpHighlightingTokenWriter.cs │ ├── CSharpILMixedLanguage.cs │ ├── CSharpLanguage.cs │ ├── CSharpLexer.cs │ ├── ILAstLanguage.cs │ ├── ILLanguage.cs │ ├── IResourceFileHandler.cs │ ├── Language.cs │ └── Languages.cs ├── LoadedAssembly.cs ├── LoadedAssemblyExtensions.cs ├── LoadedNugetPackage.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MessageBox.cs ├── NavigationHistory.cs ├── NavigationState.cs ├── NugetPackageBrowserDialog.xaml ├── NugetPackageBrowserDialog.xaml.cs ├── OpenListDialog.xaml ├── OpenListDialog.xaml.cs ├── Options │ ├── DecompilerSettingsPanel.xaml │ ├── DecompilerSettingsPanel.xaml.cs │ ├── DisplaySettings.cs │ ├── DisplaySettingsPanel.xaml │ ├── DisplaySettingsPanel.xaml.cs │ ├── MiscSettings.cs │ ├── MiscSettingsPanel.xaml │ ├── MiscSettingsPanel.xaml.cs │ ├── OptionsDialog.xaml │ └── OptionsDialog.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources.zh-Hans.resx │ └── launchSettings.json ├── README.txt ├── Search │ ├── AbstractSearchStrategy.cs │ ├── LiteralSearchStrategy.cs │ ├── MemberSearchStrategy.cs │ ├── MetadataTokenSearchStrategy.cs │ ├── SearchPane.designer.cs │ ├── SearchPane.xaml │ └── SearchPane.xaml.cs ├── SessionSettings.cs ├── SolutionWriter.cs ├── TaskHelper.cs ├── TextView │ ├── AvaloniaEditTextOutput.cs │ ├── BracketHighlightRenderer.cs │ ├── CaretHighlightAdorner.cs │ ├── DecompilerTextView.xaml │ ├── DecompilerTextView.xaml.cs │ ├── EditorCommands.cs │ ├── FoldingCommands.cs │ ├── OutputLengthExceededException.cs │ ├── ReferenceElementGenerator.cs │ ├── UIElementGenerator.cs │ └── XmlDocRenderer.cs ├── Themes │ ├── CSharp-Mode-Dark.xshd │ ├── CSharp-Mode.xshd │ ├── Dark.xaml │ ├── ILAsm-Mode.xshd │ └── Light.xaml └── TreeNodes │ ├── AssemblyListTreeNode.cs │ ├── AssemblyReferenceTreeNode.cs │ ├── AssemblyTreeNode.cs │ ├── BaseTypesEntryNode.cs │ ├── BaseTypesTreeNode.cs │ ├── CopyFullyQualifiedNameContextMenuEntry.cs │ ├── DerivedTypesEntryNode.cs │ ├── DerivedTypesTreeNode.cs │ ├── EventTreeNode.cs │ ├── FieldTreeNode.cs │ ├── FilterResult.cs │ ├── ILSpyTreeNode.cs │ ├── IMemberTreeNode.cs │ ├── MethodTreeNode.cs │ ├── ModuleReferenceTreeNode.cs │ ├── NamespaceTreeNode.cs │ ├── NaturalStringComparer.cs │ ├── PropertyTreeNode.cs │ ├── ReferenceFolderTreeNode.cs │ ├── ResourceListTreeNode.cs │ ├── ResourceNodes │ ├── CursorResourceEntryNode.cs │ ├── IResourceNodeFactory.cs │ ├── IconResourceEntryNode.cs │ ├── ImageListResourceEntryNode.cs │ ├── ImageResourceEntryNode.cs │ ├── ResourceEntryNode.cs │ ├── ResourceTreeNode.cs │ ├── ResourcesFileTreeNode.cs │ ├── XamlResourceNode.cs │ └── XmlResourceNode.cs │ ├── SearchMsdnContextMenuEntry.cs │ ├── ThreadingSupport.cs │ └── TypeTreeNode.cs ├── ILSpy.sln ├── ILSpy ├── ILSpy.csproj ├── ILSpy.icns ├── ILSpy.ico ├── Info.plist └── Program.cs ├── README.md ├── SharpTreeView ├── Consts.cs ├── Converters.cs ├── EditTextBox.cs ├── ExtensionMethods.cs ├── FlatListTreeNode.cs ├── GeneralAdorner.cs ├── InsertMarker.cs ├── LinesRenderer.cs ├── Properties │ ├── AssemblyInfo.cs │ └── GlobalAssemblyInfo.cs ├── SharpGridView.cs ├── SharpTreeNode.cs ├── SharpTreeNodeCollection.cs ├── SharpTreeNodeView.cs ├── SharpTreeView.cs ├── SharpTreeView.csproj ├── SharpTreeViewItem.cs ├── SharpTreeViewTextSearch.cs ├── Themes │ └── TreeView.xaml ├── TreeFlattener.cs ├── TreeTraversal.cs ├── copyright.txt └── license.txt ├── TestPlugin ├── AboutPageAddition.cs ├── Clear.png ├── ContextMenuCommand.cs ├── CustomLanguage.cs ├── CustomOptionPage.xaml ├── CustomOptionPage.xaml.cs ├── MainMenuCommand.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── Readme.txt └── TestPlugin.csproj ├── doc ├── Command Line.txt ├── ILAst.txt ├── IntPtr.txt ├── LGPL.txt ├── MS-PL.txt ├── Resources.txt ├── copyright.txt └── license.txt ├── global.json ├── nuget.config ├── preview.png └── updates.xml /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PdbProvider.Cecil/MonoCecilDebugInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ICSharpCode.Decompiler.PdbProvider.Cecil/MonoCecilDebugInfoProvider.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/ICSharpCode.Decompiler.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ICSharpCode.Decompiler/ICSharpCode.Decompiler.ruleset -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/ICSharpCode.Decompiler.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ICSharpCode.Decompiler/ICSharpCode.Decompiler.snk -------------------------------------------------------------------------------- /ILSpy.Core/AboutPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/AboutPage.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzeCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzerEntityTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzerEntityTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzerScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzerScope.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzerSearchTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzerSearchTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzerTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzerTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/AnalyzerTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/AnalyzerTreeView.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/AttributeAppliedToAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/AttributeAppliedToAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/EventImplementsInterfaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/EventImplementsInterfaceAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/EventOverriddenByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/EventOverriddenByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/FieldAccessAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/FieldAccessAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/MethodImplementsInterfaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/MethodImplementsInterfaceAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/MethodOverriddenByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/MethodOverriddenByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/MethodUsedByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/MethodUsedByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/MethodUsesAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/MethodUsesAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/MethodVirtualUsedByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/MethodVirtualUsedByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/PropertyImplementsInterfaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/PropertyImplementsInterfaceAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/PropertyOverriddenByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/PropertyOverriddenByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/TypeExposedByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/TypeExposedByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/TypeExtensionMethodsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/TypeExtensionMethodsAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/TypeInstantiatedByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/TypeInstantiatedByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/Builtin/TypeUsedByAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/Builtin/TypeUsedByAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/IAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/IAnalyzer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/RemoveAnalyzeContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/RemoveAnalyzeContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedAccessorTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedAccessorTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedEventTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedEventTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedFieldTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedFieldTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedMethodTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedMethodTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedPropertyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedPropertyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/Analyzers/TreeNodes/AnalyzedTypeTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Analyzers/TreeNodes/AnalyzedTypeTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/App.xaml -------------------------------------------------------------------------------- /ILSpy.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/App.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/ApplicationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ApplicationExtensions.cs -------------------------------------------------------------------------------- /ILSpy.Core/AssemblyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/AssemblyList.cs -------------------------------------------------------------------------------- /ILSpy.Core/AssemblyListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/AssemblyListManager.cs -------------------------------------------------------------------------------- /ILSpy.Core/AvalonEdit/ITextMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/AvalonEdit/ITextMarker.cs -------------------------------------------------------------------------------- /ILSpy.Core/AvalonEdit/TextMarkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/AvalonEdit/TextMarkerService.cs -------------------------------------------------------------------------------- /ILSpy.Core/CommandLineArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/CommandLineArguments.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/BrowseBackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/BrowseBackCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/BrowseForwardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/BrowseForwardCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/CheckForUpdatesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/CheckForUpdatesCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/CommandWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/CommandWrapper.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/DecompileAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/DecompileAllCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/DisassembleAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/DisassembleAllCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/ExportCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/ExportCommandAttribute.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/GeneratePdbContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/GeneratePdbContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/ILSpyCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/ILSpyCommands.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/NavigationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/NavigationCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/OpenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/OpenCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/OpenFromNuGetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/OpenFromNuGetCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/OpenListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/OpenListCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/Pdb2XmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/Pdb2XmlCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/RefreshCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/RefreshCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/RemoveAssembliesWithLoadErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/RemoveAssembliesWithLoadErrors.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/SaveCodeContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/SaveCodeContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/SaveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/SaveCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/ShowDebugSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/ShowDebugSteps.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/ShowDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/ShowDialog.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/SimpleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/SimpleCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/Commands/SortAssemblyListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Commands/SortAssemblyListCommand.cs -------------------------------------------------------------------------------- /ILSpy.Core/ContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ControlColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ControlColor.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/CustomDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/CustomDialog.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Controls/CustomDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/CustomDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/DialogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/DialogWindow.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/DockedPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/DockedPane.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/DockedPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/DockedPane.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ExtensionMethods.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/PlatformDependentWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/PlatformDependentWindow.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ResourceObjectTable.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ResourceObjectTable.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ResourceObjectTable.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ResourceObjectTable.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ResourceStringTable.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ResourceStringTable.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Controls/ResourceStringTable.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/ResourceStringTable.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/SearchBox.cs -------------------------------------------------------------------------------- /ILSpy.Core/Controls/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Controls/SearchBox.xaml -------------------------------------------------------------------------------- /ILSpy.Core/CreateListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/CreateListDialog.xaml -------------------------------------------------------------------------------- /ILSpy.Core/CreateListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/CreateListDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/DebugInfo/DiaSymNativeDebugInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/DebugInfo/DiaSymNativeDebugInfoProvider.cs -------------------------------------------------------------------------------- /ILSpy.Core/DebugInfo/PortableDebugInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/DebugInfo/PortableDebugInfoProvider.cs -------------------------------------------------------------------------------- /ILSpy.Core/DebugSteps.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/DebugSteps.xaml -------------------------------------------------------------------------------- /ILSpy.Core/DebugSteps.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/DebugSteps.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/DecompilationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/DecompilationOptions.cs -------------------------------------------------------------------------------- /ILSpy.Core/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ExtensionMethods.cs -------------------------------------------------------------------------------- /ILSpy.Core/FilterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/FilterSettings.cs -------------------------------------------------------------------------------- /ILSpy.Core/GuessFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/GuessFileType.cs -------------------------------------------------------------------------------- /ILSpy.Core/ILSpy.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ILSpy.Core.csproj -------------------------------------------------------------------------------- /ILSpy.Core/ILSpySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ILSpySettings.cs -------------------------------------------------------------------------------- /ILSpy.Core/ILSpyTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ILSpyTraceListener.cs -------------------------------------------------------------------------------- /ILSpy.Core/IPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/IPane.cs -------------------------------------------------------------------------------- /ILSpy.Core/ISmartTextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/ISmartTextOutput.cs -------------------------------------------------------------------------------- /ILSpy.Core/Images/AccessOverlayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/AccessOverlayIcon.cs -------------------------------------------------------------------------------- /ILSpy.Core/Images/Assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Assembly.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/AssemblyList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/AssemblyList.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/AssemblyListGAC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/AssemblyListGAC.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/AssemblyWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/AssemblyWarning.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Back.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Break.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Breakpoint.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Class.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ClearSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ClearSearch.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/CollapseAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/CollapseAll.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Constructor.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Copy.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/CurrentLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/CurrentLine.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Delegate.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Delete.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/DisabledBreakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/DisabledBreakpoint.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Enum.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/EnumValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/EnumValue.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Event.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ExtensionMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ExtensionMethod.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Field.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/FieldReadOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/FieldReadOnly.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Find.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/FindAssembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/FindAssembly.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Folder.Closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Folder.Closed.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Folder.Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Folder.Open.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Forward.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ILSpy.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ILSpy.pdn -------------------------------------------------------------------------------- /ILSpy.Core/Images/ILSpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ILSpy.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ILSpyNewIconList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ILSpyNewIconList.txt -------------------------------------------------------------------------------- /ILSpy.Core/Images/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Images.cs -------------------------------------------------------------------------------- /ILSpy.Core/Images/Indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Indexer.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Interface.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Library.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Literal.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/MemberIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/MemberIcon.cs -------------------------------------------------------------------------------- /ILSpy.Core/Images/Method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Method.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/NameSpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/NameSpace.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OK.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Open.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Operator.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayCompilerControlled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayCompilerControlled.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayInternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayInternal.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayPrivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayPrivate.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayPrivateProtected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayPrivateProtected.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayProtected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayProtected.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayProtectedInternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayProtectedInternal.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/OverlayStatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/OverlayStatic.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/PInvokeMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/PInvokeMethod.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/PrivateInternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/PrivateInternal.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Property.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ReferenceFolder.Closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ReferenceFolder.Closed.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ReferenceFolder.Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ReferenceFolder.Open.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Refresh.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Resource.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceImage.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceResourcesFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceResourcesFile.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceXml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceXml.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceXsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceXsd.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceXsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceXsl.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ResourceXslt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ResourceXslt.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/SaveFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/SaveFile.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Search.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/SearchMsdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/SearchMsdn.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/ShowAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ShowAll.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Sort.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/StaticClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/StaticClass.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Struct.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/SubTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/SubTypes.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/SuperTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/SuperTypes.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/TypeIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/TypeIcon.cs -------------------------------------------------------------------------------- /ILSpy.Core/Images/ViewCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/ViewCode.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/VirtualMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/VirtualMethod.png -------------------------------------------------------------------------------- /ILSpy.Core/Images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Images/Warning.png -------------------------------------------------------------------------------- /ILSpy.Core/Languages/CSharpBracketSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/CSharpBracketSearcher.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/CSharpHighlightingTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/CSharpHighlightingTokenWriter.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/CSharpILMixedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/CSharpILMixedLanguage.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/CSharpLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/CSharpLanguage.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/CSharpLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/CSharpLexer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/ILAstLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/ILAstLanguage.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/ILLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/ILLanguage.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/IResourceFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/IResourceFileHandler.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/Language.cs -------------------------------------------------------------------------------- /ILSpy.Core/Languages/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Languages/Languages.cs -------------------------------------------------------------------------------- /ILSpy.Core/LoadedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/LoadedAssembly.cs -------------------------------------------------------------------------------- /ILSpy.Core/LoadedAssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/LoadedAssemblyExtensions.cs -------------------------------------------------------------------------------- /ILSpy.Core/LoadedNugetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/LoadedNugetPackage.cs -------------------------------------------------------------------------------- /ILSpy.Core/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/MainWindow.xaml -------------------------------------------------------------------------------- /ILSpy.Core/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/MessageBox.cs -------------------------------------------------------------------------------- /ILSpy.Core/NavigationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/NavigationHistory.cs -------------------------------------------------------------------------------- /ILSpy.Core/NavigationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/NavigationState.cs -------------------------------------------------------------------------------- /ILSpy.Core/NugetPackageBrowserDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/NugetPackageBrowserDialog.xaml -------------------------------------------------------------------------------- /ILSpy.Core/NugetPackageBrowserDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/NugetPackageBrowserDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/OpenListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/OpenListDialog.xaml -------------------------------------------------------------------------------- /ILSpy.Core/OpenListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/OpenListDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/DecompilerSettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/DecompilerSettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Options/DecompilerSettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/DecompilerSettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/DisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/DisplaySettings.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/DisplaySettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/DisplaySettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Options/DisplaySettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/DisplaySettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/MiscSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/MiscSettings.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/MiscSettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/MiscSettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Options/MiscSettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/MiscSettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Options/OptionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/OptionsDialog.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Options/OptionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Options/OptionsDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /ILSpy.Core/Properties/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Properties/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /ILSpy.Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /ILSpy.Core/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/README.txt -------------------------------------------------------------------------------- /ILSpy.Core/Search/AbstractSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/AbstractSearchStrategy.cs -------------------------------------------------------------------------------- /ILSpy.Core/Search/LiteralSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/LiteralSearchStrategy.cs -------------------------------------------------------------------------------- /ILSpy.Core/Search/MemberSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/MemberSearchStrategy.cs -------------------------------------------------------------------------------- /ILSpy.Core/Search/MetadataTokenSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/MetadataTokenSearchStrategy.cs -------------------------------------------------------------------------------- /ILSpy.Core/Search/SearchPane.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/SearchPane.designer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Search/SearchPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/SearchPane.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Search/SearchPane.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Search/SearchPane.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/SessionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/SessionSettings.cs -------------------------------------------------------------------------------- /ILSpy.Core/SolutionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/SolutionWriter.cs -------------------------------------------------------------------------------- /ILSpy.Core/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TaskHelper.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/AvaloniaEditTextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/AvaloniaEditTextOutput.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/BracketHighlightRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/BracketHighlightRenderer.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/CaretHighlightAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/CaretHighlightAdorner.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/DecompilerTextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/DecompilerTextView.xaml -------------------------------------------------------------------------------- /ILSpy.Core/TextView/DecompilerTextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/DecompilerTextView.xaml.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/EditorCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/EditorCommands.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/FoldingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/FoldingCommands.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/OutputLengthExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/OutputLengthExceededException.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/ReferenceElementGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/ReferenceElementGenerator.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/UIElementGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/UIElementGenerator.cs -------------------------------------------------------------------------------- /ILSpy.Core/TextView/XmlDocRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TextView/XmlDocRenderer.cs -------------------------------------------------------------------------------- /ILSpy.Core/Themes/CSharp-Mode-Dark.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Themes/CSharp-Mode-Dark.xshd -------------------------------------------------------------------------------- /ILSpy.Core/Themes/CSharp-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Themes/CSharp-Mode.xshd -------------------------------------------------------------------------------- /ILSpy.Core/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Themes/Dark.xaml -------------------------------------------------------------------------------- /ILSpy.Core/Themes/ILAsm-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Themes/ILAsm-Mode.xshd -------------------------------------------------------------------------------- /ILSpy.Core/Themes/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/Themes/Light.xaml -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/AssemblyListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/AssemblyListTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/AssemblyReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/AssemblyReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/AssemblyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/AssemblyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/BaseTypesEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/BaseTypesEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/BaseTypesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/BaseTypesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/CopyFullyQualifiedNameContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/CopyFullyQualifiedNameContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/DerivedTypesEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/DerivedTypesEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/DerivedTypesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/DerivedTypesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/EventTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/EventTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/FieldTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/FieldTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/FilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/FilterResult.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ILSpyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ILSpyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/IMemberTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/IMemberTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/MethodTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/MethodTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ModuleReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ModuleReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/NamespaceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/NamespaceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/NaturalStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/NaturalStringComparer.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/PropertyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/PropertyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ReferenceFolderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ReferenceFolderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceListTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/CursorResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/CursorResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/IResourceNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/IResourceNodeFactory.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/IconResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/IconResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/ImageListResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/ImageListResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/ImageResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/ImageResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/ResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/ResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/ResourceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/ResourceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/ResourcesFileTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/XamlResourceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/XamlResourceNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ResourceNodes/XmlResourceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ResourceNodes/XmlResourceNode.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/SearchMsdnContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/SearchMsdnContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/ThreadingSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/ThreadingSupport.cs -------------------------------------------------------------------------------- /ILSpy.Core/TreeNodes/TypeTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.Core/TreeNodes/TypeTreeNode.cs -------------------------------------------------------------------------------- /ILSpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy.sln -------------------------------------------------------------------------------- /ILSpy/ILSpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy/ILSpy.csproj -------------------------------------------------------------------------------- /ILSpy/ILSpy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy/ILSpy.icns -------------------------------------------------------------------------------- /ILSpy/ILSpy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy/ILSpy.ico -------------------------------------------------------------------------------- /ILSpy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy/Info.plist -------------------------------------------------------------------------------- /ILSpy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/ILSpy/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/README.md -------------------------------------------------------------------------------- /SharpTreeView/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/Consts.cs -------------------------------------------------------------------------------- /SharpTreeView/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/Converters.cs -------------------------------------------------------------------------------- /SharpTreeView/EditTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/EditTextBox.cs -------------------------------------------------------------------------------- /SharpTreeView/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/ExtensionMethods.cs -------------------------------------------------------------------------------- /SharpTreeView/FlatListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/FlatListTreeNode.cs -------------------------------------------------------------------------------- /SharpTreeView/GeneralAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/GeneralAdorner.cs -------------------------------------------------------------------------------- /SharpTreeView/InsertMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/InsertMarker.cs -------------------------------------------------------------------------------- /SharpTreeView/LinesRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/LinesRenderer.cs -------------------------------------------------------------------------------- /SharpTreeView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpTreeView/Properties/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/Properties/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpGridView.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeNode.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeNodeCollection.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeNodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeNodeView.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeView.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeView.csproj -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeViewItem.cs -------------------------------------------------------------------------------- /SharpTreeView/SharpTreeViewTextSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/SharpTreeViewTextSearch.cs -------------------------------------------------------------------------------- /SharpTreeView/Themes/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/Themes/TreeView.xaml -------------------------------------------------------------------------------- /SharpTreeView/TreeFlattener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/TreeFlattener.cs -------------------------------------------------------------------------------- /SharpTreeView/TreeTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/TreeTraversal.cs -------------------------------------------------------------------------------- /SharpTreeView/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/copyright.txt -------------------------------------------------------------------------------- /SharpTreeView/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/SharpTreeView/license.txt -------------------------------------------------------------------------------- /TestPlugin/AboutPageAddition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/AboutPageAddition.cs -------------------------------------------------------------------------------- /TestPlugin/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/Clear.png -------------------------------------------------------------------------------- /TestPlugin/ContextMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/ContextMenuCommand.cs -------------------------------------------------------------------------------- /TestPlugin/CustomLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/CustomLanguage.cs -------------------------------------------------------------------------------- /TestPlugin/CustomOptionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/CustomOptionPage.xaml -------------------------------------------------------------------------------- /TestPlugin/CustomOptionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/CustomOptionPage.xaml.cs -------------------------------------------------------------------------------- /TestPlugin/MainMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/MainMenuCommand.cs -------------------------------------------------------------------------------- /TestPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPlugin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/Properties/launchSettings.json -------------------------------------------------------------------------------- /TestPlugin/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/Readme.txt -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/TestPlugin/TestPlugin.csproj -------------------------------------------------------------------------------- /doc/Command Line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/Command Line.txt -------------------------------------------------------------------------------- /doc/ILAst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/ILAst.txt -------------------------------------------------------------------------------- /doc/IntPtr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/IntPtr.txt -------------------------------------------------------------------------------- /doc/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/LGPL.txt -------------------------------------------------------------------------------- /doc/MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/MS-PL.txt -------------------------------------------------------------------------------- /doc/Resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/Resources.txt -------------------------------------------------------------------------------- /doc/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/copyright.txt -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/doc/license.txt -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/nuget.config -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/preview.png -------------------------------------------------------------------------------- /updates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/AvaloniaILSpy/HEAD/updates.xml --------------------------------------------------------------------------------