├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── wrong_decompilation.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build-frontends.yml │ ├── build-ilspy.yml │ ├── codeql-analysis.yml │ ├── generate-bom.yml │ ├── lock.yml │ └── scorecard.yml ├── .gitignore ├── .gitmodules ├── .tgitconfig ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── BuildTools ├── ILSpy.AddIn.VS2022.vsix.filelist ├── ILSpy.AddIn.vsix.filelist ├── ILSpy.msi.filelist ├── bom-classify-encodings.ps1 ├── bom-strip.ps1 ├── create-filelists.ps1 ├── format.bat ├── ghactions-install.ps1 ├── pre-commit ├── sort-resx.ps1 └── update-assemblyinfo.ps1 ├── Directory.Build.props ├── Directory.Packages.props ├── ICSharpCode.BamlDecompiler ├── Baml │ ├── BamlContext.cs │ ├── BamlDocument.cs │ ├── BamlNode.cs │ ├── BamlReader.cs │ ├── BamlRecords.cs │ ├── BamlWriter.cs │ ├── KnownMembers.cs │ ├── KnownThings.cs │ ├── KnownThings.g.cs │ ├── KnownThings.gen.cs │ └── KnownTypes.cs ├── BamlConnectionId.cs ├── BamlDecompilationResult.cs ├── BamlDecompilerSettings.cs ├── BamlDecompilerTypeSystem.cs ├── BamlElement.cs ├── Handlers │ ├── Blocks │ │ ├── ConstructorParametersHandler.cs │ │ ├── DocumentHandler.cs │ │ ├── ElementHandler.cs │ │ ├── KeyElementStartHandler.cs │ │ ├── PropertyArrayHandler.cs │ │ ├── PropertyComplexHandler.cs │ │ ├── PropertyDictionaryHandler.cs │ │ └── PropertyListHandler.cs │ └── Records │ │ ├── AssemblyInfoHandler.cs │ │ ├── AttributeInfoHandler.cs │ │ ├── ConnectionIdHandler.cs │ │ ├── ConstructorParameterTypeHandler.cs │ │ ├── ContentPropertyHandler.cs │ │ ├── DefAttributeHandler.cs │ │ ├── DefAttributeKeyStringHandler.cs │ │ ├── DefAttributeKeyTypeHandler.cs │ │ ├── DeferableContentStartHandler.cs │ │ ├── LineNumberAndPositionHandler.cs │ │ ├── LinePositionHandler.cs │ │ ├── LiteralContentHandler.cs │ │ ├── OptimizedStaticResourceHandler.cs │ │ ├── PIMappingHandler.cs │ │ ├── PresentationOptionsAttributeHandler.cs │ │ ├── PropertyCustomHandler.cs │ │ ├── PropertyHandler.cs │ │ ├── PropertyTypeReferenceHandler.cs │ │ ├── PropertyWithConverterHandler.cs │ │ ├── PropertyWithExtensionHandler.cs │ │ ├── PropertyWithStaticResourceIdHandler.cs │ │ ├── StaticResourceIdHandler.cs │ │ ├── StaticResourceStartHandler.cs │ │ ├── TextHandler.cs │ │ ├── TextWithConverterHandler.cs │ │ ├── TypeInfoHandler.cs │ │ └── XmlnsPropertyHandler.cs ├── ICSharpCode.BamlDecompiler.csproj ├── IHandlers.cs ├── IRewritePass.cs ├── PackageReadme.md ├── Rewrite │ ├── AttributeRewritePass.cs │ ├── ConnectionIdRewritePass.cs │ ├── DocumentRewritePass.cs │ ├── MarkupExtensionRewritePass.cs │ └── XClassRewritePass.cs ├── Xaml │ ├── NamespaceMap.cs │ ├── XamlExtension.cs │ ├── XamlPathDeserializer.cs │ ├── XamlProperty.cs │ ├── XamlResourceKey.cs │ ├── XamlType.cs │ └── XamlUtils.cs ├── XamlContext.cs ├── XamlDecompiler.cs ├── XmlnsDictionary.cs └── packages.lock.json ├── ICSharpCode.Decompiler.PowerShell ├── Demo.ps1 ├── ErrorIds.cs ├── GetDecompiledProjectCmdlet.cs ├── GetDecompiledSourceCmdlet.cs ├── GetDecompiledTypesCmdlet.cs ├── GetDecompilerCmdlet.cs ├── GetDecompilerVersion.cs ├── GetTargetFramework.cs ├── ICSharpCode.Decompiler.PowerShell.csproj ├── NullAttributes.cs ├── README.md ├── TypesParser.cs └── manifest.psd1 ├── ICSharpCode.Decompiler.TestRunner ├── ICSharpCode.Decompiler.TestRunner.csproj └── Program.cs ├── ICSharpCode.Decompiler.Tests ├── CorrectnessTestRunner.cs ├── DataFlowTest.cs ├── DisassemblerPrettyTestRunner.cs ├── Helpers │ ├── CodeAssert.cs │ ├── RemoveCompilerAttribute.cs │ ├── RoslynToolset.cs │ ├── SdkUtility.cs │ ├── Tester.VB.cs │ ├── Tester.cs │ └── TestsAssemblyOutput.cs ├── ICSharpCode.Decompiler.Tests.csproj ├── ILPrettyTestRunner.cs ├── Output │ ├── CSharpAmbienceTests.cs │ └── InsertParenthesesVisitorTests.cs ├── PdbGenerationTestRunner.cs ├── PrettyTestRunner.cs ├── ProjectDecompiler │ ├── TargetFrameworkTests.cs │ └── WholeProjectDecompilerTests.cs ├── RoundtripAssembly.cs ├── Semantics │ ├── ConversionTests.cs │ ├── ExplicitConversionTest.cs │ └── OverloadResolutionTests.cs ├── TestAssemblyResolver.cs ├── TestCases │ ├── Correctness │ │ ├── Async.cs │ │ ├── BitNot.il │ │ ├── Capturing.cs │ │ ├── ComInterop.cs │ │ ├── Comparisons.cs │ │ ├── CompoundAssignment.cs │ │ ├── ConditionalAttr.cs │ │ ├── ControlFlow.cs │ │ ├── Conversions.cs │ │ ├── DecimalFields.cs │ │ ├── DeconstructionTests.cs │ │ ├── DynamicTests.cs │ │ ├── ExpressionTrees.cs │ │ ├── FloatingPointArithmetic.cs │ │ ├── Generics.cs │ │ ├── HelloWorld.cs │ │ ├── InitializerTests.cs │ │ ├── Jmp.il │ │ ├── LINQRaytracer.cs │ │ ├── Loops.cs │ │ ├── MemberLookup.cs │ │ ├── MiniJSON.cs │ │ ├── NonGenericConstrainedCallVirt.il │ │ ├── NullPropagation.cs │ │ ├── NullableTests.cs │ │ ├── OverloadResolution.cs │ │ ├── PropertiesAndEvents.cs │ │ ├── Readme.txt │ │ ├── StackTests.il │ │ ├── StackTypes.il │ │ ├── StringConcat.cs │ │ ├── Switch.cs │ │ ├── TrickyTypes.cs │ │ ├── UndocumentedExpressions.cs │ │ ├── Uninit.vb │ │ ├── UnsafeCode.cs │ │ ├── Using.cs │ │ ├── ValueTypeCall.cs │ │ └── YieldReturn.cs │ ├── Disassembler │ │ └── Pretty │ │ │ ├── .gitignore │ │ │ ├── GenericConstraints.il │ │ │ ├── InterfaceImplAttributes.il │ │ │ ├── SecurityDeclarations.il │ │ │ ├── SortMembers.expected.il │ │ │ └── SortMembers.il │ ├── ILPretty │ │ ├── .gitignore │ │ ├── CS1xSwitch_Debug.cs │ │ ├── CS1xSwitch_Debug.il │ │ ├── CS1xSwitch_Release.cs │ │ ├── CS1xSwitch_Release.il │ │ ├── CallIndirect.cs │ │ ├── CallIndirect.il │ │ ├── ConstantBlobs.cs │ │ ├── ConstantBlobs.il │ │ ├── DirectCallToExplicitInterfaceImpl.cs │ │ ├── DirectCallToExplicitInterfaceImpl.il │ │ ├── EmptyBodies.cs │ │ ├── EmptyBodies.il │ │ ├── EvalOrder.cs │ │ ├── EvalOrder.il │ │ ├── ExtensionEncodingV1.cs │ │ ├── ExtensionEncodingV1.il │ │ ├── ExtensionEncodingV2.cs │ │ ├── ExtensionEncodingV2.il │ │ ├── FSharpLoops.fs │ │ ├── FSharpLoops_Debug.cs │ │ ├── FSharpLoops_Debug.il │ │ ├── FSharpLoops_Release.cs │ │ ├── FSharpLoops_Release.il │ │ ├── FSharpUsing.fs │ │ ├── FSharpUsing_Debug.cs │ │ ├── FSharpUsing_Debug.il │ │ ├── FSharpUsing_Release.cs │ │ ├── FSharpUsing_Release.il │ │ ├── GuessAccessors.cs │ │ ├── GuessAccessors.il │ │ ├── Issue1038.cs │ │ ├── Issue1038.il │ │ ├── Issue1047.cs │ │ ├── Issue1047.il │ │ ├── Issue1145.cs │ │ ├── Issue1145.il │ │ ├── Issue1157.cs │ │ ├── Issue1157.il │ │ ├── Issue1256.cs │ │ ├── Issue1256.il │ │ ├── Issue1323.cs │ │ ├── Issue1323.il │ │ ├── Issue1325.cs │ │ ├── Issue1325.il │ │ ├── Issue1325.vb │ │ ├── Issue1389.cs │ │ ├── Issue1389.il │ │ ├── Issue1454.cs │ │ ├── Issue1454.il │ │ ├── Issue1681.cs │ │ ├── Issue1681.il │ │ ├── Issue1918.cs │ │ ├── Issue1918.il │ │ ├── Issue1922.cs │ │ ├── Issue1922.il │ │ ├── Issue2104.cs │ │ ├── Issue2104.il │ │ ├── Issue2260SwitchString.cs │ │ ├── Issue2260SwitchString.il │ │ ├── Issue2443.cs │ │ ├── Issue2443.il │ │ ├── Issue3344CkFinite.cs │ │ ├── Issue3344CkFinite.il │ │ ├── Issue3421.cs │ │ ├── Issue3421.il │ │ ├── Issue3442.cs │ │ ├── Issue3442.il │ │ ├── Issue3465.cs │ │ ├── Issue3465.il │ │ ├── Issue3466.cs │ │ ├── Issue3466.il │ │ ├── Issue3504.cs │ │ ├── Issue3504.il │ │ ├── Issue3524.cs │ │ ├── Issue3524.il │ │ ├── Issue3552.cs │ │ ├── Issue3552.il │ │ ├── Issue379.cs │ │ ├── Issue379.il │ │ ├── Issue646.cs │ │ ├── Issue646.il │ │ ├── Issue684.cs │ │ ├── Issue684.il │ │ ├── Issue959.cs │ │ ├── Issue959.il │ │ ├── Issue982.cs │ │ ├── Issue982.il │ │ ├── MonoFixed.cs │ │ ├── MonoFixed.il │ │ ├── SequenceOfNestedIfs.cs │ │ ├── SequenceOfNestedIfs.il │ │ ├── UnknownTypes.cs │ │ ├── UnknownTypes.il │ │ ├── Unsafe.cs │ │ ├── Unsafe.il │ │ ├── WeirdEnums.cs │ │ └── WeirdEnums.il │ ├── PdbGen │ │ ├── .gitignore │ │ ├── CustomPdbId.xml │ │ ├── ForLoopTests.xml │ │ ├── HelloWorld.xml │ │ ├── LambdaCapturing.xml │ │ ├── Members.xml │ │ └── ProgressReporting.xml │ ├── Pretty │ │ ├── .gitignore │ │ ├── AnonymousTypes.cs │ │ ├── AssemblyCustomAttributes.cs │ │ ├── Async.cs │ │ ├── AsyncForeach.cs │ │ ├── AsyncMain.cs │ │ ├── AsyncStreams.cs │ │ ├── AsyncUsing.cs │ │ ├── AutoProperties.cs │ │ ├── CS72_PrivateProtected.cs │ │ ├── CS73_StackAllocInitializers.cs │ │ ├── CS9_ExtensionGetEnumerator.cs │ │ ├── CheckedUnchecked.cs │ │ ├── Comparisons.cs │ │ ├── CompoundAssignmentTest.cs │ │ ├── ConstantsTests.cs │ │ ├── ConstructorInitializers.cs │ │ ├── CovariantReturns.cs │ │ ├── CustomAttributeConflicts.cs │ │ ├── CustomAttributeSamples.cs │ │ ├── CustomAttributes.cs │ │ ├── CustomAttributes2.cs │ │ ├── CustomShortCircuitOperators.cs │ │ ├── CustomTaskType.cs │ │ ├── DeconstructionTests.cs │ │ ├── DelegateConstruction.cs │ │ ├── Discards.cs │ │ ├── DynamicTests.cs │ │ ├── EnumTests.cs │ │ ├── ExceptionHandling.cs │ │ ├── ExpandParamsArgumentsDisabled.cs │ │ ├── ExpressionTrees.cs │ │ ├── ExtensionProperties.cs │ │ ├── FileScopedNamespaces.cs │ │ ├── FixProxyCalls.cs │ │ ├── FunctionPointers.cs │ │ ├── Generics.cs │ │ ├── GloballyQualifiedTypeInStringInterpolation.cs │ │ ├── HelloWorld.cs │ │ ├── IndexRangeTest.cs │ │ ├── InitializerTests.cs │ │ ├── InlineArrayTests.cs │ │ ├── InlineAssignmentTest.cs │ │ ├── InterfaceTests.cs │ │ ├── Issue1080.cs │ │ ├── Issue3406.cs │ │ ├── Issue3439.cs │ │ ├── Issue3442.cs │ │ ├── Issue3452.cs │ │ ├── Issue3483.cs │ │ ├── Issue3541.cs │ │ ├── Issue3571_A.cs │ │ ├── Issue3571_B.cs │ │ ├── Issue3571_C.cs │ │ ├── Issue3576.cs │ │ ├── Issue3584.cs │ │ ├── Issue3598.cs │ │ ├── Issue3610.cs │ │ ├── Issue3611.cs │ │ ├── LiftedOperators.cs │ │ ├── LocalFunctions.cs │ │ ├── Lock.cs │ │ ├── Loops.cs │ │ ├── MemberTests.cs │ │ ├── MetadataAttributes.cs │ │ ├── MultidimensionalArray.cs │ │ ├── NamedArguments.cs │ │ ├── NativeInts.cs │ │ ├── NullPropagation.cs │ │ ├── NullableRefTypes.cs │ │ ├── Operators.cs │ │ ├── OptionalArguments.cs │ │ ├── OptionalArgumentsDisabled.cs │ │ ├── OutVariables.cs │ │ ├── PInvoke.cs │ │ ├── ParamsCollections.cs │ │ ├── PatternMatching.cs │ │ ├── PointerArithmetic.cs │ │ ├── PropertiesAndEvents.cs │ │ ├── QualifierTests.cs │ │ ├── QueryExpressions.cs │ │ ├── Readme.txt │ │ ├── Records.cs │ │ ├── ReduceNesting.cs │ │ ├── RefFields.cs │ │ ├── RefLocalsAndReturns.cs │ │ ├── ShortCircuit.cs │ │ ├── StaticAbstractInterfaceMembers.cs │ │ ├── StringInterpolation.cs │ │ ├── Structs.cs │ │ ├── Switch.cs │ │ ├── SwitchExpressions.cs │ │ ├── ThrowExpressions.cs │ │ ├── TupleTests.cs │ │ ├── TypeAnalysisTests.cs │ │ ├── TypeMemberTests.cs │ │ ├── UnsafeCode.cs │ │ ├── UserDefinedConversions.cs │ │ ├── Using.cs │ │ ├── UsingVariables.cs │ │ ├── ValueTypes.cs │ │ ├── VariableNaming.cs │ │ ├── VariableNamingWithoutSymbols.cs │ │ ├── WellKnownConstants.cs │ │ └── YieldReturn.cs │ ├── Ugly │ │ ├── .gitignore │ │ ├── AggressiveScalarReplacementOfAggregates.Expected.cs │ │ ├── AggressiveScalarReplacementOfAggregates.cs │ │ ├── AggressiveScalarReplacementOfAggregates.net40.roslyn.il │ │ ├── AggressiveScalarReplacementOfAggregates.opt.net40.roslyn.il │ │ ├── AggressiveScalarReplacementOfAggregates.opt.roslyn.il │ │ ├── AggressiveScalarReplacementOfAggregates.roslyn.il │ │ ├── NoArrayInitializers.Expected.cs │ │ ├── NoArrayInitializers.cs │ │ ├── NoArrayInitializers.net40.roslyn.il │ │ ├── NoArrayInitializers.opt.net40.roslyn.il │ │ ├── NoArrayInitializers.opt.roslyn.il │ │ ├── NoArrayInitializers.roslyn.il │ │ ├── NoDecimalConstants.Expected.cs │ │ ├── NoDecimalConstants.cs │ │ ├── NoDecimalConstants.net40.roslyn.il │ │ ├── NoDecimalConstants.opt.net40.roslyn.il │ │ ├── NoDecimalConstants.opt.roslyn.il │ │ ├── NoDecimalConstants.roslyn.il │ │ ├── NoExtensionMethods.Expected.cs │ │ ├── NoExtensionMethods.cs │ │ ├── NoExtensionMethods.net40.roslyn.il │ │ ├── NoExtensionMethods.opt.net40.roslyn.il │ │ ├── NoExtensionMethods.opt.roslyn.il │ │ ├── NoExtensionMethods.roslyn.il │ │ ├── NoForEachStatement.Expected.cs │ │ ├── NoForEachStatement.cs │ │ ├── NoForEachStatement.il │ │ ├── NoForEachStatement.net40.roslyn.il │ │ ├── NoForEachStatement.opt.il │ │ ├── NoForEachStatement.opt.net40.roslyn.il │ │ ├── NoForEachStatement.opt.roslyn.il │ │ ├── NoForEachStatement.roslyn.il │ │ ├── NoLocalFunctions.Expected.cs │ │ ├── NoLocalFunctions.cs │ │ ├── NoLocalFunctions.net40.roslyn.il │ │ ├── NoLocalFunctions.opt.net40.roslyn.il │ │ ├── NoLocalFunctions.opt.roslyn.il │ │ ├── NoLocalFunctions.roslyn.il │ │ ├── NoNewOfT.Expected.cs │ │ ├── NoNewOfT.cs │ │ ├── NoNewOfT.il │ │ ├── NoNewOfT.net40.roslyn.il │ │ ├── NoNewOfT.opt.il │ │ ├── NoNewOfT.opt.net40.roslyn.il │ │ ├── NoNewOfT.opt.roslyn.il │ │ ├── NoNewOfT.roslyn.il │ │ ├── NoPropertiesAndEvents.Expected.cs │ │ ├── NoPropertiesAndEvents.cs │ │ ├── NoPropertiesAndEvents.il │ │ ├── NoPropertiesAndEvents.net40.roslyn.il │ │ ├── NoPropertiesAndEvents.opt.il │ │ ├── NoPropertiesAndEvents.opt.net40.roslyn.il │ │ ├── NoPropertiesAndEvents.opt.roslyn.il │ │ └── NoPropertiesAndEvents.roslyn.il │ └── VBPretty │ │ ├── .gitignore │ │ ├── Async.cs │ │ ├── Async.vb │ │ ├── Issue1906.cs │ │ ├── Issue1906.vb │ │ ├── Issue2192.cs │ │ ├── Issue2192.vb │ │ ├── Select.cs │ │ ├── Select.vb │ │ ├── VBAutomaticEvents.cs │ │ ├── VBAutomaticEvents.vb │ │ ├── VBCompoundAssign.cs │ │ ├── VBCompoundAssign.vb │ │ ├── VBNonGenericForEach.cs │ │ ├── VBNonGenericForEach.vb │ │ ├── VBPropertiesTest.cs │ │ ├── VBPropertiesTest.vb │ │ ├── YieldReturn.cs │ │ └── YieldReturn.vb ├── TestTraceListener.cs ├── TypeSystem │ ├── ReflectionHelperTests.cs │ ├── TypeSystemLoaderTests.cs │ └── TypeSystemTestCase.cs ├── UglyTestRunner.cs ├── Util │ ├── BitSetTests.cs │ ├── FileUtilityTests.cs │ ├── IntervalTests.cs │ └── LongSetTests.cs └── VBPrettyTestRunner.cs ├── ICSharpCode.Decompiler ├── CSharp │ ├── Annotations.cs │ ├── CSharpDecompiler.cs │ ├── CSharpLanguageVersion.cs │ ├── CallBuilder.cs │ ├── ExpressionBuilder.cs │ ├── OutputVisitor │ │ ├── CSharpAmbience.cs │ │ ├── CSharpFormattingOptions.cs │ │ ├── CSharpOutputVisitor.cs │ │ ├── FormattingOptionsFactory.cs │ │ ├── GenericGrammarAmbiguityVisitor.cs │ │ ├── ITokenWriter.cs │ │ ├── InsertMissingTokensDecorator.cs │ │ ├── InsertParenthesesVisitor.cs │ │ ├── InsertRequiredSpacesDecorator.cs │ │ ├── InsertSpecialsDecorator.cs │ │ └── TextWriterTokenWriter.cs │ ├── ProjectDecompiler │ │ ├── IProjectFileWriter.cs │ │ ├── IProjectInfoProvider.cs │ │ ├── ProjectFileWriterDefault.cs │ │ ├── ProjectFileWriterSdkStyle.cs │ │ ├── TargetFramework.cs │ │ ├── TargetServices.cs │ │ └── WholeProjectDecompiler.cs │ ├── RecordDecompiler.cs │ ├── RequiredNamespaceCollector.cs │ ├── Resolver │ │ ├── AliasNamespaceResolveResult.cs │ │ ├── AliasTypeResolveResult.cs │ │ ├── AwaitResolveResult.cs │ │ ├── CSharpConversions.cs │ │ ├── CSharpInvocationResolveResult.cs │ │ ├── CSharpOperators.cs │ │ ├── CSharpResolver.cs │ │ ├── DynamicInvocationResolveResult.cs │ │ ├── DynamicMemberResolveResult.cs │ │ ├── LambdaResolveResult.cs │ │ ├── Log.cs │ │ ├── MemberLookup.cs │ │ ├── MethodGroupResolveResult.cs │ │ ├── NameLookupMode.cs │ │ ├── OverloadResolution.cs │ │ ├── OverloadResolutionErrors.cs │ │ └── TypeInference.cs │ ├── SequencePointBuilder.cs │ ├── StatementBuilder.cs │ ├── Syntax │ │ ├── AstNode.cs │ │ ├── AstNodeCollection.cs │ │ ├── AstType.cs │ │ ├── CSharpModifierToken.cs │ │ ├── CSharpTokenNode.cs │ │ ├── ComposedType.cs │ │ ├── DepthFirstAstVisitor.cs │ │ ├── DocumentationReference.cs │ │ ├── Expressions │ │ │ ├── AnonymousMethodExpression.cs │ │ │ ├── AnonymousTypeCreateExpression.cs │ │ │ ├── ArrayCreateExpression.cs │ │ │ ├── ArrayInitializerExpression.cs │ │ │ ├── AsExpression.cs │ │ │ ├── AssignmentExpression.cs │ │ │ ├── BaseReferenceExpression.cs │ │ │ ├── BinaryOperatorExpression.cs │ │ │ ├── CastExpression.cs │ │ │ ├── CheckedExpression.cs │ │ │ ├── ConditionalExpression.cs │ │ │ ├── DeclarationExpression.cs │ │ │ ├── DefaultValueExpression.cs │ │ │ ├── DirectionExpression.cs │ │ │ ├── ErrorExpression.cs │ │ │ ├── Expression.cs │ │ │ ├── IdentifierExpression.cs │ │ │ ├── IndexerExpression.cs │ │ │ ├── InterpolatedStringExpression.cs │ │ │ ├── InvocationExpression.cs │ │ │ ├── IsExpression.cs │ │ │ ├── LambdaExpression.cs │ │ │ ├── MemberReferenceExpression.cs │ │ │ ├── NamedArgumentExpression.cs │ │ │ ├── NamedExpression.cs │ │ │ ├── NullReferenceExpression.cs │ │ │ ├── ObjectCreateExpression.cs │ │ │ ├── OutVarDeclarationExpression.cs │ │ │ ├── ParenthesizedExpression.cs │ │ │ ├── PointerReferenceExpression.cs │ │ │ ├── PrimitiveExpression.cs │ │ │ ├── QueryExpression.cs │ │ │ ├── RecursivePatternExpression.cs │ │ │ ├── SizeOfExpression.cs │ │ │ ├── StackAllocExpression.cs │ │ │ ├── SwitchExpression.cs │ │ │ ├── ThisReferenceExpression.cs │ │ │ ├── ThrowExpression.cs │ │ │ ├── TupleExpression.cs │ │ │ ├── TypeOfExpression.cs │ │ │ ├── TypeReferenceExpression.cs │ │ │ ├── UnaryOperatorExpression.cs │ │ │ ├── UncheckedExpression.cs │ │ │ ├── UndocumentedExpression.cs │ │ │ └── WithInitializerExpression.cs │ │ ├── FunctionPointerAstType.cs │ │ ├── GeneralScope │ │ │ ├── Attribute.cs │ │ │ ├── AttributeSection.cs │ │ │ ├── Comment.cs │ │ │ ├── Constraint.cs │ │ │ ├── DelegateDeclaration.cs │ │ │ ├── ExternAliasDeclaration.cs │ │ │ ├── NamespaceDeclaration.cs │ │ │ ├── PreProcessorDirective.cs │ │ │ ├── TypeDeclaration.cs │ │ │ ├── TypeParameterDeclaration.cs │ │ │ ├── UsingAliasDeclaration.cs │ │ │ └── UsingDeclaration.cs │ │ ├── IAnnotatable.cs │ │ ├── IAstVisitor.cs │ │ ├── Identifier.cs │ │ ├── IdentifierExpressionBackreference.cs │ │ ├── InvocationAstType.cs │ │ ├── MemberType.cs │ │ ├── Modifiers.cs │ │ ├── NodeType.cs │ │ ├── PatternMatching │ │ │ ├── AnyNode.cs │ │ │ ├── AnyNodeOrNull.cs │ │ │ ├── Backreference.cs │ │ │ ├── BacktrackingInfo.cs │ │ │ ├── Choice.cs │ │ │ ├── INode.cs │ │ │ ├── Match.cs │ │ │ ├── NamedNode.cs │ │ │ ├── OptionalNode.cs │ │ │ ├── Pattern.cs │ │ │ └── Repeat.cs │ │ ├── PrimitiveType.cs │ │ ├── Role.cs │ │ ├── Roles.cs │ │ ├── SimpleType.cs │ │ ├── Statements │ │ │ ├── BlockStatement.cs │ │ │ ├── BreakStatement.cs │ │ │ ├── CheckedStatement.cs │ │ │ ├── ContinueStatement.cs │ │ │ ├── DoWhileStatement.cs │ │ │ ├── EmptyStatement.cs │ │ │ ├── ExpressionStatement.cs │ │ │ ├── FixedStatement.cs │ │ │ ├── ForStatement.cs │ │ │ ├── ForeachStatement.cs │ │ │ ├── GotoStatement.cs │ │ │ ├── IfElseStatement.cs │ │ │ ├── LabelStatement.cs │ │ │ ├── LocalFunctionDeclarationStatement.cs │ │ │ ├── LockStatement.cs │ │ │ ├── ReturnStatement.cs │ │ │ ├── Statement.cs │ │ │ ├── SwitchStatement.cs │ │ │ ├── ThrowStatement.cs │ │ │ ├── TryCatchStatement.cs │ │ │ ├── UncheckedStatement.cs │ │ │ ├── UnsafeStatement.cs │ │ │ ├── UsingStatement.cs │ │ │ ├── VariableDeclarationStatement.cs │ │ │ ├── WhileStatement.cs │ │ │ ├── YieldBreakStatement.cs │ │ │ └── YieldReturnStatement.cs │ │ ├── SyntaxExtensions.cs │ │ ├── SyntaxTree.cs │ │ ├── TextLocation.cs │ │ ├── TokenRole.cs │ │ ├── TupleAstType.cs │ │ ├── TypeMembers │ │ │ ├── Accessor.cs │ │ │ ├── ConstructorDeclaration.cs │ │ │ ├── DestructorDeclaration.cs │ │ │ ├── EntityDeclaration.cs │ │ │ ├── EnumMemberDeclaration.cs │ │ │ ├── EventDeclaration.cs │ │ │ ├── ExtensionDeclaration.cs │ │ │ ├── FieldDeclaration.cs │ │ │ ├── FixedFieldDeclaration.cs │ │ │ ├── FixedVariableInitializer.cs │ │ │ ├── IndexerDeclaration.cs │ │ │ ├── MethodDeclaration.cs │ │ │ ├── OperatorDeclaration.cs │ │ │ ├── ParameterDeclaration.cs │ │ │ ├── PropertyDeclaration.cs │ │ │ └── VariableInitializer.cs │ │ ├── TypeSystemAstBuilder.cs │ │ └── VariableDesignation.cs │ ├── Transforms │ │ ├── AddCheckedBlocks.cs │ │ ├── AddXmlDocumentationTransform.cs │ │ ├── CombineQueryExpressions.cs │ │ ├── ContextTrackingVisitor.cs │ │ ├── CustomPatterns.cs │ │ ├── DeclareVariables.cs │ │ ├── EscapeInvalidIdentifiers.cs │ │ ├── FixNameCollisions.cs │ │ ├── FlattenSwitchBlocks.cs │ │ ├── IAstTransform.cs │ │ ├── IntroduceExtensionMethods.cs │ │ ├── IntroduceQueryExpressions.cs │ │ ├── IntroduceUnsafeModifier.cs │ │ ├── IntroduceUsingDeclarations.cs │ │ ├── NormalizeBlockStatements.cs │ │ ├── PatternStatementTransform.cs │ │ ├── PrettifyAssignments.cs │ │ ├── RemoveCLSCompliantAttribute.cs │ │ ├── ReplaceMethodCallsWithOperators.cs │ │ ├── TransformContext.cs │ │ └── TransformFieldAndConstructorInitializers.cs │ ├── TranslatedExpression.cs │ ├── TranslatedStatement.cs │ ├── TranslationContext.cs │ └── TypeSystem │ │ ├── CSharpTypeResolveContext.cs │ │ └── UsingScope.cs ├── DebugInfo │ ├── AsyncDebugInfo.cs │ ├── DebugInfoGenerator.cs │ ├── IDebugInfoProvider.cs │ ├── ImportScopeInfo.cs │ ├── KnownGuids.cs │ ├── PortablePdbWriter.cs │ └── SequencePoint.cs ├── DecompilationProgress.cs ├── DecompileRun.cs ├── DecompilerException.cs ├── DecompilerNuGetPackageIcon.png ├── DecompilerSettings.cs ├── Disassembler │ ├── DisassemblerHelpers.cs │ ├── DisassemblerSignatureTypeProvider.cs │ ├── IEntityProcessor.cs │ ├── ILParser.cs │ ├── ILStructure.cs │ ├── MethodBodyDisassembler.cs │ ├── OpCodeInfo.cs │ ├── ReflectionDisassembler.cs │ └── SortByNameProcessor.cs ├── Documentation │ ├── GetPotentiallyNestedClassTypeReference.cs │ ├── IdStringMemberReference.cs │ ├── IdStringProvider.cs │ ├── XmlDocLoader.cs │ ├── XmlDocumentationElement.cs │ └── XmlDocumentationProvider.cs ├── FlowAnalysis │ ├── ControlFlowNode.cs │ ├── DataFlowVisitor.cs │ ├── DefiniteAssignmentVisitor.cs │ ├── Dominance.cs │ └── ReachingDefinitionsVisitor.cs ├── Humanizer │ ├── LICENSE │ ├── StringHumanizeExtensions.cs │ ├── Vocabularies.cs │ └── Vocabulary.cs ├── ICSharpCode.Decompiler.csproj ├── ICSharpCode.Decompiler.ruleset ├── ICSharpCode.Decompiler.snk ├── IL │ ├── BlockBuilder.cs │ ├── ControlFlow │ │ ├── AsyncAwaitDecompiler.cs │ │ ├── AwaitInCatchTransform.cs │ │ ├── AwaitInFinallyTransform.cs │ │ ├── ConditionDetection.cs │ │ ├── ControlFlowGraph.cs │ │ ├── ControlFlowSimplification.cs │ │ ├── DetectPinnedRegions.cs │ │ ├── ExitPoints.cs │ │ ├── LoopDetection.cs │ │ ├── RemoveRedundantReturn.cs │ │ ├── StateRangeAnalysis.cs │ │ ├── SwitchAnalysis.cs │ │ ├── SwitchDetection.cs │ │ ├── SymbolicExecution.cs │ │ └── YieldReturnDecompiler.cs │ ├── ILAstWritingOptions.cs │ ├── ILInstructionExtensions.cs │ ├── ILReader.cs │ ├── ILTypeExtensions.cs │ ├── ILVariable.cs │ ├── InstructionFlags.cs │ ├── InstructionOutputExtensions.cs │ ├── Instructions.cs │ ├── Instructions.tt │ ├── Instructions │ │ ├── Await.cs │ │ ├── BinaryNumericInstruction.cs │ │ ├── Block.cs │ │ ├── BlockContainer.cs │ │ ├── Branch.cs │ │ ├── CallIndirect.cs │ │ ├── CallInstruction.cs │ │ ├── Comp.cs │ │ ├── CompoundAssignmentInstruction.cs │ │ ├── Conv.cs │ │ ├── DeconstructInstruction.cs │ │ ├── DeconstructResultInstruction.cs │ │ ├── DefaultValue.cs │ │ ├── DynamicInstructions.cs │ │ ├── ExpressionTreeCast.cs │ │ ├── ILFunction.cs │ │ ├── ILInstruction.cs │ │ ├── ILVariableCollection.cs │ │ ├── IfInstruction.cs │ │ ├── InstructionCollection.cs │ │ ├── IsInst.cs │ │ ├── LdFlda.cs │ │ ├── LdLen.cs │ │ ├── Leave.cs │ │ ├── LockInstruction.cs │ │ ├── LogicInstructions.cs │ │ ├── MatchInstruction.cs │ │ ├── MemoryInstructions.cs │ │ ├── NullCoalescingInstruction.cs │ │ ├── NullableInstructions.cs │ │ ├── PatternMatching.cs │ │ ├── SimpleInstruction.cs │ │ ├── StLoc.cs │ │ ├── StringToInt.cs │ │ ├── SwitchInstruction.cs │ │ ├── TryInstruction.cs │ │ ├── UnaryInstruction.cs │ │ └── UsingInstruction.cs │ ├── Patterns │ │ ├── AnyNode.cs │ │ ├── ListMatch.cs │ │ └── Match.cs │ ├── PointerArithmeticOffset.cs │ ├── PrimitiveType.cs │ ├── SemanticHelper.cs │ ├── SlotInfo.cs │ ├── StackType.cs │ └── Transforms │ │ ├── AssignVariableNames.cs │ │ ├── BlockTransform.cs │ │ ├── CachedDelegateInitialization.cs │ │ ├── CombineExitsTransform.cs │ │ ├── CopyPropagation.cs │ │ ├── DeconstructionTransform.cs │ │ ├── DelegateConstruction.cs │ │ ├── DetectCatchWhenConditionBlocks.cs │ │ ├── DynamicCallSiteTransform.cs │ │ ├── DynamicIsEventAssignmentTransform.cs │ │ ├── EarlyExpressionTransforms.cs │ │ ├── ExpressionTransforms.cs │ │ ├── FixRemainingIncrements.cs │ │ ├── HighLevelLoopTransform.cs │ │ ├── IILTransform.cs │ │ ├── ILExtraction.cs │ │ ├── ILInlining.cs │ │ ├── IndexRangeTransform.cs │ │ ├── InlineArrayTransform.cs │ │ ├── InlineReturnTransform.cs │ │ ├── InterpolatedStringTransform.cs │ │ ├── IntroduceDynamicTypeOnLocals.cs │ │ ├── IntroduceNativeIntTypeOnLocals.cs │ │ ├── IntroduceRefReadOnlyModifierOnLocals.cs │ │ ├── LdLocaDupInitObjTransform.cs │ │ ├── LocalFunctionDecompiler.cs │ │ ├── LockTransform.cs │ │ ├── NamedArgumentTransform.cs │ │ ├── NullCoalescingTransform.cs │ │ ├── NullPropagationTransform.cs │ │ ├── NullableLiftingTransform.cs │ │ ├── PatternMatchingTransform.cs │ │ ├── ProxyCallReplacer.cs │ │ ├── ReduceNestingTransform.cs │ │ ├── RemoveDeadVariableInit.cs │ │ ├── RemoveInfeasiblePathTransform.cs │ │ ├── RemoveUnconstrainedGenericReferenceTypeCheck.cs │ │ ├── SplitVariables.cs │ │ ├── StatementTransform.cs │ │ ├── Stepper.cs │ │ ├── SwitchOnNullableTransform.cs │ │ ├── SwitchOnStringTransform.cs │ │ ├── TransformArrayInitializers.cs │ │ ├── TransformAssignment.cs │ │ ├── TransformCollectionAndObjectInitializers.cs │ │ ├── TransformDisplayClassUsage.cs │ │ ├── TransformExpressionTrees.cs │ │ ├── TupleTransform.cs │ │ ├── UserDefinedLogicTransform.cs │ │ └── UsingTransform.cs ├── Instrumentation │ └── DecompilerEventSource.cs ├── Metadata │ ├── AssemblyReferences.cs │ ├── CodeMappingInfo.cs │ ├── CustomAttributeDecoder.cs │ ├── DotNetCorePathFinder.cs │ ├── DotNetCorePathFinderExtensions.cs │ ├── EnumUnderlyingTypeResolveException.cs │ ├── ExportedTypeMetadata.cs │ ├── FindTypeDecoder.cs │ ├── FullTypeNameSignatureDecoder.cs │ ├── ILOpCodes.cs │ ├── ILOpCodes.tt │ ├── LightJson │ │ ├── JsonArray.cs │ │ ├── JsonObject.cs │ │ ├── JsonValue.cs │ │ ├── JsonValueType.cs │ │ └── Serialization │ │ │ ├── JsonParseException.cs │ │ │ ├── JsonReader.cs │ │ │ ├── TextPosition.cs │ │ │ └── TextScanner.cs │ ├── MemberReferenceMetadata.cs │ ├── MetadataExtensions.cs │ ├── MetadataFile.cs │ ├── MetadataGenericContext.cs │ ├── MetadataTokenHelpers.cs │ ├── MethodSemanticsLookup.cs │ ├── ModuleReferenceMetadata.cs │ ├── OperandType.cs │ ├── PEFile.cs │ ├── PropertyAndEventBackingFieldLookup.cs │ ├── ReferenceLoadInfo.cs │ ├── Resource.cs │ ├── SignatureBlobComparer.cs │ ├── TypeReferenceMetadata.cs │ ├── UniversalAssemblyResolver.cs │ ├── UnresolvedAssemblyNameReference.cs │ └── WebCilFile.cs ├── NRExtensions.cs ├── NRTAttributes.cs ├── Output │ ├── IAmbience.cs │ ├── ITextOutput.cs │ ├── PlainTextOutput.cs │ ├── TextOutputWriter.cs │ └── TextTokenWriter.cs ├── PackageReadme.md ├── PartialTypeInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ └── DecompilerVersionInfo.template.cs ├── SRMExtensions.cs ├── SRMHacks.cs ├── Semantics │ ├── AmbiguousResolveResult.cs │ ├── ArrayAccessResolveResult.cs │ ├── ArrayCreateResolveResult.cs │ ├── ByReferenceResolveResult.cs │ ├── ConstantResolveResult.cs │ ├── Conversion.cs │ ├── ConversionResolveResult.cs │ ├── ErrorResolveResult.cs │ ├── ForEachResolveResult.cs │ ├── InitializedObjectResolveResult.cs │ ├── InterpolatedStringResolveResult.cs │ ├── InvocationResolveResult.cs │ ├── LocalResolveResult.cs │ ├── MemberResolveResult.cs │ ├── NamedArgumentResolveResult.cs │ ├── NamespaceResolveResult.cs │ ├── OperatorResolveResult.cs │ ├── OutVarResolveResult.cs │ ├── ResolveResult.cs │ ├── SizeOfResolveResult.cs │ ├── ThisResolveResult.cs │ ├── ThrowResolveResult.cs │ ├── TupleResolveResult.cs │ ├── TypeIsResolveResult.cs │ ├── TypeOfResolveResult.cs │ ├── TypeResolveResult.cs │ └── UnknownMemberResolveResult.cs ├── SingleFileBundle.cs ├── Solution │ ├── ProjectId.cs │ ├── ProjectItem.cs │ └── SolutionCreator.cs ├── TypeSystem │ ├── Accessibility.cs │ ├── ApplyAttributeTypeVisitor.cs │ ├── ArrayType.cs │ ├── AssemblyQualifiedTypeName.cs │ ├── ByReferenceType.cs │ ├── ComHelper.cs │ ├── DecompilerTypeSystem.cs │ ├── ExtensionInfo.cs │ ├── FullTypeName.cs │ ├── FunctionPointerType.cs │ ├── GenericContext.cs │ ├── IAssembly.cs │ ├── IAttribute.cs │ ├── ICodeContext.cs │ ├── ICompilation.cs │ ├── IDecompilerTypeSystem.cs │ ├── IEntity.cs │ ├── IEvent.cs │ ├── IField.cs │ ├── IFreezable.cs │ ├── IInterningProvider.cs │ ├── IMember.cs │ ├── IMethod.cs │ ├── INamedElement.cs │ ├── INamespace.cs │ ├── IParameter.cs │ ├── IParameterizedMember.cs │ ├── IProperty.cs │ ├── ISupportsInterning.cs │ ├── ISymbol.cs │ ├── IType.cs │ ├── ITypeDefinition.cs │ ├── ITypeDefinitionOrUnknown.cs │ ├── ITypeParameter.cs │ ├── ITypeReference.cs │ ├── IVariable.cs │ ├── Implementation │ │ ├── AbstractFreezable.cs │ │ ├── AbstractType.cs │ │ ├── AbstractTypeParameter.cs │ │ ├── AttributeListBuilder.cs │ │ ├── BaseTypeCollector.cs │ │ ├── CustomAttribute.cs │ │ ├── DecimalConstantHelper.cs │ │ ├── DecoratedType.cs │ │ ├── DefaultAssemblyReference.cs │ │ ├── DefaultAttribute.cs │ │ ├── DefaultParameter.cs │ │ ├── DefaultTypeParameter.cs │ │ ├── DefaultVariable.cs │ │ ├── DummyTypeParameter.cs │ │ ├── FakeMember.cs │ │ ├── GetMembersHelper.cs │ │ ├── KnownAttributes.cs │ │ ├── KnownTypeCache.cs │ │ ├── LocalFunctionMethod.cs │ │ ├── MergedNamespace.cs │ │ ├── MetadataEvent.cs │ │ ├── MetadataField.cs │ │ ├── MetadataMethod.cs │ │ ├── MetadataNamespace.cs │ │ ├── MetadataParameter.cs │ │ ├── MetadataProperty.cs │ │ ├── MetadataTypeDefinition.cs │ │ ├── MetadataTypeParameter.cs │ │ ├── MinimalCorlib.cs │ │ ├── NestedTypeReference.cs │ │ ├── NullabilityAnnotatedType.cs │ │ ├── PinnedType.cs │ │ ├── SimpleCompilation.cs │ │ ├── SpecializedEvent.cs │ │ ├── SpecializedField.cs │ │ ├── SpecializedMember.cs │ │ ├── SpecializedMethod.cs │ │ ├── SpecializedParameter.cs │ │ ├── SpecializedProperty.cs │ │ ├── SyntheticRangeIndexer.cs │ │ ├── ThreeState.cs │ │ ├── TypeParameterReference.cs │ │ ├── TypeWithElementType.cs │ │ └── UnknownType.cs │ ├── InheritanceHelper.cs │ ├── IntersectionType.cs │ ├── KnownTypeReference.cs │ ├── MetadataModule.cs │ ├── ModifiedType.cs │ ├── NormalizeTypeVisitor.cs │ ├── Nullability.cs │ ├── NullableType.cs │ ├── ParameterListComparer.cs │ ├── ParameterizedType.cs │ ├── PointerType.cs │ ├── ReferenceResolvingException.cs │ ├── ReflectionHelper.cs │ ├── ReflectionNameParseException.cs │ ├── SimpleTypeResolveContext.cs │ ├── SpecialType.cs │ ├── TaskType.cs │ ├── TopLevelTypeName.cs │ ├── TupleType.cs │ ├── TypeKind.cs │ ├── TypeParameterSubstitution.cs │ ├── TypeProvider.cs │ ├── TypeSystemExtensions.cs │ ├── TypeUtils.cs │ ├── TypeVisitor.cs │ └── VarArgInstanceMethod.cs ├── Util │ ├── BitOperations.cs │ ├── BitSet.cs │ ├── BusyManager.cs │ ├── CSharpPrimitiveCast.cs │ ├── CacheManager.cs │ ├── CallbackOnDispose.cs │ ├── CollectionExtensions.cs │ ├── DelegateComparer.cs │ ├── EmptyList.cs │ ├── ExtensionMethods.cs │ ├── FileUtility.cs │ ├── GraphTraversal.cs │ ├── Index.cs │ ├── Interval.cs │ ├── KeyComparer.cs │ ├── LazyInit.cs │ ├── LongDict.cs │ ├── LongSet.cs │ ├── MultiDictionary.cs │ ├── Platform.cs │ ├── ProjectedList.cs │ ├── ReferenceComparer.cs │ ├── ResXResourceWriter.cs │ ├── ResourcesFile.cs │ ├── TreeTraversal.cs │ ├── UnicodeNewline.cs │ ├── UnionFind.cs │ └── Win32Resources.cs └── packages.lock.json ├── ICSharpCode.ILSpyCmd ├── AsContainer │ ├── Dockerfile │ ├── DockerfileForAutomation │ └── README.md ├── DotNetToolUpdateChecker.cs ├── ICSharpCode.ILSpyCmd.csproj ├── ILSpyCmdNuGetPackageIcon.png ├── IlspyCmdProgram.cs ├── ProgramExitCodes.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── README.md ├── TypesParser.cs ├── ValidationAttributes.cs └── packages.lock.json ├── ICSharpCode.ILSpyX ├── Abstractions │ ├── ILanguage.cs │ └── ITreeNode.cs ├── Analyzers │ ├── AnalyzerContext.cs │ ├── AnalyzerHelpers.cs │ ├── AnalyzerScope.cs │ ├── Builtin │ │ ├── AttributeAppliedToAnalyzer.cs │ │ ├── EventImplementedByAnalyzer.cs │ │ ├── EventOverriddenByAnalyzer.cs │ │ ├── FieldAccessAnalyzer.cs │ │ ├── FindTypeInAttributeDecoder.cs │ │ ├── MemberImplementsInterfaceAnalyzer.cs │ │ ├── MethodImplementedByAnalyzer.cs │ │ ├── MethodOverriddenByAnalyzer.cs │ │ ├── MethodUsedByAnalyzer.cs │ │ ├── MethodUsesAnalyzer.cs │ │ ├── MethodVirtualUsedByAnalyzer.cs │ │ ├── PropertyImplementedByAnalyzer.cs │ │ ├── PropertyOverriddenByAnalyzer.cs │ │ ├── TypeExposedByAnalyzer.cs │ │ ├── TypeExtensionMethodsAnalyzer.cs │ │ ├── TypeInstantiatedByAnalyzer.cs │ │ └── TypeUsedByAnalyzer.cs │ ├── ExportAnalyzerAttribute.cs │ └── IAnalyzer.cs ├── ApiVisibility.cs ├── AssemblyList.cs ├── AssemblyListManager.cs ├── AssemblyListSnapshot.cs ├── Extensions │ └── CollectionExtensions.cs ├── FileLoaders │ ├── ArchiveFileLoader.cs │ ├── BundleFileLoader.cs │ ├── FileLoaderRegistry.cs │ ├── LoadResult.cs │ ├── MetadataFileLoader.cs │ ├── PEFileLoader.cs │ ├── WebCilFileLoader.cs │ └── XamarinCompressedFileLoader.cs ├── ICSharpCode.ILSpyX.csproj ├── LanguageVersion.cs ├── LoadedAssembly.cs ├── LoadedAssemblyExtensions.cs ├── LoadedPackage.cs ├── MermaidDiagrammer │ ├── ClassDiagrammer.cs │ ├── ClassDiagrammerFactory.cs │ ├── EmbeddedResource.cs │ ├── Extensions │ │ ├── StringExtensions.cs │ │ └── TypeExtensions.cs │ ├── Factory.BuildTypes.cs │ ├── Factory.FlatMembers.cs │ ├── Factory.Relationships.cs │ ├── Factory.TypeIds.cs │ ├── Factory.TypeNames.cs │ ├── GenerateHtmlDiagrammer.cs │ ├── Generator.Run.cs │ ├── ReadMe.md │ ├── XmlDocumentationFormatter.cs │ └── html │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .vscode │ │ └── tasks.json │ │ ├── README.txt │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── script.js │ │ ├── styles.css │ │ ├── styles.less │ │ └── template.html ├── PackageReadme.md ├── PdbProvider │ ├── DebugInfoUtils.cs │ ├── MonoCecilDebugInfoProvider.cs │ └── PortableDebugInfoProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── Search │ ├── AbstractEntitySearchStrategy.cs │ ├── AbstractSearchStrategy.cs │ ├── AssemblySearchStrategy.cs │ ├── CSharpLexer.cs │ ├── LiteralSearchStrategy.cs │ ├── MemberSearchStrategy.cs │ ├── MetadataTokenSearchStrategy.cs │ ├── NamespaceSearchStrategy.cs │ ├── ResourceSearchStrategy.cs │ └── SearchResult.cs ├── Settings │ ├── DecompilerSettings.cs │ ├── DefaultSettingsFilePathProvider.cs │ ├── ILSpySettings.cs │ ├── ISettingsFilePathProvider.cs │ ├── ISettingsProvider.cs │ └── SettingsServiceBase.cs ├── TreeView │ ├── FlatListTreeNode.cs │ ├── PlatformAbstractions │ │ ├── IPlatformDataObject.cs │ │ ├── IPlatformDragDrop.cs │ │ ├── IPlatformDragEventArgs.cs │ │ ├── IPlatformRoutedEventArgs.cs │ │ ├── ITreeNodeImagesProvider.cs │ │ └── XPlatDragDropEffects.cs │ ├── SharpTreeNode.cs │ ├── SharpTreeNodeCollection.cs │ ├── TreeFlattener.cs │ └── TreeTraversal.cs └── packages.lock.json ├── ILSpy.AddIn.Shared ├── AssemblyFileFinder.cs ├── Commands │ ├── AssemblyReferenceForILSpy.cs │ ├── NuGetReferenceForILSpy.cs │ ├── OpenCodeItemCommand.cs │ ├── OpenILSpyCommand.cs │ ├── OpenProjectOutputCommand.cs │ ├── OpenReferenceCommand.cs │ ├── ProjectItemForILSpy.cs │ └── ProjectReferenceForILSpy.cs ├── GlobalSuppressions.cs ├── Guids.cs ├── ILSpy.AddIn.Shared.projitems ├── ILSpy.AddIn.Shared.shproj ├── ILSpyAddInPackage.cs ├── ILSpyInstance.cs ├── PkgCmdID.cs ├── Resources.Designer.cs ├── Resources.resx ├── SyntaxNodeExtensions.cs ├── Utils.cs ├── VSPackage.en-US.resx ├── VSPackage.resx └── VSPackage.zh-Hans.resx ├── ILSpy.AddIn.VS2022 ├── Decompiler │ └── Dummy.cs ├── ILSpy-Large.ico ├── ILSpy.AddIn.VS2022.csproj ├── ILSpyAddIn.en-US.vsct ├── ILSpyAddIn.vsct ├── ILSpyAddIn.zh-Hans.vsct ├── Key.snk ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── README.md ├── Resources │ ├── Images.png │ └── Package.ico ├── source.extension.vsixmanifest.template └── zh-Hans │ └── extension.vsixlangpack ├── ILSpy.AddIn ├── Decompiler │ └── Dummy.cs ├── ILSpy-Large.ico ├── ILSpy.AddIn.csproj ├── ILSpyAddIn.en-US.vsct ├── ILSpyAddIn.vsct ├── ILSpyAddIn.zh-Hans.vsct ├── Key.snk ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── README.md ├── Resources │ ├── Images.png │ └── Package.ico ├── source.extension.vsixmanifest.template └── zh-Hans │ └── extension.vsixlangpack ├── ILSpy.BamlDecompiler.Tests ├── BamlTestRunner.cs ├── Cases │ ├── AttachedEvent.xaml │ ├── AttachedEvent.xaml.cs │ ├── AvalonDockBrushes.xaml │ ├── AvalonDockCommon.xaml │ ├── CustomControl.cs │ ├── Dictionary1.xaml │ ├── EscapeSequence.xaml │ ├── Issue1435.xaml │ ├── Issue1546.xaml │ ├── Issue1547.xaml │ ├── Issue1547.xaml.cs │ ├── Issue2052.xaml │ ├── Issue2097.xaml │ ├── Issue2097.xaml.cs │ ├── Issue2116.xaml │ ├── Issue2116.xaml.cs │ ├── Issue3318.xaml │ ├── Issue3318.xaml.cs │ ├── Issue445.xaml │ ├── Issue775.xaml │ ├── MarkupExtension.xaml │ ├── MyControl.xaml │ ├── MyControl.xaml.cs │ ├── NamespacePrefix.xaml │ ├── ReadonlyProperty.xaml │ ├── ReadonlyProperty.xaml.cs │ ├── Resources.xaml │ ├── Resources.xaml.cs │ ├── Simple.xaml │ ├── Simple.xaml.cs │ ├── SimpleDictionary.xaml │ ├── SimpleNames.xaml │ ├── SimpleNames.xaml.cs │ └── SimplePropertyElement.xaml ├── ILSpy.BamlDecompiler.Tests.csproj └── Mocks │ └── AvalonDock.cs ├── ILSpy.BamlDecompiler ├── BamlResourceEntryNode.cs ├── BamlResourceNodeFactory.cs ├── ILSpy.BamlDecompiler.csproj └── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── ILSpy.Installer.sln ├── ILSpy.Installer ├── AppPackage.cs ├── ILSpy.Installer.csproj ├── README.md ├── setup.cs └── winui.wxl ├── ILSpy.ReadyToRun ├── ILSpy.ReadyToRun.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources.zh-Hans.resx │ └── launchSettings.json ├── ReadyToRunDisassembler.cs ├── ReadyToRunLanguage.cs ├── ReadyToRunOptionPage.xaml ├── ReadyToRunOptionPage.xaml.cs └── ReadyToRunOptions.cs ├── ILSpy.Tests ├── Analyzers │ ├── AnalyzerScopeTests.cs │ ├── ExportAnalyzerAttributeTests.cs │ ├── MemberImplementsInterfaceAnalyzerTests.cs │ ├── MethodUsesAnalyzerTests.cs │ ├── TestCases │ │ └── MainAssembly.cs │ └── TypeUsedByAnalyzerTests.cs ├── BitmapContainer.resources ├── CommandLineArgumentsTests.cs ├── ILSpy.Tests.csproj ├── Icon.ico ├── IconContainer.resx ├── ResourceReaderWriterTests.cs └── Test.resources ├── ILSpy.VSExtensions.sln ├── ILSpy.Wpf.slnf ├── ILSpy.XPlat.slnf ├── ILSpy.sln ├── ILSpy ├── AboutPage.cs ├── Analyzers │ ├── AnalyzeCommand.cs │ ├── AnalyzerEntityTreeNode.cs │ ├── AnalyzerRootNode.cs │ ├── AnalyzerSearchTreeNode.cs │ ├── AnalyzerTreeNode.cs │ ├── AnalyzerTreeView.xaml │ ├── AnalyzerTreeView.xaml.cs │ ├── AnalyzerTreeViewModel.cs │ ├── CopyAnalysisResultsContextMenuEntry.cs │ ├── RemoveAnalyzeContextMenuEntry.cs │ └── TreeNodes │ │ ├── AnalyzedAccessorTreeNode.cs │ │ ├── AnalyzedEventTreeNode.cs │ │ ├── AnalyzedFieldTreeNode.cs │ │ ├── AnalyzedMethodTreeNode.cs │ │ ├── AnalyzedModuleTreeNode.cs │ │ ├── AnalyzedPropertyTreeNode.cs │ │ └── AnalyzedTypeTreeNode.cs ├── App.xaml ├── App.xaml.cs ├── AppEnv │ ├── AppEnvironment.cs │ ├── CommandLineArguments.cs │ ├── CommandLineTools.cs │ └── SingleInstance.cs ├── AssemblyTree │ ├── AssemblyListPane.xaml │ ├── AssemblyListPane.xaml.cs │ └── AssemblyTreeModel.cs ├── AvalonEdit │ ├── ITextMarker.cs │ └── TextMarkerService.cs ├── Commands │ ├── BrowseBackCommand.cs │ ├── BrowseForwardCommand.cs │ ├── CheckForUpdatesCommand.cs │ ├── CommandWrapper.cs │ ├── CompareContextMenuEntry.cs │ ├── CopyFullyQualifiedNameContextMenuEntry.cs │ ├── CreateDiagramContextMenuEntry.cs │ ├── DecompileAllCommand.cs │ ├── DecompileCommand.cs │ ├── DecompileInNewViewCommand.cs │ ├── DelegateCommand.cs │ ├── DisassembleAllCommand.cs │ ├── ExitCommand.cs │ ├── ExportCommandAttribute.cs │ ├── ExtractPackageEntryContextMenuEntry.cs │ ├── GeneratePdbContextMenuEntry.cs │ ├── IProtocolHandler.cs │ ├── ManageAssemblyListsCommand.cs │ ├── OpenCommand.cs │ ├── OpenFromGacCommand.cs │ ├── Pdb2XmlCommand.cs │ ├── RefreshCommand.cs │ ├── RemoveAssembliesWithLoadErrors.cs │ ├── SaveCodeContextMenuEntry.cs │ ├── SaveCommand.cs │ ├── ScopeSearchToAssembly.cs │ ├── ScopeSearchToNamespace.cs │ ├── SearchMsdnContextMenuEntry.cs │ ├── SelectPdbContextMenuEntry.cs │ ├── SetThemeCommand.cs │ ├── ShowCFGContextMenuEntry.cs │ ├── ShowPane.cs │ ├── SimpleCommand.cs │ └── SortAssemblyListCommand.cs ├── ContextMenuEntry.cs ├── Controls │ ├── CollapsiblePanel.cs │ ├── CultureSelectionConverter.cs │ ├── CustomDialog.cs │ ├── ExtensionMethods.cs │ ├── GridViewColumnAutoSize.cs │ ├── MainMenu.xaml │ ├── MainMenu.xaml.cs │ ├── MainToolBar.xaml │ ├── MainToolBar.xaml.cs │ ├── MarkupExtensions.cs │ ├── ResourceObjectTable.xaml │ ├── ResourceObjectTable.xaml.cs │ ├── ResourceStringTable.xaml │ ├── ResourceStringTable.xaml.cs │ ├── SearchBox.cs │ ├── SearchBoxStyle.xaml │ ├── SortableGridViewColumn.cs │ ├── TreeView │ │ ├── EditTextBox.cs │ │ ├── ExtensionMethods.cs │ │ ├── GeneralAdorner.cs │ │ ├── InsertMarker.cs │ │ ├── LinesRenderer.cs │ │ ├── SharpGridView.cs │ │ ├── SharpTreeNodeView.cs │ │ ├── SharpTreeView.cs │ │ ├── SharpTreeView.xaml │ │ ├── SharpTreeViewAutomationPeer.cs │ │ ├── SharpTreeViewItem.cs │ │ ├── SharpTreeViewItemAutomationPeer.cs │ │ ├── SharpTreeViewTextSearch.cs │ │ ├── WpfWindowsDataObject.cs │ │ ├── WpfWindowsDragDropManager.cs │ │ ├── WpfWindowsDragEventArgs.cs │ │ └── WpfWindowsRoutedEventArgs.cs │ ├── XamlResourceExtension.cs │ ├── ZoomButtons.cs │ ├── ZoomScrollViewer.cs │ └── ZoomScrollViewer.xaml ├── DecompilationOptions.cs ├── Docking │ ├── CloseAllDocumentsCommand.cs │ ├── DockLayoutSettings.cs │ ├── DockWorkspace.cs │ ├── PaneStyleSelector.cs │ └── TabPageGuardConverter.cs ├── EntityReference.cs ├── ExtensionMethods.cs ├── GlobalUsings.cs ├── GuessFileType.cs ├── ILSpy.csproj ├── ILSpySettingsFilePathProvider.cs ├── ILSpyTraceListener.cs ├── ISmartTextOutput.cs ├── Images │ ├── AccessOverlayIcon.cs │ ├── Assembly.svg │ ├── Assembly.xaml │ ├── AssemblyList.svg │ ├── AssemblyList.xaml │ ├── AssemblyListGAC.svg │ ├── AssemblyListGAC.xaml │ ├── AssemblyWarning.svg │ ├── AssemblyWarning.xaml │ ├── Back.svg │ ├── Back.xaml │ ├── Class.svg │ ├── Class.xaml │ ├── Close.svg │ ├── Close.xaml │ ├── CollapseAll.svg │ ├── CollapseAll.xaml │ ├── Constructor.svg │ ├── Constructor.xaml │ ├── Copy.svg │ ├── Copy.xaml │ ├── Delegate.svg │ ├── Delegate.xaml │ ├── Delete.svg │ ├── Delete.xaml │ ├── DictionaryContain.svg │ ├── DictionaryContain.xaml │ ├── Enum.svg │ ├── Enum.xaml │ ├── EnumValue.svg │ ├── EnumValue.xaml │ ├── Event.svg │ ├── Event.xaml │ ├── ExpandAll.svg │ ├── ExpandAll.xaml │ ├── ExportOverlay.svg │ ├── ExportOverlay.xaml │ ├── ExtensionMethod.svg │ ├── ExtensionMethod.xaml │ ├── Field.svg │ ├── Field.xaml │ ├── FieldReadOnly.svg │ ├── FieldReadOnly.xaml │ ├── FindAssembly.svg │ ├── FindAssembly.xaml │ ├── Folder.Closed.svg │ ├── Folder.Closed.xaml │ ├── Folder.Open.xaml │ ├── FolderOpen.svg │ ├── Forward.svg │ ├── Forward.xaml │ ├── Header.svg │ ├── Header.xaml │ ├── Heap.svg │ ├── Heap.xaml │ ├── ILSpy-Large.ico │ ├── ILSpy.ico │ ├── ILSpy.pdn │ ├── Images.cs │ ├── Indexer.svg │ ├── Indexer.xaml │ ├── Interface.svg │ ├── Interface.xaml │ ├── Library.svg │ ├── Library.xaml │ ├── ListFolder.Open.svg │ ├── ListFolder.Open.xaml │ ├── ListFolder.svg │ ├── ListFolder.xaml │ ├── Literal.svg │ ├── Literal.xaml │ ├── MemberIcon.cs │ ├── Metadata.svg │ ├── Metadata.xaml │ ├── MetadataFile.svg │ ├── MetadataFile.xaml │ ├── MetadataTable.svg │ ├── MetadataTable.xaml │ ├── MetadataTableGroup.svg │ ├── MetadataTableGroup.xaml │ ├── Method.svg │ ├── Method.xaml │ ├── Namespace.svg │ ├── Namespace.xaml │ ├── NuGet.png │ ├── OK.svg │ ├── OK.xaml │ ├── Open.svg │ ├── Open.xaml │ ├── Operator.svg │ ├── Operator.xaml │ ├── OverlayCompilerControlled.svg │ ├── OverlayCompilerControlled.xaml │ ├── OverlayInternal.svg │ ├── OverlayInternal.xaml │ ├── OverlayPrivate.svg │ ├── OverlayPrivate.xaml │ ├── OverlayPrivateProtected.svg │ ├── OverlayPrivateProtected.xaml │ ├── OverlayProtected.svg │ ├── OverlayProtected.xaml │ ├── OverlayProtectedInternal.svg │ ├── OverlayProtectedInternal.xaml │ ├── OverlayStatic.svg │ ├── OverlayStatic.xaml │ ├── PInvokeMethod.svg │ ├── PInvokeMethod.xaml │ ├── ProgramDebugDatabase.svg │ ├── ProgramDebugDatabase.xaml │ ├── Property.svg │ ├── Property.xaml │ ├── README.md │ ├── ReferenceFolder.svg │ ├── ReferenceFolder.xaml │ ├── ReferenceOverlay.svg │ ├── ReferenceOverlay.xaml │ ├── Refresh.svg │ ├── Refresh.xaml │ ├── Resource.svg │ ├── Resource.xaml │ ├── ResourceImage.svg │ ├── ResourceImage.xaml │ ├── ResourceResourcesFile.svg │ ├── ResourceResourcesFile.xaml │ ├── ResourceXml.svg │ ├── ResourceXml.xaml │ ├── ResourceXsd.svg │ ├── ResourceXsd.xaml │ ├── ResourceXsl.svg │ ├── ResourceXsl.xaml │ ├── ResourceXslt.svg │ ├── ResourceXslt.xaml │ ├── ResultToJSON.svg │ ├── ResultToJSON.xaml │ ├── Save.svg │ ├── Save.xaml │ ├── Search.svg │ ├── Search.xaml │ ├── SearchMsdn.svg │ ├── SearchMsdn.xaml │ ├── ShowAll.svg │ ├── ShowAll.xaml │ ├── ShowPrivateInternal.svg │ ├── ShowPrivateInternal.xaml │ ├── ShowPublicOnly.svg │ ├── ShowPublicOnly.xaml │ ├── Sort.svg │ ├── Sort.xaml │ ├── Struct.svg │ ├── Struct.xaml │ ├── SubTypes.svg │ ├── SubTypes.xaml │ ├── SuperTypes.svg │ ├── SuperTypes.xaml │ ├── SwitchSourceOrTarget.svg │ ├── SwitchSourceOrTarget.xaml │ ├── TypeIcon.cs │ ├── ViewCode.svg │ ├── ViewCode.xaml │ ├── VirtualMethod.svg │ ├── VirtualMethod.xaml │ ├── Warning.svg │ ├── Warning.xaml │ ├── WebAssembly.svg │ ├── WebAssembly.xaml │ ├── WpfWindowsTreeNodeImagesProvider.cs │ ├── ZoomIn.svg │ ├── ZoomIn.xaml │ ├── ZoomOut.svg │ └── ZoomOut.xaml ├── LanguageSettings.cs ├── Languages │ ├── CSharpBracketSearcher.cs │ ├── CSharpHighlightingTokenWriter.cs │ ├── CSharpILMixedLanguage.cs │ ├── CSharpLanguage.cs │ ├── ILAstLanguage.cs │ ├── ILLanguage.cs │ ├── IResourceFileHandler.cs │ ├── Language.cs │ └── LanguageService.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindowViewModel.cs ├── Metadata │ ├── CoffHeaderTreeNode.cs │ ├── CorTables │ │ ├── AssemblyRefTableTreeNode.cs │ │ ├── AssemblyTableTreeNode.cs │ │ ├── ClassLayoutTableTreeNode.cs │ │ ├── ConstantTableTreeNode.cs │ │ ├── CustomAttributeTableTreeNode.cs │ │ ├── DeclSecurityTableTreeNode.cs │ │ ├── EventMapTableTreeNode.cs │ │ ├── EventTableTreeNode.cs │ │ ├── ExportedTypeTableTreeNode.cs │ │ ├── FieldLayoutTableTreeNode.cs │ │ ├── FieldMarshalTableTreeNode.cs │ │ ├── FieldRVATableTreeNode.cs │ │ ├── FieldTableTreeNode.cs │ │ ├── FileTableTreeNode.cs │ │ ├── GenericParamConstraintTableTreeNode.cs │ │ ├── GenericParamTableTreeNode.cs │ │ ├── ImplMapTableTreeNode.cs │ │ ├── InterfaceImplTableTreeNode.cs │ │ ├── ManifestResourceTableTreeNode.cs │ │ ├── MemberRefTableTreeNode.cs │ │ ├── MethodImplTableTreeNode.cs │ │ ├── MethodSemanticsTableTreeNode.cs │ │ ├── MethodSpecTableTreeNode.cs │ │ ├── MethodTableTreeNode.cs │ │ ├── ModuleRefTableTreeNode.cs │ │ ├── ModuleTableTreeNode.cs │ │ ├── NestedClassTableTreeNode.cs │ │ ├── ParamTableTreeNode.cs │ │ ├── PropertyMapTableTreeNode.cs │ │ ├── PropertyTableTreeNode.cs │ │ ├── PtrTableTreeNode.cs │ │ ├── StandAloneSigTableTreeNode.cs │ │ ├── TypeDefTableTreeNode.cs │ │ ├── TypeRefTableTreeNode.cs │ │ └── TypeSpecTableTreeNode.cs │ ├── DataDirectoriesTreeNode.cs │ ├── DebugDirectory │ │ ├── CodeViewTreeNode.cs │ │ ├── DebugDirectoryEntryTreeNode.cs │ │ └── PdbChecksumTreeNode.cs │ ├── DebugDirectoryTreeNode.cs │ ├── DebugMetadataTablesTreeNode.cs │ ├── DebugTables │ │ ├── CustomDebugInformationTableTreeNode.cs │ │ ├── DocumentTableTreeNode.cs │ │ ├── ImportScopeTableTreeNode.cs │ │ ├── LocalConstantTableTreeNode.cs │ │ ├── LocalScopeTableTreeNode.cs │ │ ├── LocalVariableTableTreeNode.cs │ │ ├── MethodDebugInformationTableTreeNode.cs │ │ └── StateMachineMethodTableTreeNode.cs │ ├── DosHeaderTreeNode.cs │ ├── FlagsFilterControl.xaml │ ├── FlagsFilterControl.xaml.cs │ ├── FlagsTooltip.xaml │ ├── FlagsTooltip.xaml.cs │ ├── GoToTokenCommand.cs │ ├── Heaps │ │ ├── BlobHeapTreeNode.cs │ │ ├── GuidHeapTreeNode.cs │ │ ├── StringHeapTreeNode.cs │ │ └── UserStringHeapTreeNode.cs │ ├── Helpers.cs │ ├── HexFilterControl.xaml │ ├── HexFilterControl.xaml.cs │ ├── MetaDataGrid.cs │ ├── MetadataHeapTreeNode.cs │ ├── MetadataProtocolHandler.cs │ ├── MetadataTableTreeNode.cs │ ├── MetadataTableViews.xaml │ ├── MetadataTableViews.xaml.cs │ ├── MetadataTablesTreeNode.cs │ ├── MetadataTreeNode.cs │ └── OptionalHeaderTreeNode.cs ├── NativeMethods.cs ├── NavigationHistory.cs ├── NavigationState.cs ├── Options │ ├── DecompilerSettingsPanel.xaml │ ├── DecompilerSettingsPanel.xaml.cs │ ├── DecompilerSettingsViewModel.cs │ ├── DisplaySettings.cs │ ├── DisplaySettingsPanel.xaml │ ├── DisplaySettingsPanel.xaml.cs │ ├── DisplaySettingsViewModel.cs │ ├── MiscSettings.cs │ ├── MiscSettingsPanel.xaml │ ├── MiscSettingsPanel.xaml.cs │ ├── MiscSettingsViewModel.cs │ ├── OptionsDialog.xaml │ ├── OptionsDialog.xaml.cs │ └── OptionsDialogViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources.zh-Hans.resx │ ├── WPFAssemblyInfo.cs │ └── launchSettings.json ├── Search │ ├── SearchPane.xaml │ ├── SearchPane.xaml.cs │ ├── SearchPaneModel.cs │ └── SearchResultFactory.cs ├── SessionSettings.cs ├── SolutionWriter.cs ├── TaskHelper.cs ├── TextView │ ├── Asm-Mode.xshd │ ├── AvalonEditTextOutput.cs │ ├── BracketHighlightRenderer.cs │ ├── CSharp-Mode.xshd │ ├── CaretHighlightAdorner.cs │ ├── DecompilerTextEditor.cs │ ├── DecompilerTextView.cs │ ├── DecompilerTextView.xaml │ ├── DocumentationUIBuilder.cs │ ├── EditorCommands.cs │ ├── FoldingCommands.cs │ ├── ILAsm-Mode.xshd │ ├── OutputLengthExceededException.cs │ ├── ReferenceElementGenerator.cs │ ├── ThemeAwareHighlightingColorizer.cs │ ├── UIElementGenerator.cs │ ├── XML-Mode.xshd │ └── ZoomLevelToTextFormattingModeConverter.cs ├── Themes │ ├── Base.Dark.xaml │ ├── Base.Light.xaml │ ├── ResourceKeys.cs │ ├── SyntaxColor.cs │ ├── Theme.Dark.xaml │ ├── Theme.Light.xaml │ ├── Theme.RSharpDark.xaml │ ├── Theme.RSharpLight.xaml │ ├── Theme.VSCodeDarkPlus.xaml │ ├── Theme.VSCodeLightPlus.xaml │ ├── ThemeManager.cs │ ├── WindowStyleManagerBehavior.cs │ └── generic.xaml ├── TreeNodes │ ├── AssemblyListTreeNode.cs │ ├── AssemblyReferenceReferencedTypesTreeNode.cs │ ├── AssemblyReferenceTreeNode.cs │ ├── AssemblyTreeNode.cs │ ├── BaseTypesEntryNode.cs │ ├── BaseTypesTreeNode.cs │ ├── DerivedTypesEntryNode.cs │ ├── DerivedTypesTreeNode.cs │ ├── EventTreeNode.cs │ ├── ExportedTypeTreeNode.cs │ ├── FieldTreeNode.cs │ ├── FilterResult.cs │ ├── ILSpyTreeNode.cs │ ├── IMemberTreeNode.cs │ ├── MemberReferenceTreeNode.cs │ ├── MethodTreeNode.cs │ ├── ModuleReferenceTreeNode.cs │ ├── NamespaceTreeNode.cs │ ├── NaturalStringComparer.cs │ ├── PackageFolderTreeNode.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 │ ├── ThreadingSupport.cs │ ├── TypeReferenceTreeNode.cs │ └── TypeTreeNode.cs ├── Updates │ ├── AppUpdateService.cs │ ├── AvailableVersionInfo.cs │ ├── UpdateService.cs │ └── UpdateSettings.cs ├── Util │ ├── GlobalUtils.cs │ ├── GraphVizGraph.cs │ ├── MessageBus.cs │ ├── ResourceHelper.cs │ ├── SettingsService.cs │ └── ShellHelper.cs ├── ViewModels │ ├── CompareViewModel.cs │ ├── DebugStepsPaneModel.cs │ ├── LegacyToolPaneModel.cs │ ├── ManageAssemblyListsViewModel.cs │ ├── PaneModel.cs │ ├── TabPageModel.cs │ ├── ToolPaneModel.cs │ └── UpdatePanelViewModel.cs ├── Views │ ├── CompareView.xaml │ ├── CompareView.xaml.cs │ ├── CreateListDialog.xaml │ ├── CreateListDialog.xaml.cs │ ├── DebugSteps.xaml │ ├── DebugSteps.xaml.cs │ ├── ManageAssemblyLIstsDialog.xaml.cs │ ├── ManageAssemblyListsDialog.xaml │ ├── OpenFromGacDialog.xaml │ ├── OpenFromGacDialog.xaml.cs │ ├── UpdatePanel.xaml │ └── UpdatePanel.xaml.cs └── app.manifest ├── LICENSE ├── NuGet.config ├── README.md ├── SECURITY.md ├── 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 ├── clean.bat ├── debugbuild.bat ├── decompiler-nuget-demos.ipynb ├── doc ├── Command Line.txt ├── ILAst Pattern Matching.md ├── ILAst.txt ├── ILSpyAboutPage.txt ├── ILSpyAboutPage_zh_Hans.txt ├── IntPtr.txt ├── Pattern Matching.html ├── README.md ├── Resources.txt ├── copyright.txt └── third-party-notices.txt ├── global.json ├── publish.ps1 ├── publishlocaldev.ps1 └── releasebuild.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [dgrunwald, siegfriedpammer, christophwille] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wrong_decompilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/ISSUE_TEMPLATE/wrong_decompilation.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-frontends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/build-frontends.yml -------------------------------------------------------------------------------- /.github/workflows/build-ilspy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/build-ilspy.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/generate-bom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/generate-bom.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.tgitconfig -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BuildTools/ILSpy.AddIn.VS2022.vsix.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/ILSpy.AddIn.VS2022.vsix.filelist -------------------------------------------------------------------------------- /BuildTools/ILSpy.AddIn.vsix.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/ILSpy.AddIn.vsix.filelist -------------------------------------------------------------------------------- /BuildTools/ILSpy.msi.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/ILSpy.msi.filelist -------------------------------------------------------------------------------- /BuildTools/bom-classify-encodings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/bom-classify-encodings.ps1 -------------------------------------------------------------------------------- /BuildTools/bom-strip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/bom-strip.ps1 -------------------------------------------------------------------------------- /BuildTools/create-filelists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/create-filelists.ps1 -------------------------------------------------------------------------------- /BuildTools/format.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/format.bat -------------------------------------------------------------------------------- /BuildTools/ghactions-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/ghactions-install.ps1 -------------------------------------------------------------------------------- /BuildTools/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/pre-commit -------------------------------------------------------------------------------- /BuildTools/sort-resx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/sort-resx.ps1 -------------------------------------------------------------------------------- /BuildTools/update-assemblyinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/BuildTools/update-assemblyinfo.ps1 -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlContext.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlDocument.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlNode.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlReader.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlRecords.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/BamlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/BamlWriter.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/KnownMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/KnownMembers.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/KnownThings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/KnownThings.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/KnownThings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/KnownThings.g.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/KnownThings.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/KnownThings.gen.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Baml/KnownTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Baml/KnownTypes.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/BamlConnectionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/BamlConnectionId.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/BamlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/BamlElement.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/IHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/IHandlers.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/IRewritePass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/IRewritePass.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/PackageReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/PackageReadme.md -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/NamespaceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/NamespaceMap.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/XamlExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/XamlExtension.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/XamlProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/XamlProperty.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/XamlResourceKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/XamlResourceKey.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/XamlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/XamlType.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/Xaml/XamlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/Xaml/XamlUtils.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/XamlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/XamlContext.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/XamlDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/XamlDecompiler.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/XmlnsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/XmlnsDictionary.cs -------------------------------------------------------------------------------- /ICSharpCode.BamlDecompiler/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.BamlDecompiler/packages.lock.json -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PowerShell/Demo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.PowerShell/Demo.ps1 -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PowerShell/ErrorIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.PowerShell/ErrorIds.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.PowerShell/README.md -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PowerShell/TypesParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.PowerShell/TypesParser.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.PowerShell/manifest.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.PowerShell/manifest.psd1 -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.TestRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.TestRunner/Program.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/DataFlowTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/DataFlowTest.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Helpers/CodeAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Helpers/CodeAssert.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Helpers/SdkUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Helpers/SdkUtility.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Helpers/Tester.VB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Helpers/Tester.VB.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Helpers/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Helpers/Tester.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/ILPrettyTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/ILPrettyTestRunner.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/RoundtripAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/RoundtripAssembly.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/TestCases/Disassembler/Pretty/.gitignore: -------------------------------------------------------------------------------- 1 | *.result.il 2 | *.dll 3 | -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/TestCases/ILPretty/.gitignore: -------------------------------------------------------------------------------- 1 | /*.dll 2 | -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/TestTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/TestTraceListener.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/UglyTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/UglyTestRunner.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Util/BitSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Util/BitSetTests.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Util/IntervalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Util/IntervalTests.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/Util/LongSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/Util/LongSetTests.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler.Tests/VBPrettyTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler.Tests/VBPrettyTestRunner.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Annotations.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/CallBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/CallBuilder.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/ExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/ExpressionBuilder.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/RecordDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/RecordDecompiler.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Resolver/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Resolver/Log.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/StatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/StatementBuilder.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/AstNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/AstNode.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/AstType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/AstType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/Identifier.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/MemberType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/Modifiers.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/NodeType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/Role.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/Roles.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/SimpleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/SimpleType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/SyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/SyntaxTree.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/CSharp/Syntax/TokenRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/CSharp/Syntax/TokenRole.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DebugInfo/AsyncDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DebugInfo/AsyncDebugInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DebugInfo/KnownGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DebugInfo/KnownGuids.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DebugInfo/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DebugInfo/SequencePoint.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DecompilationProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DecompilationProgress.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DecompileRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DecompileRun.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DecompilerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DecompilerException.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/DecompilerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/DecompilerSettings.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Disassembler/ILParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Disassembler/ILParser.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Disassembler/ILStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Disassembler/ILStructure.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Disassembler/OpCodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Disassembler/OpCodeInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/FlowAnalysis/Dominance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/FlowAnalysis/Dominance.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Humanizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Humanizer/LICENSE -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Humanizer/Vocabularies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Humanizer/Vocabularies.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Humanizer/Vocabulary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Humanizer/Vocabulary.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/ICSharpCode.Decompiler.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/ICSharpCode.Decompiler.snk -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/BlockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/BlockBuilder.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/ILAstWritingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/ILAstWritingOptions.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/ILReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/ILReader.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/ILTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/ILTypeExtensions.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/ILVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/ILVariable.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/InstructionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/InstructionFlags.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions.tt -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Await.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Await.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Block.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Branch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Branch.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Comp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Comp.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Conv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Conv.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/IsInst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/IsInst.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/LdFlda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/LdFlda.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/LdLen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/LdLen.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/Leave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/Leave.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Instructions/StLoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Instructions/StLoc.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Patterns/AnyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Patterns/AnyNode.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Patterns/ListMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Patterns/ListMatch.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Patterns/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Patterns/Match.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/PrimitiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/PrimitiveType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/SemanticHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/SemanticHelper.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/SlotInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/SlotInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/StackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/StackType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Transforms/ILInlining.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Transforms/ILInlining.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/IL/Transforms/Stepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/IL/Transforms/Stepper.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/CodeMappingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/CodeMappingInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/FindTypeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/FindTypeDecoder.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/ILOpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/ILOpCodes.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/ILOpCodes.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/ILOpCodes.tt -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/MetadataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/MetadataFile.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/OperandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/OperandType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/PEFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/PEFile.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/Resource.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Metadata/WebCilFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Metadata/WebCilFile.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/NRExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/NRExtensions.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/NRTAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/NRTAttributes.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Output/IAmbience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Output/IAmbience.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Output/ITextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Output/ITextOutput.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Output/PlainTextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Output/PlainTextOutput.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Output/TextOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Output/TextOutputWriter.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Output/TextTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Output/TextTokenWriter.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/PackageReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/PackageReadme.md -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/PartialTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/PartialTypeInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/SRMExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/SRMExtensions.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/SRMHacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/SRMHacks.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Semantics/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Semantics/Conversion.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Semantics/ResolveResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Semantics/ResolveResult.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/SingleFileBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/SingleFileBundle.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Solution/ProjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Solution/ProjectId.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Solution/ProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Solution/ProjectItem.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Solution/SolutionCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Solution/SolutionCreator.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/Accessibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/Accessibility.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ArrayType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ComHelper.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ExtensionInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/FullTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/FullTypeName.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IAssembly.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IAttribute.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ICodeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ICodeContext.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ICompilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ICompilation.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IEntity.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IEvent.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IField.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IFreezable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IFreezable.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IMember.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IMethod.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/INamedElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/INamedElement.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/INamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/INamespace.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IParameter.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IProperty.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ISymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ISymbol.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/IVariable.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/ModifiedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/ModifiedType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/Nullability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/Nullability.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/NullableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/NullableType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/PointerType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/SpecialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/SpecialType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TaskType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TaskType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TupleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TupleType.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TypeKind.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TypeProvider.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TypeUtils.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/TypeSystem/TypeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/TypeSystem/TypeVisitor.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/BitOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/BitOperations.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/BitSet.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/BusyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/BusyManager.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/CSharpPrimitiveCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/CSharpPrimitiveCast.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/CacheManager.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/CallbackOnDispose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/CallbackOnDispose.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/DelegateComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/DelegateComparer.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/EmptyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/EmptyList.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/ExtensionMethods.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/FileUtility.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/GraphTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/GraphTraversal.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/Index.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/Interval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/Interval.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/KeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/KeyComparer.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/LazyInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/LazyInit.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/LongDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/LongDict.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/LongSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/LongSet.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/MultiDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/MultiDictionary.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/Platform.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/ProjectedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/ProjectedList.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/ReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/ReferenceComparer.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/ResXResourceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/ResXResourceWriter.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/ResourcesFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/ResourcesFile.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/TreeTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/TreeTraversal.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/UnicodeNewline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/UnicodeNewline.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/UnionFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/UnionFind.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/Util/Win32Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/Util/Win32Resources.cs -------------------------------------------------------------------------------- /ICSharpCode.Decompiler/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.Decompiler/packages.lock.json -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/AsContainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/AsContainer/Dockerfile -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/AsContainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/AsContainer/README.md -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/DotNetToolUpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/DotNetToolUpdateChecker.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/ILSpyCmdNuGetPackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/ILSpyCmdNuGetPackageIcon.png -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/IlspyCmdProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/IlspyCmdProgram.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/ProgramExitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/ProgramExitCodes.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/README.md -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/TypesParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/TypesParser.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/ValidationAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/ValidationAttributes.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyCmd/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyCmd/packages.lock.json -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Abstractions/ILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Abstractions/ILanguage.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Abstractions/ITreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Abstractions/ITreeNode.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Analyzers/AnalyzerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Analyzers/AnalyzerContext.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Analyzers/AnalyzerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Analyzers/AnalyzerHelpers.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Analyzers/AnalyzerScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Analyzers/AnalyzerScope.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Analyzers/IAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Analyzers/IAnalyzer.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/ApiVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/ApiVisibility.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/AssemblyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/AssemblyList.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/AssemblyListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/AssemblyListManager.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/AssemblyListSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/AssemblyListSnapshot.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/FileLoaders/BundleFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/FileLoaders/BundleFileLoader.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/FileLoaders/LoadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/FileLoaders/LoadResult.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/FileLoaders/PEFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/FileLoaders/PEFileLoader.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/FileLoaders/WebCilFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/FileLoaders/WebCilFileLoader.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/ICSharpCode.ILSpyX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/ICSharpCode.ILSpyX.csproj -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/LanguageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/LanguageVersion.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/LoadedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/LoadedAssembly.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/LoadedAssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/LoadedAssemblyExtensions.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/LoadedPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/LoadedPackage.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/MermaidDiagrammer/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/MermaidDiagrammer/ReadMe.md -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/PackageReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/PackageReadme.md -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/PdbProvider/DebugInfoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/PdbProvider/DebugInfoUtils.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Search/CSharpLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Search/CSharpLexer.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Search/LiteralSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Search/LiteralSearchStrategy.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Search/MemberSearchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Search/MemberSearchStrategy.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Search/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Search/SearchResult.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Settings/DecompilerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Settings/DecompilerSettings.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Settings/ILSpySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Settings/ILSpySettings.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Settings/ISettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Settings/ISettingsProvider.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/Settings/SettingsServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/Settings/SettingsServiceBase.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/TreeView/FlatListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/TreeView/FlatListTreeNode.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/TreeView/SharpTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/TreeView/SharpTreeNode.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/TreeView/TreeFlattener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/TreeView/TreeFlattener.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/TreeView/TreeTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/TreeView/TreeTraversal.cs -------------------------------------------------------------------------------- /ICSharpCode.ILSpyX/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ICSharpCode.ILSpyX/packages.lock.json -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/AssemblyFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/AssemblyFileFinder.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Commands/OpenCodeItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Commands/OpenCodeItemCommand.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Commands/OpenILSpyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Commands/OpenILSpyCommand.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Commands/ProjectItemForILSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Commands/ProjectItemForILSpy.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Guids.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.projitems -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.shproj -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/ILSpyAddInPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/ILSpyAddInPackage.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/ILSpyInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/ILSpyInstance.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/PkgCmdID.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Resources.Designer.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Resources.resx -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/SyntaxNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/SyntaxNodeExtensions.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/Utils.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/VSPackage.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/VSPackage.en-US.resx -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/VSPackage.resx -------------------------------------------------------------------------------- /ILSpy.AddIn.Shared/VSPackage.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.Shared/VSPackage.zh-Hans.resx -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Decompiler/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Decompiler/Dummy.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/ILSpy-Large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/ILSpy-Large.ico -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/ILSpyAddIn.en-US.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/ILSpyAddIn.en-US.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/ILSpyAddIn.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/ILSpyAddIn.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/ILSpyAddIn.zh-Hans.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/ILSpyAddIn.zh-Hans.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Key.snk -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Properties/launchSettings.json -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/README.md -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Resources/Images.png -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/Resources/Package.ico -------------------------------------------------------------------------------- /ILSpy.AddIn.VS2022/zh-Hans/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn.VS2022/zh-Hans/extension.vsixlangpack -------------------------------------------------------------------------------- /ILSpy.AddIn/Decompiler/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Decompiler/Dummy.cs -------------------------------------------------------------------------------- /ILSpy.AddIn/ILSpy-Large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/ILSpy-Large.ico -------------------------------------------------------------------------------- /ILSpy.AddIn/ILSpy.AddIn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/ILSpy.AddIn.csproj -------------------------------------------------------------------------------- /ILSpy.AddIn/ILSpyAddIn.en-US.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/ILSpyAddIn.en-US.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn/ILSpyAddIn.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/ILSpyAddIn.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn/ILSpyAddIn.zh-Hans.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/ILSpyAddIn.zh-Hans.vsct -------------------------------------------------------------------------------- /ILSpy.AddIn/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Key.snk -------------------------------------------------------------------------------- /ILSpy.AddIn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy.AddIn/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Properties/launchSettings.json -------------------------------------------------------------------------------- /ILSpy.AddIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/README.md -------------------------------------------------------------------------------- /ILSpy.AddIn/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Resources/Images.png -------------------------------------------------------------------------------- /ILSpy.AddIn/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/Resources/Package.ico -------------------------------------------------------------------------------- /ILSpy.AddIn/source.extension.vsixmanifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/source.extension.vsixmanifest.template -------------------------------------------------------------------------------- /ILSpy.AddIn/zh-Hans/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.AddIn/zh-Hans/extension.vsixlangpack -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/BamlTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/BamlTestRunner.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/CustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/CustomControl.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Dictionary1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Dictionary1.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue1435.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue1435.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue1546.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue1546.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue1547.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue1547.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue1547.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue1547.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue2052.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue2052.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue2097.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue2097.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue2097.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue2097.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue3318.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue3318.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue3318.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue3318.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue445.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue445.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Issue775.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Issue775.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/MyControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/MyControl.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/MyControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/MyControl.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Resources.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Resources.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Resources.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Simple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Simple.xaml -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Cases/Simple.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Cases/Simple.xaml.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler.Tests/Mocks/AvalonDock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler.Tests/Mocks/AvalonDock.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler/BamlResourceEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler/BamlResourceEntryNode.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler/BamlResourceNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler/BamlResourceNodeFactory.cs -------------------------------------------------------------------------------- /ILSpy.BamlDecompiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.BamlDecompiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy.Installer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer.sln -------------------------------------------------------------------------------- /ILSpy.Installer/AppPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer/AppPackage.cs -------------------------------------------------------------------------------- /ILSpy.Installer/ILSpy.Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer/ILSpy.Installer.csproj -------------------------------------------------------------------------------- /ILSpy.Installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer/README.md -------------------------------------------------------------------------------- /ILSpy.Installer/setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer/setup.cs -------------------------------------------------------------------------------- /ILSpy.Installer/winui.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Installer/winui.wxl -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/Properties/Resources.resx -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/Properties/launchSettings.json -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ReadyToRunDisassembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ReadyToRunDisassembler.cs -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ReadyToRunLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ReadyToRunLanguage.cs -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml.cs -------------------------------------------------------------------------------- /ILSpy.ReadyToRun/ReadyToRunOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.ReadyToRun/ReadyToRunOptions.cs -------------------------------------------------------------------------------- /ILSpy.Tests/Analyzers/AnalyzerScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/Analyzers/AnalyzerScopeTests.cs -------------------------------------------------------------------------------- /ILSpy.Tests/Analyzers/TestCases/MainAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/Analyzers/TestCases/MainAssembly.cs -------------------------------------------------------------------------------- /ILSpy.Tests/BitmapContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/BitmapContainer.resources -------------------------------------------------------------------------------- /ILSpy.Tests/CommandLineArgumentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/CommandLineArgumentsTests.cs -------------------------------------------------------------------------------- /ILSpy.Tests/ILSpy.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/ILSpy.Tests.csproj -------------------------------------------------------------------------------- /ILSpy.Tests/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/Icon.ico -------------------------------------------------------------------------------- /ILSpy.Tests/IconContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/IconContainer.resx -------------------------------------------------------------------------------- /ILSpy.Tests/ResourceReaderWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/ResourceReaderWriterTests.cs -------------------------------------------------------------------------------- /ILSpy.Tests/Test.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Tests/Test.resources -------------------------------------------------------------------------------- /ILSpy.VSExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.VSExtensions.sln -------------------------------------------------------------------------------- /ILSpy.Wpf.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.Wpf.slnf -------------------------------------------------------------------------------- /ILSpy.XPlat.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.XPlat.slnf -------------------------------------------------------------------------------- /ILSpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy.sln -------------------------------------------------------------------------------- /ILSpy/AboutPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AboutPage.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzeCommand.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerEntityTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerEntityTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerRootNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerRootNode.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerSearchTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerSearchTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerTreeView.xaml -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerTreeView.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Analyzers/AnalyzerTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Analyzers/AnalyzerTreeViewModel.cs -------------------------------------------------------------------------------- /ILSpy/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/App.xaml -------------------------------------------------------------------------------- /ILSpy/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/App.xaml.cs -------------------------------------------------------------------------------- /ILSpy/AppEnv/AppEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AppEnv/AppEnvironment.cs -------------------------------------------------------------------------------- /ILSpy/AppEnv/CommandLineArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AppEnv/CommandLineArguments.cs -------------------------------------------------------------------------------- /ILSpy/AppEnv/CommandLineTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AppEnv/CommandLineTools.cs -------------------------------------------------------------------------------- /ILSpy/AppEnv/SingleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AppEnv/SingleInstance.cs -------------------------------------------------------------------------------- /ILSpy/AssemblyTree/AssemblyListPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AssemblyTree/AssemblyListPane.xaml -------------------------------------------------------------------------------- /ILSpy/AssemblyTree/AssemblyListPane.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AssemblyTree/AssemblyListPane.xaml.cs -------------------------------------------------------------------------------- /ILSpy/AssemblyTree/AssemblyTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AssemblyTree/AssemblyTreeModel.cs -------------------------------------------------------------------------------- /ILSpy/AvalonEdit/ITextMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AvalonEdit/ITextMarker.cs -------------------------------------------------------------------------------- /ILSpy/AvalonEdit/TextMarkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/AvalonEdit/TextMarkerService.cs -------------------------------------------------------------------------------- /ILSpy/Commands/BrowseBackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/BrowseBackCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/BrowseForwardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/BrowseForwardCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/CheckForUpdatesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/CheckForUpdatesCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/CommandWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/CommandWrapper.cs -------------------------------------------------------------------------------- /ILSpy/Commands/CompareContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/CompareContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/CreateDiagramContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/CreateDiagramContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/DecompileAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/DecompileAllCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/DecompileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/DecompileCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/DecompileInNewViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/DecompileInNewViewCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/DelegateCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/DisassembleAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/DisassembleAllCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ExportCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ExportCommandAttribute.cs -------------------------------------------------------------------------------- /ILSpy/Commands/GeneratePdbContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/GeneratePdbContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/IProtocolHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/IProtocolHandler.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ManageAssemblyListsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ManageAssemblyListsCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/OpenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/OpenCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/OpenFromGacCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/OpenFromGacCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/Pdb2XmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/Pdb2XmlCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/RefreshCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/RefreshCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SaveCodeContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SaveCodeContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SaveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SaveCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ScopeSearchToAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ScopeSearchToAssembly.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ScopeSearchToNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ScopeSearchToNamespace.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SearchMsdnContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SearchMsdnContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SelectPdbContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SelectPdbContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SetThemeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SetThemeCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ShowCFGContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ShowCFGContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Commands/ShowPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/ShowPane.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SimpleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SimpleCommand.cs -------------------------------------------------------------------------------- /ILSpy/Commands/SortAssemblyListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Commands/SortAssemblyListCommand.cs -------------------------------------------------------------------------------- /ILSpy/ContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ContextMenuEntry.cs -------------------------------------------------------------------------------- /ILSpy/Controls/CollapsiblePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/CollapsiblePanel.cs -------------------------------------------------------------------------------- /ILSpy/Controls/CultureSelectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/CultureSelectionConverter.cs -------------------------------------------------------------------------------- /ILSpy/Controls/CustomDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/CustomDialog.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ExtensionMethods.cs -------------------------------------------------------------------------------- /ILSpy/Controls/GridViewColumnAutoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/GridViewColumnAutoSize.cs -------------------------------------------------------------------------------- /ILSpy/Controls/MainMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/MainMenu.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/MainMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/MainMenu.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Controls/MainToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/MainToolBar.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/MainToolBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/MainToolBar.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Controls/MarkupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/MarkupExtensions.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ResourceObjectTable.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ResourceObjectTable.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/ResourceObjectTable.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ResourceObjectTable.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ResourceStringTable.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ResourceStringTable.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/ResourceStringTable.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ResourceStringTable.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Controls/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/SearchBox.cs -------------------------------------------------------------------------------- /ILSpy/Controls/SearchBoxStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/SearchBoxStyle.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/SortableGridViewColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/SortableGridViewColumn.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/EditTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/EditTextBox.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/ExtensionMethods.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/GeneralAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/GeneralAdorner.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/InsertMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/InsertMarker.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/LinesRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/LinesRenderer.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/SharpGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/SharpGridView.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/SharpTreeNodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/SharpTreeNodeView.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/SharpTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/SharpTreeView.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/SharpTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/SharpTreeView.xaml -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/SharpTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/SharpTreeViewItem.cs -------------------------------------------------------------------------------- /ILSpy/Controls/TreeView/WpfWindowsDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/TreeView/WpfWindowsDataObject.cs -------------------------------------------------------------------------------- /ILSpy/Controls/XamlResourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/XamlResourceExtension.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ZoomButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ZoomButtons.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ZoomScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ZoomScrollViewer.cs -------------------------------------------------------------------------------- /ILSpy/Controls/ZoomScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Controls/ZoomScrollViewer.xaml -------------------------------------------------------------------------------- /ILSpy/DecompilationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/DecompilationOptions.cs -------------------------------------------------------------------------------- /ILSpy/Docking/CloseAllDocumentsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Docking/CloseAllDocumentsCommand.cs -------------------------------------------------------------------------------- /ILSpy/Docking/DockLayoutSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Docking/DockLayoutSettings.cs -------------------------------------------------------------------------------- /ILSpy/Docking/DockWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Docking/DockWorkspace.cs -------------------------------------------------------------------------------- /ILSpy/Docking/PaneStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Docking/PaneStyleSelector.cs -------------------------------------------------------------------------------- /ILSpy/Docking/TabPageGuardConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Docking/TabPageGuardConverter.cs -------------------------------------------------------------------------------- /ILSpy/EntityReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/EntityReference.cs -------------------------------------------------------------------------------- /ILSpy/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ExtensionMethods.cs -------------------------------------------------------------------------------- /ILSpy/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/GlobalUsings.cs -------------------------------------------------------------------------------- /ILSpy/GuessFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/GuessFileType.cs -------------------------------------------------------------------------------- /ILSpy/ILSpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ILSpy.csproj -------------------------------------------------------------------------------- /ILSpy/ILSpySettingsFilePathProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ILSpySettingsFilePathProvider.cs -------------------------------------------------------------------------------- /ILSpy/ILSpyTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ILSpyTraceListener.cs -------------------------------------------------------------------------------- /ILSpy/ISmartTextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ISmartTextOutput.cs -------------------------------------------------------------------------------- /ILSpy/Images/AccessOverlayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AccessOverlayIcon.cs -------------------------------------------------------------------------------- /ILSpy/Images/Assembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Assembly.svg -------------------------------------------------------------------------------- /ILSpy/Images/Assembly.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Assembly.xaml -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyList.svg -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyList.xaml -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyListGAC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyListGAC.svg -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyListGAC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyListGAC.xaml -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyWarning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyWarning.svg -------------------------------------------------------------------------------- /ILSpy/Images/AssemblyWarning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/AssemblyWarning.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Back.svg -------------------------------------------------------------------------------- /ILSpy/Images/Back.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Back.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Class.svg -------------------------------------------------------------------------------- /ILSpy/Images/Class.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Class.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Close.svg -------------------------------------------------------------------------------- /ILSpy/Images/Close.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Close.xaml -------------------------------------------------------------------------------- /ILSpy/Images/CollapseAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/CollapseAll.svg -------------------------------------------------------------------------------- /ILSpy/Images/CollapseAll.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/CollapseAll.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Constructor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Constructor.svg -------------------------------------------------------------------------------- /ILSpy/Images/Constructor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Constructor.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Copy.svg -------------------------------------------------------------------------------- /ILSpy/Images/Copy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Copy.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Delegate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Delegate.svg -------------------------------------------------------------------------------- /ILSpy/Images/Delegate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Delegate.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Delete.svg -------------------------------------------------------------------------------- /ILSpy/Images/Delete.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Delete.xaml -------------------------------------------------------------------------------- /ILSpy/Images/DictionaryContain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/DictionaryContain.svg -------------------------------------------------------------------------------- /ILSpy/Images/DictionaryContain.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/DictionaryContain.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Enum.svg -------------------------------------------------------------------------------- /ILSpy/Images/Enum.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Enum.xaml -------------------------------------------------------------------------------- /ILSpy/Images/EnumValue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/EnumValue.svg -------------------------------------------------------------------------------- /ILSpy/Images/EnumValue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/EnumValue.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Event.svg -------------------------------------------------------------------------------- /ILSpy/Images/Event.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Event.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ExpandAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExpandAll.svg -------------------------------------------------------------------------------- /ILSpy/Images/ExpandAll.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExpandAll.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ExportOverlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExportOverlay.svg -------------------------------------------------------------------------------- /ILSpy/Images/ExportOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExportOverlay.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ExtensionMethod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExtensionMethod.svg -------------------------------------------------------------------------------- /ILSpy/Images/ExtensionMethod.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ExtensionMethod.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Field.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Field.svg -------------------------------------------------------------------------------- /ILSpy/Images/Field.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Field.xaml -------------------------------------------------------------------------------- /ILSpy/Images/FieldReadOnly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/FieldReadOnly.svg -------------------------------------------------------------------------------- /ILSpy/Images/FieldReadOnly.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/FieldReadOnly.xaml -------------------------------------------------------------------------------- /ILSpy/Images/FindAssembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/FindAssembly.svg -------------------------------------------------------------------------------- /ILSpy/Images/FindAssembly.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/FindAssembly.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Folder.Closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Folder.Closed.svg -------------------------------------------------------------------------------- /ILSpy/Images/Folder.Closed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Folder.Closed.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Folder.Open.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Folder.Open.xaml -------------------------------------------------------------------------------- /ILSpy/Images/FolderOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/FolderOpen.svg -------------------------------------------------------------------------------- /ILSpy/Images/Forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Forward.svg -------------------------------------------------------------------------------- /ILSpy/Images/Forward.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Forward.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Header.svg -------------------------------------------------------------------------------- /ILSpy/Images/Header.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Header.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Heap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Heap.svg -------------------------------------------------------------------------------- /ILSpy/Images/Heap.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Heap.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ILSpy-Large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ILSpy-Large.ico -------------------------------------------------------------------------------- /ILSpy/Images/ILSpy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ILSpy.ico -------------------------------------------------------------------------------- /ILSpy/Images/ILSpy.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ILSpy.pdn -------------------------------------------------------------------------------- /ILSpy/Images/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Images.cs -------------------------------------------------------------------------------- /ILSpy/Images/Indexer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Indexer.svg -------------------------------------------------------------------------------- /ILSpy/Images/Indexer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Indexer.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Interface.svg -------------------------------------------------------------------------------- /ILSpy/Images/Interface.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Interface.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Library.svg -------------------------------------------------------------------------------- /ILSpy/Images/Library.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Library.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ListFolder.Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ListFolder.Open.svg -------------------------------------------------------------------------------- /ILSpy/Images/ListFolder.Open.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ListFolder.Open.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ListFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ListFolder.svg -------------------------------------------------------------------------------- /ILSpy/Images/ListFolder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ListFolder.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Literal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Literal.svg -------------------------------------------------------------------------------- /ILSpy/Images/Literal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Literal.xaml -------------------------------------------------------------------------------- /ILSpy/Images/MemberIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MemberIcon.cs -------------------------------------------------------------------------------- /ILSpy/Images/Metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Metadata.svg -------------------------------------------------------------------------------- /ILSpy/Images/Metadata.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Metadata.xaml -------------------------------------------------------------------------------- /ILSpy/Images/MetadataFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataFile.svg -------------------------------------------------------------------------------- /ILSpy/Images/MetadataFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataFile.xaml -------------------------------------------------------------------------------- /ILSpy/Images/MetadataTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataTable.svg -------------------------------------------------------------------------------- /ILSpy/Images/MetadataTable.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataTable.xaml -------------------------------------------------------------------------------- /ILSpy/Images/MetadataTableGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataTableGroup.svg -------------------------------------------------------------------------------- /ILSpy/Images/MetadataTableGroup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/MetadataTableGroup.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Method.svg -------------------------------------------------------------------------------- /ILSpy/Images/Method.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Method.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Namespace.svg -------------------------------------------------------------------------------- /ILSpy/Images/Namespace.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Namespace.xaml -------------------------------------------------------------------------------- /ILSpy/Images/NuGet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/NuGet.png -------------------------------------------------------------------------------- /ILSpy/Images/OK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OK.svg -------------------------------------------------------------------------------- /ILSpy/Images/OK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OK.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Open.svg -------------------------------------------------------------------------------- /ILSpy/Images/Open.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Open.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Operator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Operator.svg -------------------------------------------------------------------------------- /ILSpy/Images/Operator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Operator.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayCompilerControlled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayCompilerControlled.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayCompilerControlled.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayCompilerControlled.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayInternal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayInternal.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayInternal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayInternal.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayPrivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayPrivate.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayPrivate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayPrivate.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayPrivateProtected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayPrivateProtected.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayPrivateProtected.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayPrivateProtected.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayProtected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayProtected.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayProtected.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayProtected.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayProtectedInternal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayProtectedInternal.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayProtectedInternal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayProtectedInternal.xaml -------------------------------------------------------------------------------- /ILSpy/Images/OverlayStatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayStatic.svg -------------------------------------------------------------------------------- /ILSpy/Images/OverlayStatic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/OverlayStatic.xaml -------------------------------------------------------------------------------- /ILSpy/Images/PInvokeMethod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/PInvokeMethod.svg -------------------------------------------------------------------------------- /ILSpy/Images/PInvokeMethod.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/PInvokeMethod.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ProgramDebugDatabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ProgramDebugDatabase.svg -------------------------------------------------------------------------------- /ILSpy/Images/ProgramDebugDatabase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ProgramDebugDatabase.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Property.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Property.svg -------------------------------------------------------------------------------- /ILSpy/Images/Property.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Property.xaml -------------------------------------------------------------------------------- /ILSpy/Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/README.md -------------------------------------------------------------------------------- /ILSpy/Images/ReferenceFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ReferenceFolder.svg -------------------------------------------------------------------------------- /ILSpy/Images/ReferenceFolder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ReferenceFolder.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ReferenceOverlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ReferenceOverlay.svg -------------------------------------------------------------------------------- /ILSpy/Images/ReferenceOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ReferenceOverlay.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Refresh.svg -------------------------------------------------------------------------------- /ILSpy/Images/Refresh.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Refresh.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Resource.svg -------------------------------------------------------------------------------- /ILSpy/Images/Resource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Resource.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceImage.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceImage.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceResourcesFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceResourcesFile.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceResourcesFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceResourcesFile.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXml.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXml.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXml.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXsd.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXsd.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXsd.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXsl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXsl.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXsl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXsl.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXslt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXslt.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResourceXslt.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResourceXslt.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ResultToJSON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResultToJSON.svg -------------------------------------------------------------------------------- /ILSpy/Images/ResultToJSON.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ResultToJSON.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Save.svg -------------------------------------------------------------------------------- /ILSpy/Images/Save.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Save.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Search.svg -------------------------------------------------------------------------------- /ILSpy/Images/Search.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Search.xaml -------------------------------------------------------------------------------- /ILSpy/Images/SearchMsdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SearchMsdn.svg -------------------------------------------------------------------------------- /ILSpy/Images/SearchMsdn.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SearchMsdn.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ShowAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowAll.svg -------------------------------------------------------------------------------- /ILSpy/Images/ShowAll.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowAll.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ShowPrivateInternal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowPrivateInternal.svg -------------------------------------------------------------------------------- /ILSpy/Images/ShowPrivateInternal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowPrivateInternal.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ShowPublicOnly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowPublicOnly.svg -------------------------------------------------------------------------------- /ILSpy/Images/ShowPublicOnly.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ShowPublicOnly.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Sort.svg -------------------------------------------------------------------------------- /ILSpy/Images/Sort.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Sort.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Struct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Struct.svg -------------------------------------------------------------------------------- /ILSpy/Images/Struct.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Struct.xaml -------------------------------------------------------------------------------- /ILSpy/Images/SubTypes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SubTypes.svg -------------------------------------------------------------------------------- /ILSpy/Images/SubTypes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SubTypes.xaml -------------------------------------------------------------------------------- /ILSpy/Images/SuperTypes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SuperTypes.svg -------------------------------------------------------------------------------- /ILSpy/Images/SuperTypes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SuperTypes.xaml -------------------------------------------------------------------------------- /ILSpy/Images/SwitchSourceOrTarget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SwitchSourceOrTarget.svg -------------------------------------------------------------------------------- /ILSpy/Images/SwitchSourceOrTarget.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/SwitchSourceOrTarget.xaml -------------------------------------------------------------------------------- /ILSpy/Images/TypeIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/TypeIcon.cs -------------------------------------------------------------------------------- /ILSpy/Images/ViewCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ViewCode.svg -------------------------------------------------------------------------------- /ILSpy/Images/ViewCode.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ViewCode.xaml -------------------------------------------------------------------------------- /ILSpy/Images/VirtualMethod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/VirtualMethod.svg -------------------------------------------------------------------------------- /ILSpy/Images/VirtualMethod.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/VirtualMethod.xaml -------------------------------------------------------------------------------- /ILSpy/Images/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Warning.svg -------------------------------------------------------------------------------- /ILSpy/Images/Warning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/Warning.xaml -------------------------------------------------------------------------------- /ILSpy/Images/WebAssembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/WebAssembly.svg -------------------------------------------------------------------------------- /ILSpy/Images/WebAssembly.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/WebAssembly.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ZoomIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ZoomIn.svg -------------------------------------------------------------------------------- /ILSpy/Images/ZoomIn.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ZoomIn.xaml -------------------------------------------------------------------------------- /ILSpy/Images/ZoomOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ZoomOut.svg -------------------------------------------------------------------------------- /ILSpy/Images/ZoomOut.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Images/ZoomOut.xaml -------------------------------------------------------------------------------- /ILSpy/LanguageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/LanguageSettings.cs -------------------------------------------------------------------------------- /ILSpy/Languages/CSharpBracketSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/CSharpBracketSearcher.cs -------------------------------------------------------------------------------- /ILSpy/Languages/CSharpILMixedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/CSharpILMixedLanguage.cs -------------------------------------------------------------------------------- /ILSpy/Languages/CSharpLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/CSharpLanguage.cs -------------------------------------------------------------------------------- /ILSpy/Languages/ILAstLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/ILAstLanguage.cs -------------------------------------------------------------------------------- /ILSpy/Languages/ILLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/ILLanguage.cs -------------------------------------------------------------------------------- /ILSpy/Languages/IResourceFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/IResourceFileHandler.cs -------------------------------------------------------------------------------- /ILSpy/Languages/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/Language.cs -------------------------------------------------------------------------------- /ILSpy/Languages/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Languages/LanguageService.cs -------------------------------------------------------------------------------- /ILSpy/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/MainWindow.xaml -------------------------------------------------------------------------------- /ILSpy/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ILSpy/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/MainWindowViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CoffHeaderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CoffHeaderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/EventTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/EventTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/FieldTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/FieldTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/FileTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/FileTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/MethodTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/MethodTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/ModuleTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/ModuleTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/ParamTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/ParamTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/CorTables/PtrTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/CorTables/PtrTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/DataDirectoriesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/DataDirectoriesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/DebugDirectoryTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/DebugDirectoryTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/DebugMetadataTablesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/DebugMetadataTablesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/DosHeaderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/DosHeaderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/FlagsFilterControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/FlagsFilterControl.xaml -------------------------------------------------------------------------------- /ILSpy/Metadata/FlagsFilterControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/FlagsFilterControl.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/FlagsTooltip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/FlagsTooltip.xaml -------------------------------------------------------------------------------- /ILSpy/Metadata/FlagsTooltip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/FlagsTooltip.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/GoToTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/GoToTokenCommand.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/Heaps/BlobHeapTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/Heaps/BlobHeapTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/Heaps/GuidHeapTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/Heaps/GuidHeapTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/Heaps/StringHeapTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/Heaps/StringHeapTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/Heaps/UserStringHeapTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/Heaps/UserStringHeapTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/Helpers.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/HexFilterControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/HexFilterControl.xaml -------------------------------------------------------------------------------- /ILSpy/Metadata/HexFilterControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/HexFilterControl.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetaDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetaDataGrid.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataHeapTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataHeapTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataProtocolHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataProtocolHandler.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataTableTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataTableTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataTableViews.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataTableViews.xaml -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataTableViews.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataTableViews.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataTablesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataTablesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/MetadataTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/MetadataTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Metadata/OptionalHeaderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Metadata/OptionalHeaderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/NativeMethods.cs -------------------------------------------------------------------------------- /ILSpy/NavigationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/NavigationHistory.cs -------------------------------------------------------------------------------- /ILSpy/NavigationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/NavigationState.cs -------------------------------------------------------------------------------- /ILSpy/Options/DecompilerSettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DecompilerSettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy/Options/DecompilerSettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DecompilerSettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Options/DecompilerSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DecompilerSettingsViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Options/DisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DisplaySettings.cs -------------------------------------------------------------------------------- /ILSpy/Options/DisplaySettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DisplaySettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy/Options/DisplaySettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DisplaySettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Options/DisplaySettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/DisplaySettingsViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Options/MiscSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/MiscSettings.cs -------------------------------------------------------------------------------- /ILSpy/Options/MiscSettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/MiscSettingsPanel.xaml -------------------------------------------------------------------------------- /ILSpy/Options/MiscSettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/MiscSettingsPanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Options/MiscSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/MiscSettingsViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Options/OptionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/OptionsDialog.xaml -------------------------------------------------------------------------------- /ILSpy/Options/OptionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/OptionsDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Options/OptionsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Options/OptionsDialogViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ILSpy/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/Resources.resx -------------------------------------------------------------------------------- /ILSpy/Properties/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /ILSpy/Properties/WPFAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/WPFAssemblyInfo.cs -------------------------------------------------------------------------------- /ILSpy/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Properties/launchSettings.json -------------------------------------------------------------------------------- /ILSpy/Search/SearchPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Search/SearchPane.xaml -------------------------------------------------------------------------------- /ILSpy/Search/SearchPane.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Search/SearchPane.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Search/SearchPaneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Search/SearchPaneModel.cs -------------------------------------------------------------------------------- /ILSpy/Search/SearchResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Search/SearchResultFactory.cs -------------------------------------------------------------------------------- /ILSpy/SessionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/SessionSettings.cs -------------------------------------------------------------------------------- /ILSpy/SolutionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/SolutionWriter.cs -------------------------------------------------------------------------------- /ILSpy/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TaskHelper.cs -------------------------------------------------------------------------------- /ILSpy/TextView/Asm-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/Asm-Mode.xshd -------------------------------------------------------------------------------- /ILSpy/TextView/AvalonEditTextOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/AvalonEditTextOutput.cs -------------------------------------------------------------------------------- /ILSpy/TextView/BracketHighlightRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/BracketHighlightRenderer.cs -------------------------------------------------------------------------------- /ILSpy/TextView/CSharp-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/CSharp-Mode.xshd -------------------------------------------------------------------------------- /ILSpy/TextView/CaretHighlightAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/CaretHighlightAdorner.cs -------------------------------------------------------------------------------- /ILSpy/TextView/DecompilerTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/DecompilerTextEditor.cs -------------------------------------------------------------------------------- /ILSpy/TextView/DecompilerTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/DecompilerTextView.cs -------------------------------------------------------------------------------- /ILSpy/TextView/DecompilerTextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/DecompilerTextView.xaml -------------------------------------------------------------------------------- /ILSpy/TextView/DocumentationUIBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/DocumentationUIBuilder.cs -------------------------------------------------------------------------------- /ILSpy/TextView/EditorCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/EditorCommands.cs -------------------------------------------------------------------------------- /ILSpy/TextView/FoldingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/FoldingCommands.cs -------------------------------------------------------------------------------- /ILSpy/TextView/ILAsm-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/ILAsm-Mode.xshd -------------------------------------------------------------------------------- /ILSpy/TextView/OutputLengthExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/OutputLengthExceededException.cs -------------------------------------------------------------------------------- /ILSpy/TextView/ReferenceElementGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/ReferenceElementGenerator.cs -------------------------------------------------------------------------------- /ILSpy/TextView/UIElementGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/UIElementGenerator.cs -------------------------------------------------------------------------------- /ILSpy/TextView/XML-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TextView/XML-Mode.xshd -------------------------------------------------------------------------------- /ILSpy/Themes/Base.Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Base.Dark.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Base.Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Base.Light.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/ResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/ResourceKeys.cs -------------------------------------------------------------------------------- /ILSpy/Themes/SyntaxColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/SyntaxColor.cs -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.Dark.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.Light.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.RSharpDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.RSharpDark.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.RSharpLight.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.RSharpLight.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.VSCodeDarkPlus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.VSCodeDarkPlus.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/Theme.VSCodeLightPlus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/Theme.VSCodeLightPlus.xaml -------------------------------------------------------------------------------- /ILSpy/Themes/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/ThemeManager.cs -------------------------------------------------------------------------------- /ILSpy/Themes/WindowStyleManagerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/WindowStyleManagerBehavior.cs -------------------------------------------------------------------------------- /ILSpy/Themes/generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Themes/generic.xaml -------------------------------------------------------------------------------- /ILSpy/TreeNodes/AssemblyListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/AssemblyListTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/AssemblyReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/AssemblyReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/AssemblyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/AssemblyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/BaseTypesEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/BaseTypesEntryNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/BaseTypesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/BaseTypesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/DerivedTypesEntryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/DerivedTypesEntryNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/DerivedTypesTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/DerivedTypesTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/EventTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/EventTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ExportedTypeTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ExportedTypeTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/FieldTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/FieldTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/FilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/FilterResult.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ILSpyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ILSpyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/IMemberTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/IMemberTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/MemberReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/MemberReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/MethodTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/MethodTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ModuleReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ModuleReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/NamespaceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/NamespaceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/NaturalStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/NaturalStringComparer.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/PackageFolderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/PackageFolderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/PropertyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/PropertyTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ReferenceFolderTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ReferenceFolderTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ResourceListTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ResourceListTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/ThreadingSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/ThreadingSupport.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/TypeReferenceTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/TypeReferenceTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/TreeNodes/TypeTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/TreeNodes/TypeTreeNode.cs -------------------------------------------------------------------------------- /ILSpy/Updates/AppUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Updates/AppUpdateService.cs -------------------------------------------------------------------------------- /ILSpy/Updates/AvailableVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Updates/AvailableVersionInfo.cs -------------------------------------------------------------------------------- /ILSpy/Updates/UpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Updates/UpdateService.cs -------------------------------------------------------------------------------- /ILSpy/Updates/UpdateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Updates/UpdateSettings.cs -------------------------------------------------------------------------------- /ILSpy/Util/GlobalUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/GlobalUtils.cs -------------------------------------------------------------------------------- /ILSpy/Util/GraphVizGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/GraphVizGraph.cs -------------------------------------------------------------------------------- /ILSpy/Util/MessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/MessageBus.cs -------------------------------------------------------------------------------- /ILSpy/Util/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/ResourceHelper.cs -------------------------------------------------------------------------------- /ILSpy/Util/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/SettingsService.cs -------------------------------------------------------------------------------- /ILSpy/Util/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Util/ShellHelper.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/CompareViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/CompareViewModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/DebugStepsPaneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/DebugStepsPaneModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/LegacyToolPaneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/LegacyToolPaneModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/PaneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/PaneModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/TabPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/TabPageModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/ToolPaneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/ToolPaneModel.cs -------------------------------------------------------------------------------- /ILSpy/ViewModels/UpdatePanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/ViewModels/UpdatePanelViewModel.cs -------------------------------------------------------------------------------- /ILSpy/Views/CompareView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/CompareView.xaml -------------------------------------------------------------------------------- /ILSpy/Views/CompareView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/CompareView.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Views/CreateListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/CreateListDialog.xaml -------------------------------------------------------------------------------- /ILSpy/Views/CreateListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/CreateListDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Views/DebugSteps.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/DebugSteps.xaml -------------------------------------------------------------------------------- /ILSpy/Views/DebugSteps.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/DebugSteps.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Views/ManageAssemblyLIstsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/ManageAssemblyLIstsDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Views/ManageAssemblyListsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/ManageAssemblyListsDialog.xaml -------------------------------------------------------------------------------- /ILSpy/Views/OpenFromGacDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/OpenFromGacDialog.xaml -------------------------------------------------------------------------------- /ILSpy/Views/OpenFromGacDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/OpenFromGacDialog.xaml.cs -------------------------------------------------------------------------------- /ILSpy/Views/UpdatePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/UpdatePanel.xaml -------------------------------------------------------------------------------- /ILSpy/Views/UpdatePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/Views/UpdatePanel.xaml.cs -------------------------------------------------------------------------------- /ILSpy/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/ILSpy/app.manifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TestPlugin/AboutPageAddition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/AboutPageAddition.cs -------------------------------------------------------------------------------- /TestPlugin/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/Clear.png -------------------------------------------------------------------------------- /TestPlugin/ContextMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/ContextMenuCommand.cs -------------------------------------------------------------------------------- /TestPlugin/CustomLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/CustomLanguage.cs -------------------------------------------------------------------------------- /TestPlugin/CustomOptionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/CustomOptionPage.xaml -------------------------------------------------------------------------------- /TestPlugin/CustomOptionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/CustomOptionPage.xaml.cs -------------------------------------------------------------------------------- /TestPlugin/MainMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/MainMenuCommand.cs -------------------------------------------------------------------------------- /TestPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPlugin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/Properties/launchSettings.json -------------------------------------------------------------------------------- /TestPlugin/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/Readme.txt -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/TestPlugin/TestPlugin.csproj -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/clean.bat -------------------------------------------------------------------------------- /debugbuild.bat: -------------------------------------------------------------------------------- 1 | dotnet build ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU" %* || (pause && exit /b 1) 2 | -------------------------------------------------------------------------------- /decompiler-nuget-demos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/decompiler-nuget-demos.ipynb -------------------------------------------------------------------------------- /doc/Command Line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/Command Line.txt -------------------------------------------------------------------------------- /doc/ILAst Pattern Matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/ILAst Pattern Matching.md -------------------------------------------------------------------------------- /doc/ILAst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/ILAst.txt -------------------------------------------------------------------------------- /doc/ILSpyAboutPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/ILSpyAboutPage.txt -------------------------------------------------------------------------------- /doc/ILSpyAboutPage_zh_Hans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/ILSpyAboutPage_zh_Hans.txt -------------------------------------------------------------------------------- /doc/IntPtr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/IntPtr.txt -------------------------------------------------------------------------------- /doc/Pattern Matching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/Pattern Matching.html -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/Resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/Resources.txt -------------------------------------------------------------------------------- /doc/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/copyright.txt -------------------------------------------------------------------------------- /doc/third-party-notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/doc/third-party-notices.txt -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/global.json -------------------------------------------------------------------------------- /publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/publish.ps1 -------------------------------------------------------------------------------- /publishlocaldev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icsharpcode/ILSpy/HEAD/publishlocaldev.ps1 -------------------------------------------------------------------------------- /releasebuild.bat: -------------------------------------------------------------------------------- 1 | dotnet build ILSpy.sln /p:Configuration=Release "/p:Platform=Any CPU" %* || (pause && exit /b 1) 2 | --------------------------------------------------------------------------------