├── .github └── workflows │ └── ci.yml ├── .gitignore ├── COPYING ├── JustDecompileEngine-Original-License ├── License ├── License.md └── NOTICE.txt ├── README.md ├── THIRD-PARTY-NOTICES.md └── src ├── .idea └── .idea.JustDecompileEngine │ └── .idea │ ├── .gitignore │ ├── .name │ ├── indexLayout.xml │ └── vcs.xml ├── Cecil.Decompiler └── JustDecompiler.csproj ├── CommonVersionAssemblyInfo.cs ├── ConsoleRunner ├── App.cs ├── ConsoleRunner.csproj ├── Properties │ └── AssemblyInfo.cs └── app.config ├── ConsoleRunnerDotNet6 ├── ConsoleRunnerDotNet6.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── Decompiler.Tests ├── Decompiler.Tests.csproj ├── Helpers │ ├── ContentAssertException.cs │ └── TestHelper.cs └── Integration │ ├── Expected │ ├── AsyncEnumTest │ │ ├── AsyncEnumTest.csproj │ │ ├── AsyncEnumTest.sln │ │ ├── AsyncEnumTest │ │ │ └── Program.cs │ │ ├── AsyncEnumTestReferences │ │ │ ├── System.Console.dll │ │ │ └── System.Runtime.dll │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── AsyncTestCollectionNet45VS2013Debug │ │ ├── AsyncTestCollectionNet45VS2013.csproj │ │ ├── AsyncTestCollectionNet45VS2013.sln │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── AsyncTestCollectionNet45VS2013Release │ │ ├── AsyncTestCollectionNet45VS2013.csproj │ │ ├── AsyncTestCollectionNet45VS2013.sln │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── AsyncTestCollectionNet6VS2022Debug │ │ ├── AsyncTestCollectionNet6VS2022.csproj │ │ ├── AsyncTestCollectionNet6VS2022.sln │ │ ├── AsyncTestCollectionNet6VS2022 │ │ │ └── Program.cs │ │ ├── AsyncTestCollectionNet6VS2022References │ │ │ ├── System.Console.dll │ │ │ ├── System.Linq.dll │ │ │ └── System.Runtime.dll │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── AsyncTestCollectionNet6VS2022Release │ │ ├── AsyncTestCollectionNet6VS2022.csproj │ │ ├── AsyncTestCollectionNet6VS2022.sln │ │ ├── AsyncTestCollectionNet6VS2022 │ │ │ └── Program.cs │ │ ├── AsyncTestCollectionNet6VS2022References │ │ │ ├── System.Console.dll │ │ │ ├── System.Linq.dll │ │ │ └── System.Runtime.dll │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── JustDecompiler.NetStandard.Pdb │ │ ├── JustDecompiler.NetStandard.csproj │ │ ├── JustDecompiler.NetStandard.sln │ │ ├── Mono.Cecil │ │ │ ├── Extensions │ │ │ │ ├── CustomAttributeExtensions.cs │ │ │ │ ├── DecompilationLocker.cs │ │ │ │ ├── EventDefinitionExtensions.cs │ │ │ │ ├── FieldReferenceExtensions.cs │ │ │ │ ├── ICustomAttributeProviderExtensions.cs │ │ │ │ ├── IGenericInstanceExtensions.cs │ │ │ │ ├── IGenericParameterProviderExtensions.cs │ │ │ │ ├── ImplementedMember.cs │ │ │ │ ├── InstructionExtensions.cs │ │ │ │ ├── MemberDefinitionExtensions.cs │ │ │ │ ├── MemberNamingExtensions.cs │ │ │ │ ├── MethodDefinitionExtensions.cs │ │ │ │ ├── MethodReferenceExtentions.cs │ │ │ │ ├── ModuleDefinitionExtensions.cs │ │ │ │ ├── ParameterDefinitionExtensions.cs │ │ │ │ ├── ParameterReferenceExtensions.cs │ │ │ │ ├── PropertyDefinitionExtensions.cs │ │ │ │ ├── SecurityAttributeExtensions.cs │ │ │ │ ├── SecurityDeclarationExtension.cs │ │ │ │ ├── TypeDefinitionExtensions.cs │ │ │ │ └── TypeReferenceExtensions.cs │ │ │ └── GenericHelper.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Telerik.JustDecompiler │ │ │ ├── Ast │ │ │ ├── BaseCodeNode.cs │ │ │ ├── BaseCodeTransformer.cs │ │ │ ├── BaseCodeVisitor.cs │ │ │ ├── BinaryOperator.cs │ │ │ ├── CodeNodeType.cs │ │ │ ├── ExpressionExtensions.cs │ │ │ ├── Expressions │ │ │ │ ├── AnonymousObjectCreationExpression.cs │ │ │ │ ├── AnonymousPropertyInitializerExpression.cs │ │ │ │ ├── ArgumentReferenceExpression.cs │ │ │ │ ├── ArrayAssignmentFieldReferenceExpression.cs │ │ │ │ ├── ArrayCreationExpression.cs │ │ │ │ ├── ArrayIndexerExpression.cs │ │ │ │ ├── ArrayLengthExpression.cs │ │ │ │ ├── ArrayVariableDeclarationExpression.cs │ │ │ │ ├── ArrayVariableReferenceExpression.cs │ │ │ │ ├── AutoPropertyConstructorInitializerExpression.cs │ │ │ │ ├── AwaitExpression.cs │ │ │ │ ├── BaseCtorExpression.cs │ │ │ │ ├── BaseReferenceExpression.cs │ │ │ │ ├── BinaryExpression.cs │ │ │ │ ├── BlockExpression.cs │ │ │ │ ├── BoxExpression.cs │ │ │ │ ├── CanCastExpression.cs │ │ │ │ ├── CastExpressionBase.cs │ │ │ │ ├── CheckedExpression.cs │ │ │ │ ├── ConditionExpression.cs │ │ │ │ ├── DefaultObjectExpression.cs │ │ │ │ ├── DelegateCreationExpression.cs │ │ │ │ ├── DelegateInvokeExpression.cs │ │ │ │ ├── DynamicConstructorInvocationExpression.cs │ │ │ │ ├── DynamicIndexerExpression.cs │ │ │ │ ├── DynamicMemberReferenceExpression.cs │ │ │ │ ├── EnumExpression.cs │ │ │ │ ├── EventReferenceExpression.cs │ │ │ │ ├── ExplicitCastExpression.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionCollection.cs │ │ │ │ ├── FieldInitializerExpression.cs │ │ │ │ ├── FieldReferenceExpression.cs │ │ │ │ ├── FromClause.cs │ │ │ │ ├── GroupClause.cs │ │ │ │ ├── ImplicitCastExpression.cs │ │ │ │ ├── InitializerExpression.cs │ │ │ │ ├── InitializerType.cs │ │ │ │ ├── IntoClause.cs │ │ │ │ ├── JoinClause.cs │ │ │ │ ├── LambdaExpression.cs │ │ │ │ ├── LambdaParameterExpression.cs │ │ │ │ ├── LetClause.cs │ │ │ │ ├── LinqQueryExpression.cs │ │ │ │ ├── LiteralExpression.cs │ │ │ │ ├── MakeRefExpression.cs │ │ │ │ ├── MemberHandleExpression.cs │ │ │ │ ├── MemberReferenceExpresion.cs │ │ │ │ ├── MethodInvocationExpression.cs │ │ │ │ ├── MethodReferenceExpression.cs │ │ │ │ ├── ObjectCreationExpression.cs │ │ │ │ ├── OrderByClause.cs │ │ │ │ ├── ParenthesesExpression.cs │ │ │ │ ├── PropertyInitializerExpression.cs │ │ │ │ ├── PropertyReferenceExpression.cs │ │ │ │ ├── QueryClause.cs │ │ │ │ ├── RaiseEventExpression.cs │ │ │ │ ├── RefReturnExpression.cs │ │ │ │ ├── RefVariableDeclarationExpression.cs │ │ │ │ ├── ReturnExpression.cs │ │ │ │ ├── SafeCastExpression.cs │ │ │ │ ├── SelectClause.cs │ │ │ │ ├── ShortFormReturnExpression.cs │ │ │ │ ├── SizeOfExpression.cs │ │ │ │ ├── StackAllocExpression.cs │ │ │ │ ├── ThisCtorExpression.cs │ │ │ │ ├── ThisReferenceExpression.cs │ │ │ │ ├── ThrowExpression.cs │ │ │ │ ├── TypeOfExpression.cs │ │ │ │ ├── TypeReferenceExpression.cs │ │ │ │ ├── UnaryExpression.cs │ │ │ │ ├── VariableDeclarationExpression.cs │ │ │ │ ├── VariableReferenceExpression.cs │ │ │ │ ├── WhereClause.cs │ │ │ │ ├── YieldBreakExpression.cs │ │ │ │ └── YieldReturnExpression.cs │ │ │ ├── ICodeNode.cs │ │ │ ├── ICodeTransformer.cs │ │ │ ├── ICodeVisitor.cs │ │ │ ├── IIndexerExpression.cs │ │ │ ├── IPdbCodeNode.cs │ │ │ ├── OrderDirection.cs │ │ │ ├── StatementExtensions.cs │ │ │ ├── Statements │ │ │ │ ├── BasePdbStatement.cs │ │ │ │ ├── BlockStatement.cs │ │ │ │ ├── BreakStatement.cs │ │ │ │ ├── BreakSwitchCaseStatement.cs │ │ │ │ ├── CaseGotoStatement.cs │ │ │ │ ├── CatchClause.cs │ │ │ │ ├── CatchClauseCollection.cs │ │ │ │ ├── CompilerOptimizedSwitchByStringStatement.cs │ │ │ │ ├── ConditionCase.cs │ │ │ │ ├── ConditionStatement.cs │ │ │ │ ├── ContinueStatement.cs │ │ │ │ ├── DefaultCase.cs │ │ │ │ ├── DoWhileStatement.cs │ │ │ │ ├── EmptyStatement.cs │ │ │ │ ├── ExceptionStatement.cs │ │ │ │ ├── ExpressionStatement.cs │ │ │ │ ├── FinallyClause.cs │ │ │ │ ├── FixedStatement.cs │ │ │ │ ├── ForEachStatement.cs │ │ │ │ ├── ForStatement.cs │ │ │ │ ├── GotoStatement.cs │ │ │ │ ├── IfElseIfStatement.cs │ │ │ │ ├── IfStatement.cs │ │ │ │ ├── LockStatement.cs │ │ │ │ ├── Statement.cs │ │ │ │ ├── StatementCollection.cs │ │ │ │ ├── SwitchCase.cs │ │ │ │ ├── SwitchCaseCollection.cs │ │ │ │ ├── SwitchStatement.cs │ │ │ │ ├── TryStatement.cs │ │ │ │ ├── UnsafeBlockStatement.cs │ │ │ │ ├── UsingStatement.cs │ │ │ │ └── WhileStatement.cs │ │ │ └── UnaryOperator.cs │ │ │ ├── Cil │ │ │ ├── BaseInstructionVisitor.cs │ │ │ ├── BlockRange.cs │ │ │ ├── ControlFlowGraph.cs │ │ │ ├── ControlFlowGraphAnalyser.cs │ │ │ ├── ControlFlowGraphBuilder.cs │ │ │ ├── Formatter.cs │ │ │ ├── IInstructionVisitor.cs │ │ │ ├── ISingleEntrySubGraph.cs │ │ │ ├── InstructionBlock.cs │ │ │ ├── InstructionDispatcher.cs │ │ │ └── SwitchData.cs │ │ │ ├── Common │ │ │ ├── DynamicHelper.cs │ │ │ ├── EnumValueToFieldCombinationMatcher.cs │ │ │ ├── ExpressionType.cs │ │ │ ├── Extensions.cs │ │ │ ├── LambdaExpressionsHelper.cs │ │ │ ├── NamespaceHierarchy │ │ │ │ ├── NamespaceHierarchyNode.cs │ │ │ │ ├── NamespaceHierarchyTree.cs │ │ │ │ └── NamespaceHierarchyTreeBuilder.cs │ │ │ ├── PairList_K, V_.cs │ │ │ ├── SwitchHelpers.cs │ │ │ ├── UnionFinder_T_.cs │ │ │ └── VariableFinder.cs │ │ │ ├── Constants.cs │ │ │ ├── DecompilationException.cs │ │ │ ├── Decompiler │ │ │ ├── AssemblySpecificContext.cs │ │ │ ├── AssignmentAnalysis │ │ │ │ ├── AssignmentAnalyzer.cs │ │ │ │ ├── AssignmentFlowNode.cs │ │ │ │ ├── AssignmentNodeState.cs │ │ │ │ ├── AssignmentType.cs │ │ │ │ ├── BaseAssignmentAnalysisStep.cs │ │ │ │ ├── BaseUsageFinder.cs │ │ │ │ ├── FieldUsageFinder.cs │ │ │ │ ├── OutParameterUsageFinder.cs │ │ │ │ ├── UsageFinderSearchResult.cs │ │ │ │ └── VariableUsageFinder.cs │ │ │ ├── AsyncData.cs │ │ │ ├── AttributesUtilities.cs │ │ │ ├── AutoImplementedEventMatcher.cs │ │ │ ├── BlockDecompilationPipeline.cs │ │ │ ├── Caching │ │ │ │ ├── CachedDecompiledMember.cs │ │ │ │ ├── DecompilationCache_Key, Value_.cs │ │ │ │ ├── DefaultDecompilationCacheService.cs │ │ │ │ ├── EmptyDecompilationCacheService.cs │ │ │ │ ├── IDecompilationCacheService.cs │ │ │ │ ├── IDecompilationCache_Key, Value_.cs │ │ │ │ └── ProjectGenerationDecompilationCacheService.cs │ │ │ ├── CompilerOptimizedSwitchByStringData.cs │ │ │ ├── DecompilationAnalysisResults.cs │ │ │ ├── DecompilationContext.cs │ │ │ ├── DecompilationPipeline.cs │ │ │ ├── DecompiledMember.cs │ │ │ ├── DecompiledType.cs │ │ │ ├── DefineUseAnalysis │ │ │ │ ├── StackUsageAnalysis.cs │ │ │ │ ├── StackUsageData.cs │ │ │ │ └── StackVariableDefineUseInfo.cs │ │ │ ├── DependsOnAnalysisVisitor.cs │ │ │ ├── DocumentationCache.cs │ │ │ ├── ExplicitlyImplementedMembersCollection.cs │ │ │ ├── ExpressionDecompilerData.cs │ │ │ ├── ExpressionDecompilerStep.cs │ │ │ ├── ExpressionPropagation │ │ │ │ └── ExpressionPropagationStep.cs │ │ │ ├── Extensions.cs │ │ │ ├── FilterMethodToBeDecompiled.cs │ │ │ ├── GeneratedMethod.cs │ │ │ ├── GotoElimination │ │ │ │ ├── AfterGotoCleanupStep.cs │ │ │ │ ├── ContinueAndBreakFinder.cs │ │ │ │ ├── GotoCancelation.cs │ │ │ │ └── TotalGotoEliminationStep.cs │ │ │ ├── IStateMachineData.cs │ │ │ ├── InitializationAssignment.cs │ │ │ ├── Inlining │ │ │ │ ├── BaseVariablesInliner.cs │ │ │ │ ├── EmptyVariablesToNotInlineFinder.cs │ │ │ │ ├── IVariableInliner.cs │ │ │ │ ├── IVariablesToNotInlineFinder.cs │ │ │ │ ├── MethodVariablesInliner.cs │ │ │ │ ├── RestrictedVariableInliner.cs │ │ │ │ ├── SideEffectsFinder.cs │ │ │ │ ├── SimpleVariableInliner.cs │ │ │ │ ├── StackVariablesInliner.cs │ │ │ │ └── VisualBasicVariablesToNotInlineFinder.cs │ │ │ ├── LogicFlow │ │ │ │ ├── BlockLogicalConstruct.cs │ │ │ │ ├── CFGBlockLogicalConstruct.cs │ │ │ │ ├── CFGBlockSplitter.cs │ │ │ │ ├── Common │ │ │ │ │ └── TreeNode.cs │ │ │ │ ├── Conditions │ │ │ │ │ ├── ConditionBuilder.cs │ │ │ │ │ ├── ConditionLogicalConstruct.cs │ │ │ │ │ ├── IfBuilder.cs │ │ │ │ │ └── IfLogicalConstruct.cs │ │ │ │ ├── DFST │ │ │ │ │ ├── DFSTBuilder.cs │ │ │ │ │ ├── DFSTEdge.cs │ │ │ │ │ ├── DFSTNode.cs │ │ │ │ │ └── DFSTree.cs │ │ │ │ ├── DTree │ │ │ │ │ ├── BaseDominatorTreeBuilder.cs │ │ │ │ │ ├── DTNode.cs │ │ │ │ │ ├── DominatorTree.cs │ │ │ │ │ └── FastDominatorTreeBuilder.cs │ │ │ │ ├── DominatorTreeDependentStep.cs │ │ │ │ ├── EmptyBlockLogicalConstruct.cs │ │ │ │ ├── Exceptions │ │ │ │ │ ├── ExceptionHandlingBlockCatch.cs │ │ │ │ │ ├── ExceptionHandlingBlockFilter.cs │ │ │ │ │ ├── ExceptionHandlingLogicalConstruct.cs │ │ │ │ │ ├── FilteringExceptionHandlerType.cs │ │ │ │ │ ├── GuardedBlocksBuilder.cs │ │ │ │ │ ├── GuardedBlocksFollowNodesFinder.cs │ │ │ │ │ ├── IFilteringExceptionHandler.cs │ │ │ │ │ ├── TryCatchFilterLogicalConstruct.cs │ │ │ │ │ ├── TryFaultLogicalConstruct.cs │ │ │ │ │ └── TryFinallyLogicalConstruct.cs │ │ │ │ ├── FollowNodeLoopCleanUpStep.cs │ │ │ │ ├── FollowNodes │ │ │ │ │ ├── FollowNodeDeterminator.cs │ │ │ │ │ └── MaxWeightDisjointPathsFinder.cs │ │ │ │ ├── IBreaksContainer.cs │ │ │ │ ├── IInstructionBlockContainer.cs │ │ │ │ ├── ILogicalConstruct.cs │ │ │ │ ├── IntervalAnalyzer.cs │ │ │ │ ├── IntervalConstruct.cs │ │ │ │ ├── LogicalConstructBase.cs │ │ │ │ ├── LogicalFlowBuilderContext.cs │ │ │ │ ├── LogicalFlowBuilderStep.cs │ │ │ │ ├── LogicalFlowUtilities.cs │ │ │ │ ├── Loops │ │ │ │ │ ├── LoopBuilder.cs │ │ │ │ │ ├── LoopLogicalConstruct.cs │ │ │ │ │ └── LoopType.cs │ │ │ │ ├── PartialCFGBlockLogicalConstruct.cs │ │ │ │ ├── Switches │ │ │ │ │ ├── CaseLogicalConstruct.cs │ │ │ │ │ ├── SwitchBuilder.cs │ │ │ │ │ └── SwitchLogicalConstruct.cs │ │ │ │ └── YieldGuardedBlocksBuilder.cs │ │ │ ├── MemberRenamingServices │ │ │ │ ├── DefaultMemberRenamingService.cs │ │ │ │ ├── IMemberRenamingService.cs │ │ │ │ ├── MemberRenamingData.cs │ │ │ │ └── WinRTRenamingService.cs │ │ │ ├── MethodSpecificContext.cs │ │ │ ├── ModuleSpecificContext.cs │ │ │ ├── PropertyDecompiler.cs │ │ │ ├── StateMachines │ │ │ │ ├── AsyncMoveNextMethodAnalyzer.cs │ │ │ │ ├── AsyncStateControllerRemover.cs │ │ │ │ ├── AsyncStateMachineVersion.cs │ │ │ │ ├── DisposingStateControllerRemover.cs │ │ │ │ ├── StateControllerRemover.cs │ │ │ │ ├── StateMachineCFGCleaner.cs │ │ │ │ ├── StateMachineDisposeAnalyzer.cs │ │ │ │ ├── StateMachineDoFinallyCheckRemover.cs │ │ │ │ ├── StateMachineFinallyCheckRemoverBase.cs │ │ │ │ ├── StateMachineFinallyStateCheckRemover.cs │ │ │ │ ├── StateMachineUtilities.cs │ │ │ │ └── YieldStateMachineControlFlowRebuilder.cs │ │ │ ├── StatementDecompilerStep.cs │ │ │ ├── TypeInference │ │ │ │ ├── ClassHierarchyBuilder.cs │ │ │ │ ├── ClassHierarchyNode.cs │ │ │ │ ├── ConnectedComponentsFinder.cs │ │ │ │ ├── ExpressionTypeInferer.cs │ │ │ │ ├── GreedyTypeInferer.cs │ │ │ │ ├── IntegerTypeInferer.cs │ │ │ │ ├── IntegerTypesHierarchyBuilder.cs │ │ │ │ ├── TypeInferer.cs │ │ │ │ └── UsedAsTypeHelper.cs │ │ │ ├── TypeNamesComparer.cs │ │ │ ├── TypeSpecificContext.cs │ │ │ ├── UsageBasedExpressionFixer.cs │ │ │ ├── Utilities.cs │ │ │ ├── WriterContext.cs │ │ │ ├── WriterContextServices │ │ │ │ ├── BaseWriterContextService.cs │ │ │ │ ├── FrameworkFoldersWriterContextService.cs │ │ │ │ ├── IWriterContextService.cs │ │ │ │ ├── SimpleWriterContextService.cs │ │ │ │ ├── TypeCollisionWriterContextService.cs │ │ │ │ ├── TypeDeclarationsWriterContextService.cs │ │ │ │ └── WinRTWriterContextService.cs │ │ │ ├── YieldData.cs │ │ │ ├── YieldExceptionHandlerInfo.cs │ │ │ ├── YieldExceptionHandlerType.cs │ │ │ ├── YieldFieldsInformation.cs │ │ │ └── YieldStateMachineVersion.cs │ │ │ ├── External │ │ │ ├── Architecture.cs │ │ │ ├── AssemblyIdentifier.cs │ │ │ ├── DecompilationPreferences.cs │ │ │ ├── ExceptionThrownNotifier.cs │ │ │ ├── ExternallyVisibleDecompilationUtilities.cs │ │ │ ├── FileGeneratedInfo.cs │ │ │ ├── IFileGenerationNotifier.cs │ │ │ ├── Interfaces │ │ │ │ ├── IDecompilationPreferences.cs │ │ │ │ ├── IDecompiler.cs │ │ │ │ ├── IExceptionThrownNotifier.cs │ │ │ │ ├── IFileGeneratedInfo.cs │ │ │ │ ├── IFrameworkResolver.cs │ │ │ │ ├── IFrameworkResolverWithUserInteraction.cs │ │ │ │ ├── ITypeGeneratedInfo.cs │ │ │ │ └── IUniqueMemberIdentifier.cs │ │ │ ├── MemberIdentifier.cs │ │ │ ├── TypeGeneratedInfo.cs │ │ │ └── UniqueMemberIdentifier.cs │ │ │ ├── Languages │ │ │ ├── AttributeWriter.cs │ │ │ ├── BaseAssemblyAttributeWriter.cs │ │ │ ├── BaseImperativeLanguageWriter.cs │ │ │ ├── BaseLanguage.cs │ │ │ ├── BaseLanguageWriter.cs │ │ │ ├── CSharp │ │ │ │ ├── CSharpAssemblyAttributeWriter.cs │ │ │ │ ├── CSharpAttributeWriter.cs │ │ │ │ ├── CSharpKeyWordWriter.cs │ │ │ │ ├── CSharpVersion.cs │ │ │ │ ├── CSharpWriter.cs │ │ │ │ └── ICSharp.cs │ │ │ ├── CodeMappingInfo.cs │ │ │ ├── CodePosition.cs │ │ │ ├── CodeSpan.cs │ │ │ ├── IAssemblyAttributeWriter.cs │ │ │ ├── IExceptionFormatter.cs │ │ │ ├── IFormatter.cs │ │ │ ├── IKeyWordWriter.cs │ │ │ ├── IL │ │ │ │ ├── CodeMappings.cs │ │ │ │ ├── FlagsWriter.cs │ │ │ │ ├── ILBlock.cs │ │ │ │ ├── ILBlockType.cs │ │ │ │ ├── ILHelpers.cs │ │ │ │ ├── ILRange.cs │ │ │ │ ├── IntermediateLanguage.cs │ │ │ │ ├── IntermediateLanguageAssemblyAttributeWriter.cs │ │ │ │ ├── IntermediateLanguageAttributeWriter.cs │ │ │ │ ├── IntermediateLanguageWriter.cs │ │ │ │ ├── MemberMapping.cs │ │ │ │ ├── OpCodeInfo.cs │ │ │ │ └── SourceCodeMapping.cs │ │ │ ├── ILanguage.cs │ │ │ ├── ILanguageTestCaseWriter.cs │ │ │ ├── ILanguageWriter.cs │ │ │ ├── INamespaceLanguageWriter.cs │ │ │ ├── IWriterSettings.cs │ │ │ ├── InfinityConstants.cs │ │ │ ├── LanguageFactory.cs │ │ │ ├── MemberNamingUtils.cs │ │ │ ├── NamespaceImperativeLanguageWriter.cs │ │ │ ├── OffsetSpan.cs │ │ │ ├── PlainTextFormatter.cs │ │ │ ├── SimpleExceptionFormatter.cs │ │ │ ├── TestCaseExceptionFormatter.cs │ │ │ ├── TestCaseWriters │ │ │ │ ├── IntermediateDecompilationCSharpLanguageWriter.cs │ │ │ │ └── TestCaseCSharpWriter.cs │ │ │ ├── VisualBasic │ │ │ │ ├── IVisualBasic.cs │ │ │ │ ├── StatementState.cs │ │ │ │ ├── VisualBasicAssemblyAttributeWriter.cs │ │ │ │ ├── VisualBasicAttributeWriter.cs │ │ │ │ ├── VisualBasicKeyWordWriter.cs │ │ │ │ ├── VisualBasicVersion.cs │ │ │ │ └── VisualBasicWriter.cs │ │ │ ├── WriterSettings.cs │ │ │ └── WritingInfo.cs │ │ │ ├── Pattern │ │ │ ├── Assignment.cs │ │ │ ├── Binary.cs │ │ │ ├── CodePattern.cs │ │ │ ├── CodePattern_TNode_.cs │ │ │ ├── Constant.cs │ │ │ ├── ContextData.cs │ │ │ ├── ContextVariableReference.cs │ │ │ ├── ExpressionStatement.cs │ │ │ ├── Extensions.cs │ │ │ ├── ICodePattern.cs │ │ │ ├── Literal.cs │ │ │ ├── MatchContext.cs │ │ │ ├── MatchData.cs │ │ │ ├── SafeCast.cs │ │ │ └── VariableReference.cs │ │ │ ├── Steps │ │ │ ├── ArrayVariablesStep.cs │ │ │ ├── AssignOutParametersStep.cs │ │ │ ├── BaseStateMachineRemoverStep.cs │ │ │ ├── CanCastStep.cs │ │ │ ├── CaseGotoTransformerStep.cs │ │ │ ├── CastEnumsToIntegersStep.cs │ │ │ ├── CastIntegersStep.cs │ │ │ ├── CodePatterns │ │ │ │ ├── ArrayInitialisationPattern.cs │ │ │ │ ├── BaseInitialisationPattern.cs │ │ │ │ ├── CatchClausesFilterPattern.cs │ │ │ │ ├── CodePatternsContext.cs │ │ │ │ ├── CollectionInitializationPattern.cs │ │ │ │ ├── CommonPatterns.cs │ │ │ │ ├── DefineUseCount.cs │ │ │ │ ├── ICodePattern.cs │ │ │ │ ├── InitializationPattern.cs │ │ │ │ ├── MultiAssignPattern.cs │ │ │ │ ├── NullCoalescingPattern.cs │ │ │ │ ├── ObjectInitialisationPattern.cs │ │ │ │ ├── RaiseEventPattern.cs │ │ │ │ ├── TernaryConditionPattern.cs │ │ │ │ ├── TernaryConditionPatternAgressive.cs │ │ │ │ ├── VariableInliningPattern.cs │ │ │ │ └── VariableInliningPatternAggressive.cs │ │ │ ├── CodePatternsStep.cs │ │ │ ├── CombinedTransformerStep.cs │ │ │ ├── CreateCompilerOptimizedSwitchByStringStatementsStep.cs │ │ │ ├── CreateIfElseIfStatementsStep.cs │ │ │ ├── DeclareTopLevelVariables.cs │ │ │ ├── DeclareVariablesOnFirstAssignment.cs │ │ │ ├── DeduceImplicitDelegates.cs │ │ │ ├── DependsOnAnalysisStep.cs │ │ │ ├── DetermineCtorInvocationStep.cs │ │ │ ├── DetermineDestructorStep.cs │ │ │ ├── DetermineNotSupportedVBCodeStep.cs │ │ │ ├── DynamicVariables │ │ │ │ ├── CallSiteBinderType.cs │ │ │ │ ├── CallSiteInfo.cs │ │ │ │ ├── CallSiteInvocationReplacer.cs │ │ │ │ └── DynamicElementAnalyzer.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── ExpressionComparer.cs │ │ │ ├── FieldAssignmentAnalysisStep.cs │ │ │ ├── FindAutoBoxesStep.cs │ │ │ ├── FixBinaryExpressionsStep.cs │ │ │ ├── FixMethodOverloadsStep.cs │ │ │ ├── FixSwitchCasesStep.cs │ │ │ ├── FixSwitchConditionStep.cs │ │ │ ├── HandleVirtualMethodInvocations.cs │ │ │ ├── IDecompilationStep.cs │ │ │ ├── Inflector.cs │ │ │ ├── InstructionMappingsCheck.cs │ │ │ ├── ManagedPointersRemovalStep.cs │ │ │ ├── MapUnconditionalBranchesStep.cs │ │ │ ├── Matcher.cs │ │ │ ├── MergeUnaryAndBinaryExpression.cs │ │ │ ├── Negator.cs │ │ │ ├── OperatorStep.cs │ │ │ ├── OutParameterAssignmentAnalysisStep.cs │ │ │ ├── ParenthesizeExpressionsStep.cs │ │ │ ├── PropertyRecognizer.cs │ │ │ ├── RebuildAnonymousDelegatesStep.cs │ │ │ ├── RebuildAnonymousTypesInitializersStep.cs │ │ │ ├── RebuildAsyncStatementsStep.cs │ │ │ ├── RebuildCatchClausesFilterStep.cs │ │ │ ├── RebuildDoWhileStatements.cs │ │ │ ├── RebuildEventsStep.cs │ │ │ ├── RebuildExpressionTreesStep.cs │ │ │ ├── RebuildFixedStatements.cs │ │ │ ├── RebuildForStatements.cs │ │ │ ├── RebuildForeachArrayStatements.cs │ │ │ ├── RebuildForeachStatements.cs │ │ │ ├── RebuildLambdaExpressions.cs │ │ │ ├── RebuildLinqQueriesStep.cs │ │ │ ├── RebuildLockStatements.cs │ │ │ ├── RebuildUsingStatements.cs │ │ │ ├── RebuildVBForStatements.cs │ │ │ ├── RebuildYieldStatementsStep.cs │ │ │ ├── RemoveAsyncStateMachineStep.cs │ │ │ ├── RemoveCompilerOptimizationsStep.cs │ │ │ ├── RemoveConditionOnlyVariables.cs │ │ │ ├── RemoveDelegateCachingStep.cs │ │ │ ├── RemoveLastReturn.cs │ │ │ ├── RemovePrivateImplementationDetailsStep.cs │ │ │ ├── RemoveUnreachableBlocksStep.cs │ │ │ ├── RemoveUnusedVariablesStep.cs │ │ │ ├── RemoveYieldStateMachineStep.cs │ │ │ ├── RenameEnumValues.cs │ │ │ ├── RenameSplitPropertiesMethodsAndBackingFields.cs │ │ │ ├── RenameVBVariables.cs │ │ │ ├── RenameVariables.cs │ │ │ ├── ReplaceDelegateInvokeStep.cs │ │ │ ├── ResolveDynamicVariablesStep.cs │ │ │ ├── SelfAssignment.cs │ │ │ ├── SentinelStep.cs │ │ │ ├── SimpleDereferencer.cs │ │ │ ├── SwitchByString │ │ │ │ ├── RebuildSwitchByString.cs │ │ │ │ ├── SwitchByStringFixer.cs │ │ │ │ └── SwitchByStringMatcher.cs │ │ │ ├── TransformCatchClausesFilterExpressionStep.cs │ │ │ ├── TransformMemberHandlersStep.cs │ │ │ ├── TypeOfStep.cs │ │ │ ├── UnsafeMethodBodyStep.cs │ │ │ ├── VBCodePatternsStep.cs │ │ │ ├── VBSelfAssignment.cs │ │ │ ├── VariableAssignmentAnalysisStep.cs │ │ │ ├── VariableMatcher.cs │ │ │ ├── VisualBasicRemoveDelegateCachingStep.cs │ │ │ └── VisualBasicRemoveUnusedVariablesStep.cs │ │ │ ├── SupportedLanguages.cs │ │ │ ├── ThreadSafeWeakAssemblyResolver.cs │ │ │ ├── TwoDimensionalString.cs │ │ │ ├── WeakAssemblyResolver.cs │ │ │ └── XmlDocumentationReaders │ │ │ ├── DocumentationManager.cs │ │ │ ├── XmlDocumentationReader.cs │ │ │ └── XmlDocumentationResolver.cs │ ├── JustDecompiler.NetStandard │ │ ├── JustDecompiler.NetStandard.csproj │ │ ├── JustDecompiler.NetStandard.sln │ │ ├── Mono.Cecil │ │ │ ├── Extensions │ │ │ │ ├── CustomAttributeExtensions.cs │ │ │ │ ├── DecompilationLocker.cs │ │ │ │ ├── EventDefinitionExtensions.cs │ │ │ │ ├── FieldReferenceExtensions.cs │ │ │ │ ├── ICustomAttributeProviderExtensions.cs │ │ │ │ ├── IGenericInstanceExtensions.cs │ │ │ │ ├── IGenericParameterProviderExtensions.cs │ │ │ │ ├── ImplementedMember.cs │ │ │ │ ├── InstructionExtensions.cs │ │ │ │ ├── MemberDefinitionExtensions.cs │ │ │ │ ├── MemberNamingExtensions.cs │ │ │ │ ├── MethodDefinitionExtensions.cs │ │ │ │ ├── MethodReferenceExtentions.cs │ │ │ │ ├── ModuleDefinitionExtensions.cs │ │ │ │ ├── ParameterDefinitionExtensions.cs │ │ │ │ ├── ParameterReferenceExtensions.cs │ │ │ │ ├── PropertyDefinitionExtensions.cs │ │ │ │ ├── SecurityAttributeExtensions.cs │ │ │ │ ├── SecurityDeclarationExtension.cs │ │ │ │ ├── TypeDefinitionExtensions.cs │ │ │ │ └── TypeReferenceExtensions.cs │ │ │ └── GenericHelper.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Telerik.JustDecompiler │ │ │ ├── Ast │ │ │ ├── BaseCodeNode.cs │ │ │ ├── BaseCodeTransformer.cs │ │ │ ├── BaseCodeVisitor.cs │ │ │ ├── BinaryOperator.cs │ │ │ ├── CodeNodeType.cs │ │ │ ├── ExpressionExtensions.cs │ │ │ ├── Expressions │ │ │ │ ├── AnonymousObjectCreationExpression.cs │ │ │ │ ├── AnonymousPropertyInitializerExpression.cs │ │ │ │ ├── ArgumentReferenceExpression.cs │ │ │ │ ├── ArrayAssignmentFieldReferenceExpression.cs │ │ │ │ ├── ArrayCreationExpression.cs │ │ │ │ ├── ArrayIndexerExpression.cs │ │ │ │ ├── ArrayLengthExpression.cs │ │ │ │ ├── ArrayVariableDeclarationExpression.cs │ │ │ │ ├── ArrayVariableReferenceExpression.cs │ │ │ │ ├── AutoPropertyConstructorInitializerExpression.cs │ │ │ │ ├── AwaitExpression.cs │ │ │ │ ├── BaseCtorExpression.cs │ │ │ │ ├── BaseReferenceExpression.cs │ │ │ │ ├── BinaryExpression.cs │ │ │ │ ├── BlockExpression.cs │ │ │ │ ├── BoxExpression.cs │ │ │ │ ├── CanCastExpression.cs │ │ │ │ ├── CastExpressionBase.cs │ │ │ │ ├── CheckedExpression.cs │ │ │ │ ├── ConditionExpression.cs │ │ │ │ ├── DefaultObjectExpression.cs │ │ │ │ ├── DelegateCreationExpression.cs │ │ │ │ ├── DelegateInvokeExpression.cs │ │ │ │ ├── DynamicConstructorInvocationExpression.cs │ │ │ │ ├── DynamicIndexerExpression.cs │ │ │ │ ├── DynamicMemberReferenceExpression.cs │ │ │ │ ├── EnumExpression.cs │ │ │ │ ├── EventReferenceExpression.cs │ │ │ │ ├── ExplicitCastExpression.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionCollection.cs │ │ │ │ ├── FieldInitializerExpression.cs │ │ │ │ ├── FieldReferenceExpression.cs │ │ │ │ ├── FromClause.cs │ │ │ │ ├── GroupClause.cs │ │ │ │ ├── ImplicitCastExpression.cs │ │ │ │ ├── InitializerExpression.cs │ │ │ │ ├── InitializerType.cs │ │ │ │ ├── IntoClause.cs │ │ │ │ ├── JoinClause.cs │ │ │ │ ├── LambdaExpression.cs │ │ │ │ ├── LambdaParameterExpression.cs │ │ │ │ ├── LetClause.cs │ │ │ │ ├── LinqQueryExpression.cs │ │ │ │ ├── LiteralExpression.cs │ │ │ │ ├── MakeRefExpression.cs │ │ │ │ ├── MemberHandleExpression.cs │ │ │ │ ├── MemberReferenceExpresion.cs │ │ │ │ ├── MethodInvocationExpression.cs │ │ │ │ ├── MethodReferenceExpression.cs │ │ │ │ ├── ObjectCreationExpression.cs │ │ │ │ ├── OrderByClause.cs │ │ │ │ ├── ParenthesesExpression.cs │ │ │ │ ├── PropertyInitializerExpression.cs │ │ │ │ ├── PropertyReferenceExpression.cs │ │ │ │ ├── QueryClause.cs │ │ │ │ ├── RaiseEventExpression.cs │ │ │ │ ├── RefReturnExpression.cs │ │ │ │ ├── RefVariableDeclarationExpression.cs │ │ │ │ ├── ReturnExpression.cs │ │ │ │ ├── SafeCastExpression.cs │ │ │ │ ├── SelectClause.cs │ │ │ │ ├── ShortFormReturnExpression.cs │ │ │ │ ├── SizeOfExpression.cs │ │ │ │ ├── StackAllocExpression.cs │ │ │ │ ├── ThisCtorExpression.cs │ │ │ │ ├── ThisReferenceExpression.cs │ │ │ │ ├── ThrowExpression.cs │ │ │ │ ├── TypeOfExpression.cs │ │ │ │ ├── TypeReferenceExpression.cs │ │ │ │ ├── UnaryExpression.cs │ │ │ │ ├── VariableDeclarationExpression.cs │ │ │ │ ├── VariableReferenceExpression.cs │ │ │ │ ├── WhereClause.cs │ │ │ │ ├── YieldBreakExpression.cs │ │ │ │ └── YieldReturnExpression.cs │ │ │ ├── ICodeNode.cs │ │ │ ├── ICodeTransformer.cs │ │ │ ├── ICodeVisitor.cs │ │ │ ├── IIndexerExpression.cs │ │ │ ├── IPdbCodeNode.cs │ │ │ ├── OrderDirection.cs │ │ │ ├── StatementExtensions.cs │ │ │ ├── Statements │ │ │ │ ├── BasePdbStatement.cs │ │ │ │ ├── BlockStatement.cs │ │ │ │ ├── BreakStatement.cs │ │ │ │ ├── BreakSwitchCaseStatement.cs │ │ │ │ ├── CaseGotoStatement.cs │ │ │ │ ├── CatchClause.cs │ │ │ │ ├── CatchClauseCollection.cs │ │ │ │ ├── CompilerOptimizedSwitchByStringStatement.cs │ │ │ │ ├── ConditionCase.cs │ │ │ │ ├── ConditionStatement.cs │ │ │ │ ├── ContinueStatement.cs │ │ │ │ ├── DefaultCase.cs │ │ │ │ ├── DoWhileStatement.cs │ │ │ │ ├── EmptyStatement.cs │ │ │ │ ├── ExceptionStatement.cs │ │ │ │ ├── ExpressionStatement.cs │ │ │ │ ├── FinallyClause.cs │ │ │ │ ├── FixedStatement.cs │ │ │ │ ├── ForEachStatement.cs │ │ │ │ ├── ForStatement.cs │ │ │ │ ├── GotoStatement.cs │ │ │ │ ├── IfElseIfStatement.cs │ │ │ │ ├── IfStatement.cs │ │ │ │ ├── LockStatement.cs │ │ │ │ ├── Statement.cs │ │ │ │ ├── StatementCollection.cs │ │ │ │ ├── SwitchCase.cs │ │ │ │ ├── SwitchCaseCollection.cs │ │ │ │ ├── SwitchStatement.cs │ │ │ │ ├── TryStatement.cs │ │ │ │ ├── UnsafeBlockStatement.cs │ │ │ │ ├── UsingStatement.cs │ │ │ │ └── WhileStatement.cs │ │ │ └── UnaryOperator.cs │ │ │ ├── Cil │ │ │ ├── BaseInstructionVisitor.cs │ │ │ ├── BlockRange.cs │ │ │ ├── ControlFlowGraph.cs │ │ │ ├── ControlFlowGraphAnalyser.cs │ │ │ ├── ControlFlowGraphBuilder.cs │ │ │ ├── Formatter.cs │ │ │ ├── IInstructionVisitor.cs │ │ │ ├── ISingleEntrySubGraph.cs │ │ │ ├── InstructionBlock.cs │ │ │ ├── InstructionDispatcher.cs │ │ │ └── SwitchData.cs │ │ │ ├── Common │ │ │ ├── DynamicHelper.cs │ │ │ ├── EnumValueToFieldCombinationMatcher.cs │ │ │ ├── ExpressionType.cs │ │ │ ├── Extensions.cs │ │ │ ├── LambdaExpressionsHelper.cs │ │ │ ├── NamespaceHierarchy │ │ │ │ ├── NamespaceHierarchyNode.cs │ │ │ │ ├── NamespaceHierarchyTree.cs │ │ │ │ └── NamespaceHierarchyTreeBuilder.cs │ │ │ ├── PairList_K, V_.cs │ │ │ ├── SwitchHelpers.cs │ │ │ ├── UnionFinder_T_.cs │ │ │ └── VariableFinder.cs │ │ │ ├── Constants.cs │ │ │ ├── DecompilationException.cs │ │ │ ├── Decompiler │ │ │ ├── AssemblySpecificContext.cs │ │ │ ├── AssignmentAnalysis │ │ │ │ ├── AssignmentAnalyzer.cs │ │ │ │ ├── AssignmentFlowNode.cs │ │ │ │ ├── AssignmentNodeState.cs │ │ │ │ ├── AssignmentType.cs │ │ │ │ ├── BaseAssignmentAnalysisStep.cs │ │ │ │ ├── BaseUsageFinder.cs │ │ │ │ ├── FieldUsageFinder.cs │ │ │ │ ├── OutParameterUsageFinder.cs │ │ │ │ ├── UsageFinderSearchResult.cs │ │ │ │ └── VariableUsageFinder.cs │ │ │ ├── AsyncData.cs │ │ │ ├── AttributesUtilities.cs │ │ │ ├── AutoImplementedEventMatcher.cs │ │ │ ├── BlockDecompilationPipeline.cs │ │ │ ├── Caching │ │ │ │ ├── CachedDecompiledMember.cs │ │ │ │ ├── DecompilationCache_Key, Value_.cs │ │ │ │ ├── DefaultDecompilationCacheService.cs │ │ │ │ ├── EmptyDecompilationCacheService.cs │ │ │ │ ├── IDecompilationCacheService.cs │ │ │ │ ├── IDecompilationCache_Key, Value_.cs │ │ │ │ └── ProjectGenerationDecompilationCacheService.cs │ │ │ ├── CompilerOptimizedSwitchByStringData.cs │ │ │ ├── DecompilationAnalysisResults.cs │ │ │ ├── DecompilationContext.cs │ │ │ ├── DecompilationPipeline.cs │ │ │ ├── DecompiledMember.cs │ │ │ ├── DecompiledType.cs │ │ │ ├── DefineUseAnalysis │ │ │ │ ├── StackUsageAnalysis.cs │ │ │ │ ├── StackUsageData.cs │ │ │ │ └── StackVariableDefineUseInfo.cs │ │ │ ├── DependsOnAnalysisVisitor.cs │ │ │ ├── DocumentationCache.cs │ │ │ ├── ExplicitlyImplementedMembersCollection.cs │ │ │ ├── ExpressionDecompilerData.cs │ │ │ ├── ExpressionDecompilerStep.cs │ │ │ ├── ExpressionPropagation │ │ │ │ └── ExpressionPropagationStep.cs │ │ │ ├── Extensions.cs │ │ │ ├── FilterMethodToBeDecompiled.cs │ │ │ ├── GeneratedMethod.cs │ │ │ ├── GotoElimination │ │ │ │ ├── AfterGotoCleanupStep.cs │ │ │ │ ├── ContinueAndBreakFinder.cs │ │ │ │ ├── GotoCancelation.cs │ │ │ │ └── TotalGotoEliminationStep.cs │ │ │ ├── IStateMachineData.cs │ │ │ ├── InitializationAssignment.cs │ │ │ ├── Inlining │ │ │ │ ├── BaseVariablesInliner.cs │ │ │ │ ├── EmptyVariablesToNotInlineFinder.cs │ │ │ │ ├── IVariableInliner.cs │ │ │ │ ├── IVariablesToNotInlineFinder.cs │ │ │ │ ├── MethodVariablesInliner.cs │ │ │ │ ├── RestrictedVariableInliner.cs │ │ │ │ ├── SideEffectsFinder.cs │ │ │ │ ├── SimpleVariableInliner.cs │ │ │ │ ├── StackVariablesInliner.cs │ │ │ │ └── VisualBasicVariablesToNotInlineFinder.cs │ │ │ ├── LogicFlow │ │ │ │ ├── BlockLogicalConstruct.cs │ │ │ │ ├── CFGBlockLogicalConstruct.cs │ │ │ │ ├── CFGBlockSplitter.cs │ │ │ │ ├── Common │ │ │ │ │ └── TreeNode.cs │ │ │ │ ├── Conditions │ │ │ │ │ ├── ConditionBuilder.cs │ │ │ │ │ ├── ConditionLogicalConstruct.cs │ │ │ │ │ ├── IfBuilder.cs │ │ │ │ │ └── IfLogicalConstruct.cs │ │ │ │ ├── DFST │ │ │ │ │ ├── DFSTBuilder.cs │ │ │ │ │ ├── DFSTEdge.cs │ │ │ │ │ ├── DFSTNode.cs │ │ │ │ │ └── DFSTree.cs │ │ │ │ ├── DTree │ │ │ │ │ ├── BaseDominatorTreeBuilder.cs │ │ │ │ │ ├── DTNode.cs │ │ │ │ │ ├── DominatorTree.cs │ │ │ │ │ └── FastDominatorTreeBuilder.cs │ │ │ │ ├── DominatorTreeDependentStep.cs │ │ │ │ ├── EmptyBlockLogicalConstruct.cs │ │ │ │ ├── Exceptions │ │ │ │ │ ├── ExceptionHandlingBlockCatch.cs │ │ │ │ │ ├── ExceptionHandlingBlockFilter.cs │ │ │ │ │ ├── ExceptionHandlingLogicalConstruct.cs │ │ │ │ │ ├── FilteringExceptionHandlerType.cs │ │ │ │ │ ├── GuardedBlocksBuilder.cs │ │ │ │ │ ├── GuardedBlocksFollowNodesFinder.cs │ │ │ │ │ ├── IFilteringExceptionHandler.cs │ │ │ │ │ ├── TryCatchFilterLogicalConstruct.cs │ │ │ │ │ ├── TryFaultLogicalConstruct.cs │ │ │ │ │ └── TryFinallyLogicalConstruct.cs │ │ │ │ ├── FollowNodeLoopCleanUpStep.cs │ │ │ │ ├── FollowNodes │ │ │ │ │ ├── FollowNodeDeterminator.cs │ │ │ │ │ └── MaxWeightDisjointPathsFinder.cs │ │ │ │ ├── IBreaksContainer.cs │ │ │ │ ├── IInstructionBlockContainer.cs │ │ │ │ ├── ILogicalConstruct.cs │ │ │ │ ├── IntervalAnalyzer.cs │ │ │ │ ├── IntervalConstruct.cs │ │ │ │ ├── LogicalConstructBase.cs │ │ │ │ ├── LogicalFlowBuilderContext.cs │ │ │ │ ├── LogicalFlowBuilderStep.cs │ │ │ │ ├── LogicalFlowUtilities.cs │ │ │ │ ├── Loops │ │ │ │ │ ├── LoopBuilder.cs │ │ │ │ │ ├── LoopLogicalConstruct.cs │ │ │ │ │ └── LoopType.cs │ │ │ │ ├── PartialCFGBlockLogicalConstruct.cs │ │ │ │ ├── Switches │ │ │ │ │ ├── CaseLogicalConstruct.cs │ │ │ │ │ ├── SwitchBuilder.cs │ │ │ │ │ └── SwitchLogicalConstruct.cs │ │ │ │ └── YieldGuardedBlocksBuilder.cs │ │ │ ├── MemberRenamingServices │ │ │ │ ├── DefaultMemberRenamingService.cs │ │ │ │ ├── IMemberRenamingService.cs │ │ │ │ ├── MemberRenamingData.cs │ │ │ │ └── WinRTRenamingService.cs │ │ │ ├── MethodSpecificContext.cs │ │ │ ├── ModuleSpecificContext.cs │ │ │ ├── PropertyDecompiler.cs │ │ │ ├── StateMachines │ │ │ │ ├── AsyncMoveNextMethodAnalyzer.cs │ │ │ │ ├── AsyncStateControllerRemover.cs │ │ │ │ ├── AsyncStateMachineVersion.cs │ │ │ │ ├── DisposingStateControllerRemover.cs │ │ │ │ ├── StateControllerRemover.cs │ │ │ │ ├── StateMachineCFGCleaner.cs │ │ │ │ ├── StateMachineDisposeAnalyzer.cs │ │ │ │ ├── StateMachineDoFinallyCheckRemover.cs │ │ │ │ ├── StateMachineFinallyCheckRemoverBase.cs │ │ │ │ ├── StateMachineFinallyStateCheckRemover.cs │ │ │ │ ├── StateMachineUtilities.cs │ │ │ │ └── YieldStateMachineControlFlowRebuilder.cs │ │ │ ├── StatementDecompilerStep.cs │ │ │ ├── TypeInference │ │ │ │ ├── ClassHierarchyBuilder.cs │ │ │ │ ├── ClassHierarchyNode.cs │ │ │ │ ├── ConnectedComponentsFinder.cs │ │ │ │ ├── ExpressionTypeInferer.cs │ │ │ │ ├── GreedyTypeInferer.cs │ │ │ │ ├── IntegerTypeInferer.cs │ │ │ │ ├── IntegerTypesHierarchyBuilder.cs │ │ │ │ ├── TypeInferer.cs │ │ │ │ └── UsedAsTypeHelper.cs │ │ │ ├── TypeNamesComparer.cs │ │ │ ├── TypeSpecificContext.cs │ │ │ ├── UsageBasedExpressionFixer.cs │ │ │ ├── Utilities.cs │ │ │ ├── WriterContext.cs │ │ │ ├── WriterContextServices │ │ │ │ ├── BaseWriterContextService.cs │ │ │ │ ├── FrameworkFoldersWriterContextService.cs │ │ │ │ ├── IWriterContextService.cs │ │ │ │ ├── SimpleWriterContextService.cs │ │ │ │ ├── TypeCollisionWriterContextService.cs │ │ │ │ ├── TypeDeclarationsWriterContextService.cs │ │ │ │ └── WinRTWriterContextService.cs │ │ │ ├── YieldData.cs │ │ │ ├── YieldExceptionHandlerInfo.cs │ │ │ ├── YieldExceptionHandlerType.cs │ │ │ ├── YieldFieldsInformation.cs │ │ │ └── YieldStateMachineVersion.cs │ │ │ ├── External │ │ │ ├── Architecture.cs │ │ │ ├── AssemblyIdentifier.cs │ │ │ ├── DecompilationPreferences.cs │ │ │ ├── ExceptionThrownNotifier.cs │ │ │ ├── ExternallyVisibleDecompilationUtilities.cs │ │ │ ├── FileGeneratedInfo.cs │ │ │ ├── IFileGenerationNotifier.cs │ │ │ ├── Interfaces │ │ │ │ ├── IDecompilationPreferences.cs │ │ │ │ ├── IDecompiler.cs │ │ │ │ ├── IExceptionThrownNotifier.cs │ │ │ │ ├── IFileGeneratedInfo.cs │ │ │ │ ├── IFrameworkResolver.cs │ │ │ │ ├── IFrameworkResolverWithUserInteraction.cs │ │ │ │ ├── ITypeGeneratedInfo.cs │ │ │ │ └── IUniqueMemberIdentifier.cs │ │ │ ├── MemberIdentifier.cs │ │ │ ├── TypeGeneratedInfo.cs │ │ │ └── UniqueMemberIdentifier.cs │ │ │ ├── Languages │ │ │ ├── AttributeWriter.cs │ │ │ ├── BaseAssemblyAttributeWriter.cs │ │ │ ├── BaseImperativeLanguageWriter.cs │ │ │ ├── BaseLanguage.cs │ │ │ ├── BaseLanguageWriter.cs │ │ │ ├── CSharp │ │ │ │ ├── CSharpAssemblyAttributeWriter.cs │ │ │ │ ├── CSharpAttributeWriter.cs │ │ │ │ ├── CSharpKeyWordWriter.cs │ │ │ │ ├── CSharpVersion.cs │ │ │ │ ├── CSharpWriter.cs │ │ │ │ └── ICSharp.cs │ │ │ ├── CodeMappingInfo.cs │ │ │ ├── CodePosition.cs │ │ │ ├── CodeSpan.cs │ │ │ ├── IAssemblyAttributeWriter.cs │ │ │ ├── IExceptionFormatter.cs │ │ │ ├── IFormatter.cs │ │ │ ├── IKeyWordWriter.cs │ │ │ ├── IL │ │ │ │ ├── CodeMappings.cs │ │ │ │ ├── FlagsWriter.cs │ │ │ │ ├── ILBlock.cs │ │ │ │ ├── ILBlockType.cs │ │ │ │ ├── ILHelpers.cs │ │ │ │ ├── ILRange.cs │ │ │ │ ├── IntermediateLanguage.cs │ │ │ │ ├── IntermediateLanguageAssemblyAttributeWriter.cs │ │ │ │ ├── IntermediateLanguageAttributeWriter.cs │ │ │ │ ├── IntermediateLanguageWriter.cs │ │ │ │ ├── MemberMapping.cs │ │ │ │ ├── OpCodeInfo.cs │ │ │ │ └── SourceCodeMapping.cs │ │ │ ├── ILanguage.cs │ │ │ ├── ILanguageTestCaseWriter.cs │ │ │ ├── ILanguageWriter.cs │ │ │ ├── INamespaceLanguageWriter.cs │ │ │ ├── IWriterSettings.cs │ │ │ ├── InfinityConstants.cs │ │ │ ├── LanguageFactory.cs │ │ │ ├── MemberNamingUtils.cs │ │ │ ├── NamespaceImperativeLanguageWriter.cs │ │ │ ├── OffsetSpan.cs │ │ │ ├── PlainTextFormatter.cs │ │ │ ├── SimpleExceptionFormatter.cs │ │ │ ├── TestCaseExceptionFormatter.cs │ │ │ ├── TestCaseWriters │ │ │ │ ├── IntermediateDecompilationCSharpLanguageWriter.cs │ │ │ │ └── TestCaseCSharpWriter.cs │ │ │ ├── VisualBasic │ │ │ │ ├── IVisualBasic.cs │ │ │ │ ├── StatementState.cs │ │ │ │ ├── VisualBasicAssemblyAttributeWriter.cs │ │ │ │ ├── VisualBasicAttributeWriter.cs │ │ │ │ ├── VisualBasicKeyWordWriter.cs │ │ │ │ ├── VisualBasicVersion.cs │ │ │ │ └── VisualBasicWriter.cs │ │ │ ├── WriterSettings.cs │ │ │ └── WritingInfo.cs │ │ │ ├── Pattern │ │ │ ├── Assignment.cs │ │ │ ├── Binary.cs │ │ │ ├── CodePattern.cs │ │ │ ├── CodePattern_TNode_.cs │ │ │ ├── Constant.cs │ │ │ ├── ContextData.cs │ │ │ ├── ContextVariableReference.cs │ │ │ ├── ExpressionStatement.cs │ │ │ ├── Extensions.cs │ │ │ ├── ICodePattern.cs │ │ │ ├── Literal.cs │ │ │ ├── MatchContext.cs │ │ │ ├── MatchData.cs │ │ │ ├── SafeCast.cs │ │ │ └── VariableReference.cs │ │ │ ├── Steps │ │ │ ├── ArrayVariablesStep.cs │ │ │ ├── AssignOutParametersStep.cs │ │ │ ├── BaseStateMachineRemoverStep.cs │ │ │ ├── CanCastStep.cs │ │ │ ├── CaseGotoTransformerStep.cs │ │ │ ├── CastEnumsToIntegersStep.cs │ │ │ ├── CastIntegersStep.cs │ │ │ ├── CodePatterns │ │ │ │ ├── ArrayInitialisationPattern.cs │ │ │ │ ├── BaseInitialisationPattern.cs │ │ │ │ ├── CatchClausesFilterPattern.cs │ │ │ │ ├── CodePatternsContext.cs │ │ │ │ ├── CollectionInitializationPattern.cs │ │ │ │ ├── CommonPatterns.cs │ │ │ │ ├── DefineUseCount.cs │ │ │ │ ├── ICodePattern.cs │ │ │ │ ├── InitializationPattern.cs │ │ │ │ ├── MultiAssignPattern.cs │ │ │ │ ├── NullCoalescingPattern.cs │ │ │ │ ├── ObjectInitialisationPattern.cs │ │ │ │ ├── RaiseEventPattern.cs │ │ │ │ ├── TernaryConditionPattern.cs │ │ │ │ ├── TernaryConditionPatternAgressive.cs │ │ │ │ ├── VariableInliningPattern.cs │ │ │ │ └── VariableInliningPatternAggressive.cs │ │ │ ├── CodePatternsStep.cs │ │ │ ├── CombinedTransformerStep.cs │ │ │ ├── CreateCompilerOptimizedSwitchByStringStatementsStep.cs │ │ │ ├── CreateIfElseIfStatementsStep.cs │ │ │ ├── DeclareTopLevelVariables.cs │ │ │ ├── DeclareVariablesOnFirstAssignment.cs │ │ │ ├── DeduceImplicitDelegates.cs │ │ │ ├── DependsOnAnalysisStep.cs │ │ │ ├── DetermineCtorInvocationStep.cs │ │ │ ├── DetermineDestructorStep.cs │ │ │ ├── DetermineNotSupportedVBCodeStep.cs │ │ │ ├── DynamicVariables │ │ │ │ ├── CallSiteBinderType.cs │ │ │ │ ├── CallSiteInfo.cs │ │ │ │ ├── CallSiteInvocationReplacer.cs │ │ │ │ └── DynamicElementAnalyzer.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── ExpressionComparer.cs │ │ │ ├── FieldAssignmentAnalysisStep.cs │ │ │ ├── FindAutoBoxesStep.cs │ │ │ ├── FixBinaryExpressionsStep.cs │ │ │ ├── FixMethodOverloadsStep.cs │ │ │ ├── FixSwitchCasesStep.cs │ │ │ ├── FixSwitchConditionStep.cs │ │ │ ├── HandleVirtualMethodInvocations.cs │ │ │ ├── IDecompilationStep.cs │ │ │ ├── Inflector.cs │ │ │ ├── InstructionMappingsCheck.cs │ │ │ ├── ManagedPointersRemovalStep.cs │ │ │ ├── MapUnconditionalBranchesStep.cs │ │ │ ├── Matcher.cs │ │ │ ├── MergeUnaryAndBinaryExpression.cs │ │ │ ├── Negator.cs │ │ │ ├── OperatorStep.cs │ │ │ ├── OutParameterAssignmentAnalysisStep.cs │ │ │ ├── ParenthesizeExpressionsStep.cs │ │ │ ├── PropertyRecognizer.cs │ │ │ ├── RebuildAnonymousDelegatesStep.cs │ │ │ ├── RebuildAnonymousTypesInitializersStep.cs │ │ │ ├── RebuildAsyncStatementsStep.cs │ │ │ ├── RebuildCatchClausesFilterStep.cs │ │ │ ├── RebuildDoWhileStatements.cs │ │ │ ├── RebuildEventsStep.cs │ │ │ ├── RebuildExpressionTreesStep.cs │ │ │ ├── RebuildFixedStatements.cs │ │ │ ├── RebuildForStatements.cs │ │ │ ├── RebuildForeachArrayStatements.cs │ │ │ ├── RebuildForeachStatements.cs │ │ │ ├── RebuildLambdaExpressions.cs │ │ │ ├── RebuildLinqQueriesStep.cs │ │ │ ├── RebuildLockStatements.cs │ │ │ ├── RebuildUsingStatements.cs │ │ │ ├── RebuildVBForStatements.cs │ │ │ ├── RebuildYieldStatementsStep.cs │ │ │ ├── RemoveAsyncStateMachineStep.cs │ │ │ ├── RemoveCompilerOptimizationsStep.cs │ │ │ ├── RemoveConditionOnlyVariables.cs │ │ │ ├── RemoveDelegateCachingStep.cs │ │ │ ├── RemoveLastReturn.cs │ │ │ ├── RemovePrivateImplementationDetailsStep.cs │ │ │ ├── RemoveUnreachableBlocksStep.cs │ │ │ ├── RemoveUnusedVariablesStep.cs │ │ │ ├── RemoveYieldStateMachineStep.cs │ │ │ ├── RenameEnumValues.cs │ │ │ ├── RenameSplitPropertiesMethodsAndBackingFields.cs │ │ │ ├── RenameVBVariables.cs │ │ │ ├── RenameVariables.cs │ │ │ ├── ReplaceDelegateInvokeStep.cs │ │ │ ├── ResolveDynamicVariablesStep.cs │ │ │ ├── SelfAssignment.cs │ │ │ ├── SentinelStep.cs │ │ │ ├── SimpleDereferencer.cs │ │ │ ├── SwitchByString │ │ │ │ ├── RebuildSwitchByString.cs │ │ │ │ ├── SwitchByStringFixer.cs │ │ │ │ └── SwitchByStringMatcher.cs │ │ │ ├── TransformCatchClausesFilterExpressionStep.cs │ │ │ ├── TransformMemberHandlersStep.cs │ │ │ ├── TypeOfStep.cs │ │ │ ├── UnsafeMethodBodyStep.cs │ │ │ ├── VBCodePatternsStep.cs │ │ │ ├── VBSelfAssignment.cs │ │ │ ├── VariableAssignmentAnalysisStep.cs │ │ │ ├── VariableMatcher.cs │ │ │ ├── VisualBasicRemoveDelegateCachingStep.cs │ │ │ └── VisualBasicRemoveUnusedVariablesStep.cs │ │ │ ├── SupportedLanguages.cs │ │ │ ├── ThreadSafeWeakAssemblyResolver.cs │ │ │ ├── TwoDimensionalString.cs │ │ │ ├── WeakAssemblyResolver.cs │ │ │ └── XmlDocumentationReaders │ │ │ ├── DocumentationManager.cs │ │ │ ├── XmlDocumentationReader.cs │ │ │ └── XmlDocumentationResolver.cs │ ├── Mix.Cms.Lib │ │ ├── Mix.Cms.Lib.csproj │ │ ├── Mix.Cms.Lib.sln │ │ ├── Mix.Cms.Lib │ │ │ ├── Attributes │ │ │ │ └── RequestFormSizeLimitAttribute.cs │ │ │ ├── Controllers │ │ │ │ ├── BaseRestApiController_TDbContext, TModel, TView, TRead_.cs │ │ │ │ └── BaseRestApiController_TDbContext, TModel, TView_.cs │ │ │ ├── Extensions │ │ │ │ ├── MixUrlHelperExtensions.cs │ │ │ │ └── ServiceCollectionExtensions.cs │ │ │ ├── Helpers │ │ │ │ ├── InMemoryMessage.cs │ │ │ │ └── ODataHelper_TModel_.cs │ │ │ ├── MiddleWares │ │ │ │ ├── IpRestrictionMiddleware.cs │ │ │ │ └── IpSecuritySettings.cs │ │ │ ├── Migrations │ │ │ │ ├── Init.cs │ │ │ │ ├── MixCmsAccount │ │ │ │ │ ├── Init.cs │ │ │ │ │ └── MixCmsAccountContextModelSnapshot.cs │ │ │ │ └── MixCmsContextModelSnapshot.cs │ │ │ ├── MixCmsHelper.cs │ │ │ ├── MixConstants.cs │ │ │ ├── MixEnums.cs │ │ │ ├── Models.Account │ │ │ │ ├── AspNetRoleClaims.cs │ │ │ │ ├── AspNetRoles.cs │ │ │ │ ├── AspNetUserClaims.cs │ │ │ │ ├── AspNetUserLogins.cs │ │ │ │ ├── AspNetUserRoles.cs │ │ │ │ ├── AspNetUserTokens.cs │ │ │ │ ├── AspNetUsers.cs │ │ │ │ ├── Clients.cs │ │ │ │ ├── MixCmsAccountContext.cs │ │ │ │ ├── MixDbContext.cs │ │ │ │ ├── RefreshTokens.cs │ │ │ │ └── mix_structure_accountContext.cs │ │ │ ├── Models.Cms │ │ │ │ ├── MixAttributeField.cs │ │ │ │ ├── MixAttributeSet.cs │ │ │ │ ├── MixAttributeSetData.cs │ │ │ │ ├── MixAttributeSetReference.cs │ │ │ │ ├── MixAttributeSetValue.cs │ │ │ │ ├── MixCache.cs │ │ │ │ ├── MixCmsContext.cs │ │ │ │ ├── MixCmsUser.cs │ │ │ │ ├── MixConfiguration.cs │ │ │ │ ├── MixCulture.cs │ │ │ │ ├── MixFile.cs │ │ │ │ ├── MixLanguage.cs │ │ │ │ ├── MixMedia.cs │ │ │ │ ├── MixModule.cs │ │ │ │ ├── MixModuleData.cs │ │ │ │ ├── MixModulePost.cs │ │ │ │ ├── MixPage.cs │ │ │ │ ├── MixPageModule.cs │ │ │ │ ├── MixPagePost.cs │ │ │ │ ├── MixPortalPage.cs │ │ │ │ ├── MixPortalPageNavigation.cs │ │ │ │ ├── MixPortalPageRole.cs │ │ │ │ ├── MixPost.cs │ │ │ │ ├── MixPostMedia.cs │ │ │ │ ├── MixPostModule.cs │ │ │ │ ├── MixRelatedAttributeData.cs │ │ │ │ ├── MixRelatedAttributeSet.cs │ │ │ │ ├── MixRelatedData.cs │ │ │ │ ├── MixRelatedPost.cs │ │ │ │ ├── MixTemplate.cs │ │ │ │ ├── MixTheme.cs │ │ │ │ └── MixUrlAlias.cs │ │ │ ├── Repositories │ │ │ │ ├── CommonRepository.cs │ │ │ │ ├── FileRepository.cs │ │ │ │ └── TemplateRepository.cs │ │ │ ├── Services │ │ │ │ ├── InitCmsService.cs │ │ │ │ ├── MixCacheService.cs │ │ │ │ └── MixService.cs │ │ │ └── ViewModels │ │ │ │ ├── Account │ │ │ │ ├── AccessTokenViewModel.cs │ │ │ │ ├── ChangePasswordViewModel.cs │ │ │ │ ├── MixRegisterViewModel.cs │ │ │ │ ├── MixRoles │ │ │ │ │ ├── ReadViewModel.cs │ │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixUsers │ │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── NavUserRoleViewModel.cs │ │ │ │ ├── RefreshTokenViewModel.cs │ │ │ │ ├── RoleViewModel.cs │ │ │ │ ├── UserInfoViewModel.cs │ │ │ │ └── UserRoleViewModel.cs │ │ │ │ ├── ApiModuleDataValueViewModel.cs │ │ │ │ ├── DashboardViewModel.cs │ │ │ │ ├── DataValueViewModel.cs │ │ │ │ ├── ExtraProperty.cs │ │ │ │ ├── FileInputModel.cs │ │ │ │ ├── FilePageViewModel.cs │ │ │ │ ├── FileViewModel.cs │ │ │ │ ├── GlobalSettingsViewModel.cs │ │ │ │ ├── InitCulture.cs │ │ │ │ ├── ListAction_T_.cs │ │ │ │ ├── MixAttributeFields │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixAttributeSetDatas │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ExportViewModel.cs │ │ │ │ ├── FormPortalViewModel.cs │ │ │ │ ├── FormViewModel.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── MenuItem.cs │ │ │ │ ├── Navigation.cs │ │ │ │ ├── NavigationViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixAttributeSetValues │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── NavigationViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixAttributeSets │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixConfigurations │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ ├── SystemConfigurationViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixCultures │ │ │ │ ├── ReadViewModel.cs │ │ │ │ ├── SystemCultureViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixInit │ │ │ │ └── InitCmsViewModel.cs │ │ │ │ ├── MixLanguages │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── SystemLanguageViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixMedias │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixModuleDatas │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixModulePosts │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixModules │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── ReadListItemViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixPageModules │ │ │ │ ├── ImportViewModel.cs │ │ │ │ └── ReadMvcViewModel.cs │ │ │ │ ├── MixPagePosts │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixPages │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── ReadListItemViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixPortalPagePortalPages │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixPortalPageRoles │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixPortalPages │ │ │ │ ├── ReadRolePermissionViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ ├── UpdateRolePermissionViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixPostMedias │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixPostModules │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixPostPosts │ │ │ │ └── ReadViewModel.cs │ │ │ │ ├── MixPosts │ │ │ │ ├── CreateViewModel.cs │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── ReadListItemViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ ├── SyncViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixRelatedAttributeDatas │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── FormViewModel.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── NavigationViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixRelatedAttributeSets │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixRelatedDatas │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ReadMvcViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixTemplates │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── ImportViewModel.cs │ │ │ │ ├── InitViewModel.cs │ │ │ │ ├── ReadListItemViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixThemes │ │ │ │ ├── DeleteViewModel.cs │ │ │ │ ├── InitViewModel.cs │ │ │ │ ├── ReadViewModel.cs │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MixUrlAliases │ │ │ │ └── UpdateViewModel.cs │ │ │ │ ├── MobileComponent.cs │ │ │ │ ├── ModuleFieldViewModel.cs │ │ │ │ ├── SiteMap.cs │ │ │ │ ├── SiteStructureViewModel.cs │ │ │ │ ├── SitemapLanguage.cs │ │ │ │ └── TemplateViewModel.cs │ │ ├── Mix.Cms.LibReferences │ │ │ └── netstandard.dll │ │ ├── Mix.Cms.Messenger.Migrations │ │ │ ├── MixChatServiceContextModelSnapshot.cs │ │ │ └── init.cs │ │ ├── Mix.Cms.Messenger.Models.Data │ │ │ ├── MixChatServiceContext.cs │ │ │ ├── MixMessengerHubRoom.cs │ │ │ ├── MixMessengerMessage.cs │ │ │ ├── MixMessengerNavRoomUser.cs │ │ │ ├── MixMessengerNavTeamUser.cs │ │ │ ├── MixMessengerTeam.cs │ │ │ ├── MixMessengerUser.cs │ │ │ ├── MixMessengerUserDevice.cs │ │ │ └── sw_chatContext.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NorthwindTraders.NetStandard2.1 │ │ ├── Application │ │ │ ├── Categories.Commands.DeleteCategory │ │ │ │ └── DeleteCategoryCommand.cs │ │ │ ├── Categories.Commands.UpsertCategory │ │ │ │ └── UpsertCategoryCommand.cs │ │ │ ├── Categories.Queries.GetCategoriesList │ │ │ │ ├── CategoriesListVm.cs │ │ │ │ ├── CategoryDto.cs │ │ │ │ ├── GetCategoriesListQuery.cs │ │ │ │ └── GetCategoriesListQueryHandler.cs │ │ │ ├── Common.Behaviours │ │ │ │ ├── RequestLogger_TRequest_.cs │ │ │ │ ├── RequestPerformanceBehaviour_TRequest, TResponse_.cs │ │ │ │ └── RequestValidationBehavior_TRequest, TResponse_.cs │ │ │ ├── Common.Exceptions │ │ │ │ ├── BadRequestException.cs │ │ │ │ ├── DeleteFailureException.cs │ │ │ │ ├── NotFoundException.cs │ │ │ │ └── ValidationException.cs │ │ │ ├── Common.Interfaces │ │ │ │ ├── ICsvFileBuilder.cs │ │ │ │ ├── ICurrentUserService.cs │ │ │ │ ├── INorthwindDbContext.cs │ │ │ │ ├── INotificationService.cs │ │ │ │ └── IUserManager.cs │ │ │ ├── Common.Mappings │ │ │ │ ├── IMapFrom_T_.cs │ │ │ │ └── MappingProfile.cs │ │ │ ├── Common.Models │ │ │ │ └── Result.cs │ │ │ ├── Customers.Commands.CreateCustomer │ │ │ │ ├── CreateCustomerCommand.cs │ │ │ │ ├── CreateCustomerCommandValidator.cs │ │ │ │ └── CustomerCreated.cs │ │ │ ├── Customers.Commands.DeleteCustomer │ │ │ │ ├── DeleteCustomerCommand.cs │ │ │ │ ├── DeleteCustomerCommandHandler.cs │ │ │ │ └── DeleteCustomerCommandValidator.cs │ │ │ ├── Customers.Commands.UpdateCustomer │ │ │ │ ├── UpdateCustomerCommand.cs │ │ │ │ └── UpdateCustomerCommandValidator.cs │ │ │ ├── Customers.Queries.GetCustomerDetail │ │ │ │ ├── CustomerDetailVm.cs │ │ │ │ ├── GetCustomerDetailQuery.cs │ │ │ │ ├── GetCustomerDetailQueryHandler.cs │ │ │ │ └── GetCustomerDetailQueryValidator.cs │ │ │ ├── Customers.Queries.GetCustomersList │ │ │ │ ├── CustomerLookupDto.cs │ │ │ │ ├── CustomersListVm.cs │ │ │ │ ├── GetCustomersListQuery.cs │ │ │ │ └── GetCustomersListQueryHandler.cs │ │ │ ├── DependencyInjection.cs │ │ │ ├── Employees.Commands.DeleteEmployee │ │ │ │ └── DeleteEmployeeCommand.cs │ │ │ ├── Employees.Commands.UpsertEmployee │ │ │ │ └── UpsertEmployeeCommand.cs │ │ │ ├── Employees.Queries.GetEmployeeDetail │ │ │ │ ├── EmployeeDetailVm.cs │ │ │ │ ├── EmployeeTerritoryDto.cs │ │ │ │ └── GetEmployeeDetailQuery.cs │ │ │ ├── Employees.Queries.GetEmployeesList │ │ │ │ ├── EmployeeLookupDto.cs │ │ │ │ ├── EmployeesListVm.cs │ │ │ │ └── GetEmployeesListQuery.cs │ │ │ ├── Notifications.Models │ │ │ │ └── MessageDto.cs │ │ │ ├── Products.Commands.CreateProduct │ │ │ │ ├── CreateProductCommand.cs │ │ │ │ └── CreateProductCommandHandler.cs │ │ │ ├── Products.Commands.DeleteProduct │ │ │ │ ├── DeleteProductCommand.cs │ │ │ │ └── DeleteProductCommandHandler.cs │ │ │ ├── Products.Commands.UpdateProduct │ │ │ │ ├── UpdateProductCommand.cs │ │ │ │ └── UpdateProductCommandHandler.cs │ │ │ ├── Products.Queries.GetProductDetail │ │ │ │ ├── GetProductDetailQuery.cs │ │ │ │ ├── GetProductDetailQueryHandler.cs │ │ │ │ └── ProductDetailVm.cs │ │ │ ├── Products.Queries.GetProductsFile │ │ │ │ ├── GetProductsFileQuery.cs │ │ │ │ ├── GetProductsFileQueryHandler.cs │ │ │ │ ├── ProductRecordDto.cs │ │ │ │ └── ProductsFileVm.cs │ │ │ ├── Products.Queries.GetProductsList │ │ │ │ ├── GetProductsListQuery.cs │ │ │ │ ├── GetProductsListQueryHandler.cs │ │ │ │ ├── ProductDto.cs │ │ │ │ └── ProductsListVm.cs │ │ │ └── System.Commands.SeedSampleData │ │ │ │ ├── SeedSampleDataCommand.cs │ │ │ │ └── SeedSampleDataCommandHandler.cs │ │ ├── Northwind.Application.csproj │ │ ├── Northwind.Application.sln │ │ ├── Northwind.ApplicationReferences │ │ │ └── netstandard.dll │ │ ├── Persistence │ │ │ ├── EmployeeExtensions.cs │ │ │ ├── OrderExtensions.cs │ │ │ └── SampleDataSeeder.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OrchardCore │ │ ├── Microsoft.AspNetCore.Builder │ │ │ ├── ApplicationBuilderExtensions.cs │ │ │ └── PoweredByOrchardCoreExtensions.cs │ │ ├── Microsoft.Extensions.DependencyInjection │ │ │ ├── OrchardCoreBuilderExtensions.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── OrchardCore.BackgroundTasks │ │ │ └── BackgroundTaskScheduler.cs │ │ ├── OrchardCore.Environment.Cache │ │ │ └── Signal.cs │ │ ├── OrchardCore.Environment.Extensions │ │ │ ├── ExtensionDependencyStrategy.cs │ │ │ ├── ExtensionInfo.cs │ │ │ ├── ExtensionManager.cs │ │ │ ├── ExtensionPriorityStrategy.cs │ │ │ ├── Features │ │ │ │ ├── FeatureHash.cs │ │ │ │ ├── FeatureInfo.cs │ │ │ │ └── FeaturesProvider.cs │ │ │ ├── Manifests │ │ │ │ └── ManifestInfo.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ └── TypeFeatureProvider.cs │ │ ├── OrchardCore.Environment.Shell │ │ │ ├── Builders │ │ │ │ ├── CompositionStrategy.cs │ │ │ │ ├── FeatureAwareServiceCollection.cs │ │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ │ ├── ServiceProviderExtensions.cs │ │ │ │ ├── ShellContainerFactory.cs │ │ │ │ ├── ShellContextFactory.cs │ │ │ │ └── StartupBaseMock.cs │ │ │ ├── Configuration │ │ │ │ ├── ShellConfigurationSources.cs │ │ │ │ ├── ShellsConfigurationSources.cs │ │ │ │ └── ShellsSettingsSources.cs │ │ │ ├── Descriptor.Settings │ │ │ │ ├── AllFeaturesShellDescriptorManager.cs │ │ │ │ ├── ConfiguredFeaturesShellDescriptorManager.cs │ │ │ │ └── SetFeaturesShellDescriptorManager.cs │ │ │ ├── IShellStateUpdater.cs │ │ │ ├── NullShellStateManager.cs │ │ │ ├── RunningShellTable.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ ├── ShellDescriptorFeaturesManager.cs │ │ │ ├── ShellFeaturesManager.cs │ │ │ ├── ShellHost.cs │ │ │ ├── ShellOptionsSetup.cs │ │ │ ├── ShellSettingsManager.cs │ │ │ ├── ShellStateCoordinator.cs │ │ │ ├── ShellStateUpdater.cs │ │ │ └── SingleShellSettingsManager.cs │ │ ├── OrchardCore.Localization │ │ │ ├── BclCalendars.cs │ │ │ ├── DefaultCalendarManager.cs │ │ │ ├── DefaultCalendarSelector.cs │ │ │ ├── DefaultLocalizationService.cs │ │ │ ├── NullHtmlLocalizerFactory.cs │ │ │ └── NullStringLocalizerFactory.cs │ │ ├── OrchardCore.Modules │ │ │ ├── Clock.cs │ │ │ ├── DefaultOrchardHelper.cs │ │ │ ├── IPoweredByMiddlewareOptions.cs │ │ │ ├── LocalClock.cs │ │ │ ├── ModularBackgroundService.cs │ │ │ ├── ModularTenantContainerMiddleware.cs │ │ │ ├── ModularTenantRouterMiddleware.cs │ │ │ ├── PoweredByMiddleware.cs │ │ │ ├── PoweredByMiddlewareOptions.cs │ │ │ ├── RunningShellTableExtensions.cs │ │ │ ├── ShellExtensions.cs │ │ │ └── TimeZone.cs │ │ ├── OrchardCore.csproj │ │ ├── OrchardCore.sln │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Piranha │ │ ├── Piranha.csproj │ │ ├── Piranha.sln │ │ ├── Piranha │ │ │ ├── Api.cs │ │ │ ├── App.cs │ │ │ ├── Cache │ │ │ │ ├── CacheLevel.cs │ │ │ │ ├── DistributedCache.cs │ │ │ │ ├── MemoryCache.cs │ │ │ │ ├── MemoryCacheWithClone.cs │ │ │ │ ├── SimpleCache.cs │ │ │ │ └── SimpleCacheWithClone.cs │ │ │ ├── Config.cs │ │ │ ├── Extend │ │ │ │ ├── Block.cs │ │ │ │ ├── BlockGroup.cs │ │ │ │ ├── BlockGroupTypeAttribute.cs │ │ │ │ ├── BlockItemTypeAttribute.cs │ │ │ │ ├── BlockTypeAttribute.cs │ │ │ │ ├── Blocks │ │ │ │ │ ├── AudioBlock.cs │ │ │ │ │ ├── ColumnBlock.cs │ │ │ │ │ ├── HtmlBlock.cs │ │ │ │ │ ├── HtmlColumnBlock.cs │ │ │ │ │ ├── ImageAspect.cs │ │ │ │ │ ├── ImageBlock.cs │ │ │ │ │ ├── ImageGalleryBlock.cs │ │ │ │ │ ├── PageBlock.cs │ │ │ │ │ ├── PostBlock.cs │ │ │ │ │ ├── QuoteBlock.cs │ │ │ │ │ ├── SeparatorBlock.cs │ │ │ │ │ ├── TextBlock.cs │ │ │ │ │ └── VideoBlock.cs │ │ │ │ ├── DefaultMarkdown.cs │ │ │ │ ├── Field.cs │ │ │ │ ├── FieldAttribute.cs │ │ │ │ ├── FieldDescriptionAttribute.cs │ │ │ │ ├── FieldTypeAttribute.cs │ │ │ │ ├── Fields │ │ │ │ │ ├── AudioField.cs │ │ │ │ │ ├── CheckBoxField.cs │ │ │ │ │ ├── DataSelectFieldBase.cs │ │ │ │ │ ├── DataSelectFieldItem.cs │ │ │ │ │ ├── DataSelectField_T_.cs │ │ │ │ │ ├── DateField.cs │ │ │ │ │ ├── DocumentField.cs │ │ │ │ │ ├── HtmlField.cs │ │ │ │ │ ├── ImageField.cs │ │ │ │ │ ├── MarkdownField.cs │ │ │ │ │ ├── MediaField.cs │ │ │ │ │ ├── MediaFieldBase_T_.cs │ │ │ │ │ ├── NumberField.cs │ │ │ │ │ ├── PageField.cs │ │ │ │ │ ├── PostField.cs │ │ │ │ │ ├── ReadonlyField.cs │ │ │ │ │ ├── SelectFieldBase.cs │ │ │ │ │ ├── SelectFieldItem.cs │ │ │ │ │ ├── SelectField_T_.cs │ │ │ │ │ ├── SimpleField_T_.cs │ │ │ │ │ ├── StringField.cs │ │ │ │ │ ├── TextField.cs │ │ │ │ │ └── VideoField.cs │ │ │ │ ├── IField.cs │ │ │ │ ├── IMarkdown.cs │ │ │ │ ├── IModule.cs │ │ │ │ ├── ISearchable.cs │ │ │ │ ├── ISerializer.cs │ │ │ │ ├── RegionAttribute.cs │ │ │ │ ├── RegionDescriptionAttribute.cs │ │ │ │ └── Serializers │ │ │ │ │ ├── AudioFieldSerializer.cs │ │ │ │ │ ├── CheckBoxFieldSerializer_T_.cs │ │ │ │ │ ├── DataSelectFieldSerializer_T_.cs │ │ │ │ │ ├── DateFieldSerializer.cs │ │ │ │ │ ├── DocumentFieldSerializer.cs │ │ │ │ │ ├── ImageFieldSerializer.cs │ │ │ │ │ ├── IntegerFieldSerializer_T_.cs │ │ │ │ │ ├── MediaFieldSerializer.cs │ │ │ │ │ ├── PageFieldSerializer.cs │ │ │ │ │ ├── PostFieldSerializer.cs │ │ │ │ │ ├── SelectFieldSerializer_T_.cs │ │ │ │ │ ├── StringFieldSerializer_T_.cs │ │ │ │ │ └── VideoFieldSerializer.cs │ │ │ ├── IApi.cs │ │ │ ├── ICache.cs │ │ │ ├── IImageProcessor.cs │ │ │ ├── ISearch.cs │ │ │ ├── ISecurity.cs │ │ │ ├── IStorage.cs │ │ │ ├── IStorageSession.cs │ │ │ ├── Models │ │ │ │ ├── Alias.cs │ │ │ │ ├── ArchivePage_T, TPost_.cs │ │ │ │ ├── ArchivePage_T_.cs │ │ │ │ ├── BinaryMediaContent.cs │ │ │ │ ├── BlockDisplayMode.cs │ │ │ │ ├── Comment.cs │ │ │ │ ├── ContentBase.cs │ │ │ │ ├── ContentTypeBase.cs │ │ │ │ ├── ContentTypeEditor.cs │ │ │ │ ├── ContentTypeRoute.cs │ │ │ │ ├── DynamicPage.cs │ │ │ │ ├── DynamicPost.cs │ │ │ │ ├── DynamicSiteContent.cs │ │ │ │ ├── FieldOption.cs │ │ │ │ ├── FieldType.cs │ │ │ │ ├── GenericPage_T_.cs │ │ │ │ ├── IArchivePage.cs │ │ │ │ ├── IBlockContent.cs │ │ │ │ ├── ICommentModel.cs │ │ │ │ ├── IContentInfo.cs │ │ │ │ ├── IDynamicContent.cs │ │ │ │ ├── IMeta.cs │ │ │ │ ├── IRegionList.cs │ │ │ │ ├── Media.cs │ │ │ │ ├── MediaBase.cs │ │ │ │ ├── MediaContent.cs │ │ │ │ ├── MediaFolder.cs │ │ │ │ ├── MediaFolderSimple.cs │ │ │ │ ├── MediaStructure.cs │ │ │ │ ├── MediaStructureItem.cs │ │ │ │ ├── MediaType.cs │ │ │ │ ├── MediaVersion.cs │ │ │ │ ├── PageBase.cs │ │ │ │ ├── PageInfo.cs │ │ │ │ ├── PageType.cs │ │ │ │ ├── Page_T_.cs │ │ │ │ ├── Param.cs │ │ │ │ ├── PostArchive.cs │ │ │ │ ├── PostArchive_T_.cs │ │ │ │ ├── PostBase.cs │ │ │ │ ├── PostInfo.cs │ │ │ │ ├── PostType.cs │ │ │ │ ├── Post_T_.cs │ │ │ │ ├── RedirectType.cs │ │ │ │ ├── RegionDisplayMode.cs │ │ │ │ ├── RegionList_T_.cs │ │ │ │ ├── RegionType.cs │ │ │ │ ├── RoutedContentBase.cs │ │ │ │ ├── Site.cs │ │ │ │ ├── SiteContentBase.cs │ │ │ │ ├── SiteContent_T_.cs │ │ │ │ ├── SiteType.cs │ │ │ │ ├── Sitemap.cs │ │ │ │ ├── SitemapItem.cs │ │ │ │ ├── StreamMediaContent.cs │ │ │ │ ├── StructureItem_TStructure, T_.cs │ │ │ │ ├── Structure_TThis, T_.cs │ │ │ │ ├── Taxonomy.cs │ │ │ │ └── TaxonomyType.cs │ │ │ ├── NoCoverageAttribute.cs │ │ │ ├── PiranhaRouteConfig.cs │ │ │ ├── PiranhaServiceBuilder.cs │ │ │ ├── Repositories │ │ │ │ ├── IAliasRepository.cs │ │ │ │ ├── IArchiveRepository.cs │ │ │ │ ├── IMediaRepository.cs │ │ │ │ ├── IPageRepository.cs │ │ │ │ ├── IPageTypeRepository.cs │ │ │ │ ├── IParamRepository.cs │ │ │ │ ├── IPostRepository.cs │ │ │ │ ├── IPostTypeRepository.cs │ │ │ │ ├── ISiteRepository.cs │ │ │ │ └── ISiteTypeRepository.cs │ │ │ ├── Runtime │ │ │ │ ├── AppBlock.cs │ │ │ │ ├── AppBlockList.cs │ │ │ │ ├── AppDataItem.cs │ │ │ │ ├── AppDataList_T, TItem_.cs │ │ │ │ ├── AppField.cs │ │ │ │ ├── AppFieldList.cs │ │ │ │ ├── AppModule.cs │ │ │ │ ├── AppModuleList.cs │ │ │ │ ├── ContentTypeList_T_.cs │ │ │ │ ├── HookManager.cs │ │ │ │ ├── MediaManager.cs │ │ │ │ └── SerializerManager.cs │ │ │ ├── Security │ │ │ │ ├── Permission.cs │ │ │ │ ├── PermissionItem.cs │ │ │ │ └── PermissionManager.cs │ │ │ ├── Services │ │ │ │ ├── AliasService.cs │ │ │ │ ├── ArchiveService.cs │ │ │ │ ├── ContentFactory.cs │ │ │ │ ├── IAliasService.cs │ │ │ │ ├── IArchiveService.cs │ │ │ │ ├── IContentFactory.cs │ │ │ │ ├── IMediaService.cs │ │ │ │ ├── IPageService.cs │ │ │ │ ├── IPageTypeService.cs │ │ │ │ ├── IParamService.cs │ │ │ │ ├── IPostService.cs │ │ │ │ ├── IPostTypeService.cs │ │ │ │ ├── ISiteService.cs │ │ │ │ ├── ISiteTypeService.cs │ │ │ │ ├── MediaService.cs │ │ │ │ ├── PageService.cs │ │ │ │ ├── PageTypeService.cs │ │ │ │ ├── ParamService.cs │ │ │ │ ├── PostService.cs │ │ │ │ ├── PostTypeService.cs │ │ │ │ ├── SiteService.cs │ │ │ │ └── SiteTypeService.cs │ │ │ ├── Utils.cs │ │ │ └── Web │ │ │ │ ├── AliasRouter.cs │ │ │ │ ├── ArchiveRouter.cs │ │ │ │ ├── HttpCacheInfo.cs │ │ │ │ ├── IRouteResponse.cs │ │ │ │ ├── PageRouter.cs │ │ │ │ ├── PostRouter.cs │ │ │ │ ├── RouteResponse.cs │ │ │ │ └── StartPageRouter.cs │ │ ├── PiranhaExtensions.cs │ │ ├── PiranhaModelExtensions.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Squidex.7.2.0.Net6 │ │ ├── AspNetCoreGeneratedDocument │ │ │ ├── Areas_Api_Views_Shared_Docs.cs │ │ │ ├── Areas_IdentityServer_Views_Account_AccessDenied.cs │ │ │ ├── Areas_IdentityServer_Views_Account_Consent.cs │ │ │ ├── Areas_IdentityServer_Views_Account_LockedOut.cs │ │ │ ├── Areas_IdentityServer_Views_Account_Login.cs │ │ │ ├── Areas_IdentityServer_Views_Account_LogoutCompleted.cs │ │ │ ├── Areas_IdentityServer_Views_Error_Error.cs │ │ │ ├── Areas_IdentityServer_Views_Profile_Profile.cs │ │ │ ├── Areas_IdentityServer_Views_Setup_Setup.cs │ │ │ ├── Areas_IdentityServer_Views__Layout.cs │ │ │ ├── Areas_IdentityServer_Views__ViewImports.cs │ │ │ └── Areas_IdentityServer_Views__ViewStart.cs │ │ ├── Notifo.Areas.Account.Controllers.Connect │ │ │ └── AuthorizationController.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Squidex.Areas.Api.Controllers.Users.Assets.Avatar.png │ │ ├── Squidex.Areas.Frontend.Resources.frontend_en.json │ │ ├── Squidex.Areas.Frontend.Resources.frontend_it.json │ │ ├── Squidex.Areas.Frontend.Resources.frontend_nl.json │ │ ├── Squidex.Areas.Frontend.Resources.frontend_zh.json │ │ ├── Squidex.Pipeline.Squid.icon-happy-sm.svg │ │ ├── Squidex.Pipeline.Squid.icon-happy.svg │ │ ├── Squidex.Pipeline.Squid.icon-sad-sm.svg │ │ ├── Squidex.Pipeline.Squid.icon-sad.svg │ │ ├── Squidex.csproj │ │ ├── Squidex.sln │ │ ├── Squidex │ │ │ ├── Areas.Api.Config.OpenApi │ │ │ │ ├── CommonProcessor.cs │ │ │ │ ├── ErrorDtoProcessor.cs │ │ │ │ ├── FixProcessor.cs │ │ │ │ ├── OpenApiServices.cs │ │ │ │ ├── QueryExtensions.cs │ │ │ │ ├── QueryParamsProcessor.cs │ │ │ │ ├── ReflectionServices.cs │ │ │ │ ├── ScopesProcessor.cs │ │ │ │ ├── SecurityProcessor.cs │ │ │ │ ├── TagByGroupNameProcessor.cs │ │ │ │ ├── XmlResponseTypesProcessor.cs │ │ │ │ └── XmlTagProcessor.cs │ │ │ ├── Areas.Api.Controllers │ │ │ │ ├── Apps │ │ │ │ │ ├── AppAssetsController.cs │ │ │ │ │ ├── AppClientsController.cs │ │ │ │ │ ├── AppContributorsController.cs │ │ │ │ │ ├── AppImageController.cs │ │ │ │ │ ├── AppLanguagesController.cs │ │ │ │ │ ├── AppRolesController.cs │ │ │ │ │ ├── AppSettingsController.cs │ │ │ │ │ ├── AppWorkflowsController.cs │ │ │ │ │ ├── AppsController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AddLanguageDto.cs │ │ │ │ │ │ ├── AddRoleDto.cs │ │ │ │ │ │ ├── AddWorkflowDto.cs │ │ │ │ │ │ ├── AppDto.cs │ │ │ │ │ │ ├── AppLanguageDto.cs │ │ │ │ │ │ ├── AppLanguagesDto.cs │ │ │ │ │ │ ├── AppSettingsDto.cs │ │ │ │ │ │ ├── AssetScriptsDto.cs │ │ │ │ │ │ ├── ClientDto.cs │ │ │ │ │ │ ├── ClientsDto.cs │ │ │ │ │ │ ├── CreateAppDto.cs │ │ │ │ │ │ ├── CreateClientDto.cs │ │ │ │ │ │ ├── EditorDto.cs │ │ │ │ │ │ ├── PatternDto.cs │ │ │ │ │ │ ├── RoleDto.cs │ │ │ │ │ │ ├── RolesDto.cs │ │ │ │ │ │ ├── TransferToTeamDto.cs │ │ │ │ │ │ ├── UpdateAppDto.cs │ │ │ │ │ │ ├── UpdateAppSettingsDto.cs │ │ │ │ │ │ ├── UpdateAssetScriptsDto.cs │ │ │ │ │ │ ├── UpdateClientDto.cs │ │ │ │ │ │ ├── UpdateLanguageDto.cs │ │ │ │ │ │ ├── UpdateRoleDto.cs │ │ │ │ │ │ ├── UpdateWorkflowDto.cs │ │ │ │ │ │ ├── WorkflowDto.cs │ │ │ │ │ │ ├── WorkflowStepDto.cs │ │ │ │ │ │ ├── WorkflowTransitionDto.cs │ │ │ │ │ │ └── WorkflowsDto.cs │ │ │ │ ├── Assets │ │ │ │ │ ├── AssetContentController.cs │ │ │ │ │ ├── AssetFoldersController.cs │ │ │ │ │ ├── AssetsController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AnnotateAssetDto.cs │ │ │ │ │ │ ├── AssetContentQueryDto.cs │ │ │ │ │ │ ├── AssetDto.cs │ │ │ │ │ │ ├── AssetFolderDto.cs │ │ │ │ │ │ ├── AssetFolderScope.cs │ │ │ │ │ │ ├── AssetFoldersDto.cs │ │ │ │ │ │ ├── AssetMeta.cs │ │ │ │ │ │ ├── AssetsDto.cs │ │ │ │ │ │ ├── BulkUpdateAssetsDto.cs │ │ │ │ │ │ ├── BulkUpdateAssetsJobDto.cs │ │ │ │ │ │ ├── CreateAssetDto.cs │ │ │ │ │ │ ├── CreateAssetFolderDto.cs │ │ │ │ │ │ ├── DeleteAssetDto.cs │ │ │ │ │ │ ├── MoveAssetDto.cs │ │ │ │ │ │ ├── MoveAssetFolderDto.cs │ │ │ │ │ │ ├── RenameAssetFolderDto.cs │ │ │ │ │ │ └── UpsertAssetDto.cs │ │ │ │ ├── AssignContributorDto.cs │ │ │ │ ├── Backups │ │ │ │ │ ├── BackupContentController.cs │ │ │ │ │ ├── BackupsController.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── BackupJobDto.cs │ │ │ │ │ │ ├── BackupJobsDto.cs │ │ │ │ │ │ ├── RestoreJobDto.cs │ │ │ │ │ │ └── RestoreRequestDto.cs │ │ │ │ │ └── RestoreController.cs │ │ │ │ ├── BulkResultDto.cs │ │ │ │ ├── Comments │ │ │ │ │ ├── CommentsController.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── CommentDto.cs │ │ │ │ │ │ ├── CommentsDto.cs │ │ │ │ │ │ └── UpsertCommentDto.cs │ │ │ │ │ └── Notifications │ │ │ │ │ │ └── UserNotificationsController.cs │ │ │ │ ├── Contents │ │ │ │ │ ├── ContentOpenApiController.cs │ │ │ │ │ ├── ContentsController.cs │ │ │ │ │ ├── ContentsSharedController.cs │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── Builder.cs │ │ │ │ │ │ ├── OperationBuilder.cs │ │ │ │ │ │ ├── OperationsBuilder.cs │ │ │ │ │ │ └── SchemasOpenApiGenerator.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AllContentsByGetDto.cs │ │ │ │ │ │ ├── AllContentsByPostDto.cs │ │ │ │ │ │ ├── BulkUpdateContentsDto.cs │ │ │ │ │ │ ├── BulkUpdateContentsJobDto.cs │ │ │ │ │ │ ├── ChangeStatusDto.cs │ │ │ │ │ │ ├── ContentDto.cs │ │ │ │ │ │ ├── ContentsDto.cs │ │ │ │ │ │ ├── CreateContentDto.cs │ │ │ │ │ │ ├── DeleteContentDto.cs │ │ │ │ │ │ ├── ImportContentsDto.cs │ │ │ │ │ │ ├── ScheduleJobDto.cs │ │ │ │ │ │ ├── StatusInfoDto.cs │ │ │ │ │ │ └── UpsertContentDto.cs │ │ │ │ ├── ContributorDto.cs │ │ │ │ ├── ContributorsDto.cs │ │ │ │ ├── ContributorsMetadata.cs │ │ │ │ ├── Diagnostics │ │ │ │ │ └── DiagnosticsController.cs │ │ │ │ ├── Docs │ │ │ │ │ └── DocsController.cs │ │ │ │ ├── DocsVM.cs │ │ │ │ ├── EventConsumers │ │ │ │ │ ├── EventConsumersController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── EventConsumerDto.cs │ │ │ │ │ │ └── EventConsumersDto.cs │ │ │ │ ├── History │ │ │ │ │ ├── HistoryController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ └── HistoryEventDto.cs │ │ │ │ ├── LanguageDto.cs │ │ │ │ ├── Languages │ │ │ │ │ └── LanguagesController.cs │ │ │ │ ├── News │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── FeatureDto.cs │ │ │ │ │ │ └── FeaturesDto.cs │ │ │ │ │ ├── MyNewsOptions.cs │ │ │ │ │ ├── NewsController.cs │ │ │ │ │ └── Service │ │ │ │ │ │ └── FeaturesService.cs │ │ │ │ ├── Ping │ │ │ │ │ └── PingController.cs │ │ │ │ ├── Plans │ │ │ │ │ ├── AppPlansController.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ChangePlanDto.cs │ │ │ │ │ │ ├── PlanChangedDto.cs │ │ │ │ │ │ ├── PlanDto.cs │ │ │ │ │ │ ├── PlansDto.cs │ │ │ │ │ │ └── PlansLockedReason.cs │ │ │ │ │ └── TeamPlansController.cs │ │ │ │ ├── QueryDto.cs │ │ │ │ ├── QueryJsonDto.cs │ │ │ │ ├── RenameTagDto.cs │ │ │ │ ├── Rules │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Converters │ │ │ │ │ │ │ └── RuleTriggerDtoFactory.cs │ │ │ │ │ │ ├── CreateRuleDto.cs │ │ │ │ │ │ ├── RuleActionConverter.cs │ │ │ │ │ │ ├── RuleActionProcessor.cs │ │ │ │ │ │ ├── RuleDto.cs │ │ │ │ │ │ ├── RuleElementDto.cs │ │ │ │ │ │ ├── RuleElementPropertyDto.cs │ │ │ │ │ │ ├── RuleEventDto.cs │ │ │ │ │ │ ├── RuleEventsDto.cs │ │ │ │ │ │ ├── RuleTriggerDto.cs │ │ │ │ │ │ ├── RulesDto.cs │ │ │ │ │ │ ├── SimulatedRuleEventDto.cs │ │ │ │ │ │ ├── SimulatedRuleEventsDto.cs │ │ │ │ │ │ ├── Triggers │ │ │ │ │ │ │ ├── AssetChangedRuleTriggerDto.cs │ │ │ │ │ │ │ ├── CommentRuleTriggerDto.cs │ │ │ │ │ │ │ ├── ContentChangedRuleTriggerDto.cs │ │ │ │ │ │ │ ├── ContentChangedRuleTriggerSchemaDto.cs │ │ │ │ │ │ │ ├── ManualRuleTriggerDto.cs │ │ │ │ │ │ │ ├── SchemaChangedRuleTriggerDto.cs │ │ │ │ │ │ │ └── UsageRuleTriggerDto.cs │ │ │ │ │ │ └── UpdateRuleDto.cs │ │ │ │ │ └── RulesController.cs │ │ │ │ ├── Schemas │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── AddFieldDto.cs │ │ │ │ │ │ ├── ChangeCategoryDto.cs │ │ │ │ │ │ ├── ConfigureFieldRulesDto.cs │ │ │ │ │ │ ├── ConfigurePreviewUrlsDto.cs │ │ │ │ │ │ ├── ConfigureUIFieldsDto.cs │ │ │ │ │ │ ├── Converters │ │ │ │ │ │ │ └── FieldPropertiesDtoFactory.cs │ │ │ │ │ │ ├── CreateSchemaDto.cs │ │ │ │ │ │ ├── FieldDto.cs │ │ │ │ │ │ ├── FieldPropertiesDto.cs │ │ │ │ │ │ ├── FieldRuleDto.cs │ │ │ │ │ │ ├── Fields │ │ │ │ │ │ │ ├── ArrayFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── AssetsFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── BooleanFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── ComponentFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── ComponentsFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── DateTimeFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── GeolocationFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── JsonFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── NumberFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── ReferencesFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── StringFieldPropertiesDto.cs │ │ │ │ │ │ │ ├── TagsFieldPropertiesDto.cs │ │ │ │ │ │ │ └── UIFieldPropertiesDto.cs │ │ │ │ │ │ ├── NestedFieldDto.cs │ │ │ │ │ │ ├── ReorderFieldsDto.cs │ │ │ │ │ │ ├── SchemaDto.cs │ │ │ │ │ │ ├── SchemaPropertiesDto.cs │ │ │ │ │ │ ├── SchemaScriptsDto.cs │ │ │ │ │ │ ├── SchemasDto.cs │ │ │ │ │ │ ├── SynchronizeSchemaDto.cs │ │ │ │ │ │ ├── UpdateFieldDto.cs │ │ │ │ │ │ ├── UpdateSchemaDto.cs │ │ │ │ │ │ ├── UpsertSchemaDto.cs │ │ │ │ │ │ ├── UpsertSchemaFieldDto.cs │ │ │ │ │ │ └── UpsertSchemaNestedFieldDto.cs │ │ │ │ │ ├── SchemaFieldsController.cs │ │ │ │ │ └── SchemasController.cs │ │ │ │ ├── Search │ │ │ │ │ ├── Models │ │ │ │ │ │ └── SearchResultDto.cs │ │ │ │ │ └── SearchController.cs │ │ │ │ ├── Statistics │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── CallsUsageDtoDto.cs │ │ │ │ │ │ ├── CallsUsagePerDateDto.cs │ │ │ │ │ │ ├── CurrentStorageDto.cs │ │ │ │ │ │ ├── LogDownloadDto.cs │ │ │ │ │ │ └── StorageUsagePerDateDto.cs │ │ │ │ │ └── UsagesController.cs │ │ │ │ ├── Teams │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── CreateTeamDto.cs │ │ │ │ │ │ ├── TeamDto.cs │ │ │ │ │ │ └── UpdateTeamDto.cs │ │ │ │ │ ├── TeamContributorsController.cs │ │ │ │ │ └── TeamsController.cs │ │ │ │ ├── Templates │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── TemplateDetailsDto.cs │ │ │ │ │ │ ├── TemplateDto.cs │ │ │ │ │ │ └── TemplatesDto.cs │ │ │ │ │ └── TemplatesController.cs │ │ │ │ ├── Translations │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── TranslateDto.cs │ │ │ │ │ │ └── TranslationDto.cs │ │ │ │ │ └── TranslationsController.cs │ │ │ │ ├── UI │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── UISettingsDto.cs │ │ │ │ │ │ └── UpdateSettingDto.cs │ │ │ │ │ ├── MyUIOptions.cs │ │ │ │ │ └── UIController.cs │ │ │ │ └── Users │ │ │ │ │ ├── Models │ │ │ │ │ ├── CreateUserDto.cs │ │ │ │ │ ├── ResourcesDto.cs │ │ │ │ │ ├── UpdateUserDto.cs │ │ │ │ │ ├── UserDto.cs │ │ │ │ │ └── UsersDto.cs │ │ │ │ │ ├── UserManagementController.cs │ │ │ │ │ └── UsersController.cs │ │ │ ├── Areas.Frontend │ │ │ │ ├── Middlewares │ │ │ │ │ ├── EmbedMiddleware.cs │ │ │ │ │ ├── IndexExtensions.cs │ │ │ │ │ ├── NotifoMiddleware.cs │ │ │ │ │ └── OptionsFeature.cs │ │ │ │ └── Startup.cs │ │ │ ├── Areas.IdentityServer.Config │ │ │ │ ├── AlwaysAddTokenHandler.cs │ │ │ │ ├── ApplicationExtensions.cs │ │ │ │ ├── ApplicationManager_T_.cs │ │ │ │ ├── CreateAdminInitializer.cs │ │ │ │ ├── DynamicApplicationStore.cs │ │ │ │ ├── IdentityServerConfiguration.cs │ │ │ │ ├── IdentityServerServices.cs │ │ │ │ └── TokenStoreInitializer.cs │ │ │ ├── Areas.IdentityServer.Controllers │ │ │ │ ├── Account │ │ │ │ │ ├── AccountController.cs │ │ │ │ │ ├── ConsentModel.cs │ │ │ │ │ ├── ConsentVM.cs │ │ │ │ │ ├── LoginModel.cs │ │ │ │ │ └── LoginVM.cs │ │ │ │ ├── Error │ │ │ │ │ ├── ErrorController.cs │ │ │ │ │ └── ErrorVM.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── ExternalProvider.cs │ │ │ │ ├── IdentityServerController.cs │ │ │ │ ├── Info │ │ │ │ │ └── InfoController.cs │ │ │ │ ├── Profile │ │ │ │ │ ├── ChangePasswordModel.cs │ │ │ │ │ ├── ChangeProfileModel.cs │ │ │ │ │ ├── ChangePropertiesModel.cs │ │ │ │ │ ├── ProfileController.cs │ │ │ │ │ ├── ProfileVM.cs │ │ │ │ │ ├── RemoveLoginModel.cs │ │ │ │ │ ├── SetPasswordModel.cs │ │ │ │ │ └── UserProperty.cs │ │ │ │ ├── Setup │ │ │ │ │ ├── CreateUserModel.cs │ │ │ │ │ ├── SetupController.cs │ │ │ │ │ └── SetupVM.cs │ │ │ │ └── UserInfo │ │ │ │ │ └── UserInfoController.cs │ │ │ ├── Areas.IdentityServer.Views │ │ │ │ └── Extensions.cs │ │ │ ├── Config │ │ │ │ ├── Authentication │ │ │ │ │ ├── AuthenticationServices.cs │ │ │ │ │ ├── GithubAuthenticationServices.cs │ │ │ │ │ ├── GithubHandler.cs │ │ │ │ │ ├── GoogleAuthenticationServices.cs │ │ │ │ │ ├── GoogleHandler.cs │ │ │ │ │ ├── IdentityServerServices.cs │ │ │ │ │ ├── IdentityServices.cs │ │ │ │ │ ├── MicrosoftAuthenticationServices.cs │ │ │ │ │ ├── MicrosoftHandler.cs │ │ │ │ │ ├── OidcHandler.cs │ │ │ │ │ └── OidcServices.cs │ │ │ │ ├── Domain │ │ │ │ │ ├── AppsServices.cs │ │ │ │ │ ├── AssetServices.cs │ │ │ │ │ ├── BackupsServices.cs │ │ │ │ │ ├── CommandsServices.cs │ │ │ │ │ ├── CommentsServices.cs │ │ │ │ │ ├── ConfigurationExtensions.cs │ │ │ │ │ ├── ContentsServices.cs │ │ │ │ │ ├── EventPublishersServices.cs │ │ │ │ │ ├── EventSourcingServices.cs │ │ │ │ │ ├── HealthCheckServices.cs │ │ │ │ │ ├── HistoryServices.cs │ │ │ │ │ ├── InfrastructureServices.cs │ │ │ │ │ ├── LoggingServices.cs │ │ │ │ │ ├── MigrationServices.cs │ │ │ │ │ ├── NotificationsServices.cs │ │ │ │ │ ├── QueryServices.cs │ │ │ │ │ ├── ResizeServices.cs │ │ │ │ │ ├── RuleServices.cs │ │ │ │ │ ├── SchemasServices.cs │ │ │ │ │ ├── SearchServices.cs │ │ │ │ │ ├── SerializationServices.cs │ │ │ │ │ ├── StoreServices.cs │ │ │ │ │ ├── SubscriptionServices.cs │ │ │ │ │ ├── TeamServices.cs │ │ │ │ │ └── TelemetryServices.cs │ │ │ │ ├── Messaging │ │ │ │ │ └── MessagingServices.cs │ │ │ │ ├── MyIdentityOptions.cs │ │ │ │ ├── Startup │ │ │ │ │ ├── LogConfigurationHost.cs │ │ │ │ │ ├── MigrationRebuilderHost.cs │ │ │ │ │ └── MigratorHost.cs │ │ │ │ └── Web │ │ │ │ │ ├── WebExtensions.cs │ │ │ │ │ └── WebServices.cs │ │ │ ├── Pipeline.Plugins │ │ │ │ ├── MvcParts.cs │ │ │ │ └── PluginExtensions.cs │ │ │ ├── Pipeline.Robots │ │ │ │ ├── RobotsTxtMiddleware.cs │ │ │ │ └── RobotsTxtOptions.cs │ │ │ ├── Pipeline.Squid │ │ │ │ └── SquidMiddleware.cs │ │ │ ├── Program.cs │ │ │ └── Startup.cs │ │ └── SquidexReferences │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── System.Collections.Concurrent.dll │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Collections.dll │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ ├── System.ComponentModel.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Linq.Expressions.dll │ │ │ ├── System.Linq.dll │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Runtime.Loader.dll │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Security.Claims.dll │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ ├── System.Text.Json.dll │ │ │ └── System.Text.RegularExpressions.dll │ ├── clean-architecture-manga.accounts-api.Net7 │ │ ├── Application.csproj │ │ ├── Application.sln │ │ ├── Application │ │ │ ├── Services │ │ │ │ ├── ICurrencyExchange.cs │ │ │ │ ├── IUnitOfWork.cs │ │ │ │ ├── IUserService.cs │ │ │ │ └── Notification.cs │ │ │ ├── UseCases.CloseAccount │ │ │ │ ├── CloseAccountPresenter.cs │ │ │ │ ├── CloseAccountUseCase.cs │ │ │ │ ├── CloseAccountValidationUseCase.cs │ │ │ │ ├── ICloseAccountUseCase.cs │ │ │ │ └── IOutputPort.cs │ │ │ ├── UseCases.Deposit │ │ │ │ ├── DepositPresenter.cs │ │ │ │ ├── DepositUseCase.cs │ │ │ │ ├── DepositValidationUseCase.cs │ │ │ │ ├── IDepositUseCase.cs │ │ │ │ └── IOutputPort.cs │ │ │ ├── UseCases.GetAccount │ │ │ │ ├── GetAccountPresenter.cs │ │ │ │ ├── GetAccountUseCase.cs │ │ │ │ ├── GetAccountValidationUseCase.cs │ │ │ │ ├── IGetAccountUseCase.cs │ │ │ │ └── IOutputPort.cs │ │ │ ├── UseCases.GetAccounts │ │ │ │ ├── GetAccountPresenter.cs │ │ │ │ ├── GetAccountsUseCase.cs │ │ │ │ ├── IGetAccountsUseCase.cs │ │ │ │ └── IOutputPort.cs │ │ │ ├── UseCases.OpenAccount │ │ │ │ ├── IOpenAccountUseCase.cs │ │ │ │ ├── IOutputPort.cs │ │ │ │ ├── OpenAccountPresenter.cs │ │ │ │ ├── OpenAccountUseCase.cs │ │ │ │ └── OpenAccountValidationUseCase.cs │ │ │ ├── UseCases.Transfer │ │ │ │ ├── IOutputPort.cs │ │ │ │ ├── ITransferUseCase.cs │ │ │ │ ├── TransferPresenter.cs │ │ │ │ ├── TransferUseCase.cs │ │ │ │ └── TransferValidationUseCase.cs │ │ │ └── UseCases.Withdraw │ │ │ │ ├── IOutputPort.cs │ │ │ │ ├── IWithdrawUseCase.cs │ │ │ │ ├── WithdrawPresenter.cs │ │ │ │ ├── WithdrawUseCase.cs │ │ │ │ └── WithdrawValidationUseCase.cs │ │ ├── ApplicationReferences │ │ │ └── System.Runtime.dll │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── coolstore.ShoppingCart.Net6 │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ShoppingCart.csproj │ │ ├── ShoppingCart.sln │ │ ├── ShoppingCart │ │ ├── Anchor.cs │ │ ├── Core.Dtos │ │ │ ├── CartDto.cs │ │ │ ├── CartItemDto.cs │ │ │ ├── CategoryDto.cs │ │ │ ├── InventoryDto.cs │ │ │ ├── ProductByIdRequest.cs │ │ │ ├── ProductByIdsRequest.cs │ │ │ └── ProductDto.cs │ │ ├── Core.Events │ │ │ └── ShoppingCartCheckedOut.cs │ │ ├── Core.Exceptions │ │ │ ├── ProductNotFoundException.cs │ │ │ ├── ShoppingCartItemNotFoundException.cs │ │ │ └── ShoppingCartItemWithProductNotFoundException.cs │ │ ├── Core.Gateways │ │ │ ├── IProductCatalogGateway.cs │ │ │ ├── IPromoGateway.cs │ │ │ └── IShippingGateway.cs │ │ ├── Infrastructure.Extensions │ │ │ └── CartDtoExtensions.cs │ │ ├── Infrastructure.Gateways │ │ │ ├── ProductCatalogGateway.cs │ │ │ ├── PromoGateway.cs │ │ │ └── ShippingGateway.cs │ │ ├── UseCases.Checkout │ │ │ ├── CheckOutCommand.cs │ │ │ ├── CheckOutHandler.cs │ │ │ └── CheckOutValidator.cs │ │ ├── UseCases.CreateShoppingCartWithProduct │ │ │ ├── CreateShoppingCartWithProductCommand.cs │ │ │ ├── CreateShoppingCartWithProductHandler.cs │ │ │ └── CreateShoppingCartWithProductValidator.cs │ │ ├── UseCases.GetCartByUserId │ │ │ ├── GetCartByUserIdHandler.cs │ │ │ ├── GetCartByUserIdQuery.cs │ │ │ └── GetShoppingCartWithProductsValidator.cs │ │ └── UseCases.UpdateAmountOfProductInShoppingCart │ │ │ ├── UpdateAmountOfProductInShoppingCartCommand.cs │ │ │ ├── UpdateAmountOfProductInShoppingCartHandler.cs │ │ │ └── UpdateAmountOfProductInShoppingCartValidator.cs │ │ └── ShoppingCartReferences │ │ ├── System.Collections.dll │ │ ├── System.Linq.dll │ │ └── System.Runtime.dll │ ├── MSBuildProjectBuilderTests.cs │ └── Resources │ ├── AsyncEnumTest │ └── AsyncEnumTest.dll │ ├── AsyncTestCollectionNet45VS2013Debug │ └── AsyncTestCollectionNet45VS2013.dll │ ├── AsyncTestCollectionNet45VS2013Release │ └── AsyncTestCollectionNet45VS2013.dll │ ├── AsyncTestCollectionNet6VS2022Debug │ └── AsyncTestCollectionNet6VS2022.dll │ ├── AsyncTestCollectionNet6VS2022Release │ └── AsyncTestCollectionNet6VS2022.dll │ ├── JustDecompiler.NetStandard.Pdb │ ├── JustDecompiler.NetStandard.dll │ └── JustDecompiler.NetStandard.pdb │ ├── JustDecompiler.NetStandard │ └── JustDecompiler.NetStandard.dll │ ├── Mix.Cms.Lib │ └── Mix.Cms.Lib.dll │ ├── NorthwindTraders.NetStandard2.1 │ └── Northwind.Application.dll │ ├── OrchardCore │ └── OrchardCore.dll │ ├── Piranha │ └── Piranha.dll │ ├── Squidex.7.2.0.Net6 │ └── Squidex.dll │ ├── clean-architecture-manga.accounts-api.Net7 │ └── Application.dll │ └── coolstore.ShoppingCart.Net6 │ └── ShoppingCart.dll ├── EngineInfrastructure ├── JustDecompile.EngineInfrastructure.csproj └── Properties │ └── AssemblyInfo.cs ├── JustDecompile.EngineInfrastructure.NetStandard └── JustDecompile.EngineInfrastructure.NetStandard.csproj ├── JustDecompile.EngineInfrastructure.Shared ├── AssemblyInfo.cs ├── AssemblyLocators │ ├── BaseFrameworkAssemblyLocator.cs │ ├── DotNet2 │ │ ├── FrameworkAssemblyLocator2Base.cs │ │ ├── FrameworkAssemblyLocator2x64.cs │ │ └── FrameworkAssemblyLocator2x86.cs │ ├── DotNet3x │ │ ├── FrameworkAssemblyLocator3x64.cs │ │ ├── FrameworkAssemblyLocator3x86.cs │ │ └── FrameworkAssemblyLocator3xBase.cs │ ├── DotNet4x │ │ ├── FrameworkAssembly4xLocatorFactory.cs │ │ ├── FrameworkAssemblyLocator4x64.cs │ │ ├── FrameworkAssemblyLocator4x86.cs │ │ └── FrameworkAssemblyLocator4xBase.cs │ ├── IFrameworkAssemblyLocator.cs │ ├── NumberedFrameworkAssemblyLocator.cs │ ├── Silverlight │ │ ├── SilverlightAssembliesLocatorBase.cs │ │ ├── SilverlightX64AssembliesLocator.cs │ │ └── SilverlightX86AssembliesLocator.cs │ └── WinRTMetadataAssembliesLocator.cs ├── AssemblyTypes.cs ├── CLRHelper.cs ├── CodeViewer │ ├── CodeClassificationSpan.cs │ ├── CodeFormatterBase.cs │ ├── DecompiledSourceCode.cs │ ├── ICodeFormatter.cs │ └── JDClassificationTypes.cs ├── DangerousResourceIdentifier.cs ├── EmptyResolver.cs ├── Framework4VersionResolver.cs ├── IAssemblyInfoService.cs ├── ILanguageSelector.cs ├── ILanguageSelectorService.cs ├── Infrastructure │ ├── AccessTypes.cs │ ├── ICodeClassificationSpan.cs │ ├── ICodeViewerResults.cs │ ├── ITabCodeSettings.cs │ ├── MessageToken.cs │ ├── PositionToken.cs │ ├── Token.cs │ └── TokenKind.cs ├── JustDecompile.EngineInfrastructure.Shared.projitems ├── JustDecompile.EngineInfrastructure.Shared.shproj ├── LanguageSelectorServiceDefault.cs ├── NoCacheAssemblyInfoService.cs ├── ResourceStrings.cs └── Xaml │ └── ITextFormatter.cs ├── JustDecompile.External.JustAssembly.sln ├── JustDecompile.External.JustAssembly ├── AccessModifier.cs ├── AssemblyDecompilationResults.cs ├── AvalonEditCodeFormatter.cs ├── CodeViewerResults.cs ├── DecompilationResults.cs ├── Decompiler.cs ├── EventMethod.cs ├── EventMethodType.cs ├── FileGeneratedInfo.cs ├── FileGenerationNotifier.cs ├── IAssemblyDecompilationResults.cs ├── ICodeViewerResults.cs ├── IDecompilationResults.cs ├── IEventMethod.cs ├── IFileGeneratedInfo.cs ├── IFileGenerationNotifier.cs ├── IMemberTokenProvider.cs ├── IModuleDecompilationResults.cs ├── IOffsetSpan.cs ├── IPropertyMethod.cs ├── ISpan.cs ├── ITokenProvider.cs ├── ITypeTokenProvider.cs ├── JustAssemblyFilePathsAnalyzer.cs ├── JustAssemblyProjectBuilder.cs ├── JustDecompile.External.JustAssembly.csproj ├── MemberTokenProvider.cs ├── MemberType.cs ├── ModuleDecompilationResults.cs ├── OffsetSpan.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyMethod.cs ├── PropertyMethodType.cs ├── SupportedLanguage.cs ├── TokenProviderType.cs └── TypeTokenProvider.cs ├── JustDecompileCmd.NetStandard └── JustDecompileCmd.NetStandard.csproj ├── JustDecompileCmd.Shared ├── AssemblyInfo.cs ├── CmdShell.cs ├── CommandLineError.cs ├── CommandLineHelpError.cs ├── CommandLineManager.cs ├── ConsoleFrameworkResolver.cs ├── GeneratorProjectInfo.cs ├── IProjectGenerationError.cs ├── JustDecompileCmd.Shared.projitems ├── JustDecompileCmd.Shared.shproj └── TestCmdShell.cs ├── JustDecompileCmdShell └── JustDecompileCmd.csproj ├── JustDecompileEngine.sln ├── JustDecompiler.NetStandard └── JustDecompiler.NetStandard.csproj ├── JustDecompiler.Shared ├── Architecture.cs ├── AssemblyIdentifier.cs ├── AssemblyInfo.cs ├── AssemblyLoader.cs ├── Ast │ ├── BaseCodeNode.cs │ ├── BaseCodeTransformer.cs │ ├── BaseCodeVisitor.cs │ ├── BinaryOperator.cs │ ├── CodeNodeType.cs │ ├── ExpressionExtensions.cs │ ├── Expressions │ │ ├── AnonymousObjectCreationExpression.cs │ │ ├── AnonymousPropertyInitializerExpression.cs │ │ ├── ArgumentReferenceExpression.cs │ │ ├── ArrayAssignmentFieldReferenceExpression.cs │ │ ├── ArrayCreationExpression.cs │ │ ├── ArrayIndexerExpression.cs │ │ ├── ArrayLengthExpression.cs │ │ ├── ArrayVariableDeclarationExpression.cs │ │ ├── ArrayVariableReferenceExpression.cs │ │ ├── AutoPropertyConstructorInitializerExpression.cs │ │ ├── AwaitExpression.cs │ │ ├── BaseCtorExpression.cs │ │ ├── BaseReferenceExpression.cs │ │ ├── BinaryExpression.cs │ │ ├── BlockExpression.cs │ │ ├── BoxExpression.cs │ │ ├── CanCastExpression.cs │ │ ├── CastExpressionBase.cs │ │ ├── CheckedExpression.cs │ │ ├── ConditionExpression.cs │ │ ├── DefaultObjectExpression.cs │ │ ├── DelegateCreationExpression.cs │ │ ├── DelegateInvokeExpression.cs │ │ ├── DynamicConstructorInvocationExpression.cs │ │ ├── DynamicIndexerExpression.cs │ │ ├── DynamicMemberReferenceExpression.cs │ │ ├── EnumExpression.cs │ │ ├── EventReferenceExpression.cs │ │ ├── ExplicitCastExpression.cs │ │ ├── Expression.cs │ │ ├── ExpressionCollection.cs │ │ ├── FieldInitializerExpression.cs │ │ ├── FieldReferenceExpression.cs │ │ ├── FromClause.cs │ │ ├── GroupClause.cs │ │ ├── ImplicitCastExpression.cs │ │ ├── InitializerExpression.cs │ │ ├── IntoClause.cs │ │ ├── JoinClause.cs │ │ ├── LambdaExpression.cs │ │ ├── LambdaParameterExpression.cs │ │ ├── LetClause.cs │ │ ├── LinqQueryExpression.cs │ │ ├── LiteralExpression.cs │ │ ├── MakeRefExpression.cs │ │ ├── MemberHandleExpression.cs │ │ ├── MemberReferenceExpresion.cs │ │ ├── MethodInvocationExpression.cs │ │ ├── MethodReferenceExpression.cs │ │ ├── ObjectCreationExpression.cs │ │ ├── OrderByClause.cs │ │ ├── ParenthesesExpression.cs │ │ ├── PropertyInitializerExpression.cs │ │ ├── PropertyReferenceExpression.cs │ │ ├── QueryClause.cs │ │ ├── RaiseEventExpression.cs │ │ ├── RefReturnExpression.cs │ │ ├── RefVariableDeclarationExpression.cs │ │ ├── ReturnExpression.cs │ │ ├── SafeCastExpression.cs │ │ ├── SelectClause.cs │ │ ├── ShortFormReturnExpression.cs │ │ ├── SizeOfExpression.cs │ │ ├── StackAllocExpression.cs │ │ ├── ThisCtorExpression.cs │ │ ├── ThisReferenceExpression.cs │ │ ├── ThrowExpression.cs │ │ ├── TypeOfExpression.cs │ │ ├── TypeReferenceExpression.cs │ │ ├── UnaryExpression.cs │ │ ├── VariableDeclarationExpression.cs │ │ ├── VariableReferenceExpression.cs │ │ ├── WhereClause.cs │ │ ├── YieldBreakExpression.cs │ │ └── YieldReturnExpression.cs │ ├── ICodeNode.cs │ ├── ICodeTransformer.cs │ ├── ICodeVisitor.cs │ ├── IIndexerExpression.cs │ ├── IPdbCodeNode.cs │ ├── OrderDirection.cs │ ├── StatementExtensions.cs │ ├── Statements │ │ ├── BasePdbStatement.cs │ │ ├── BlockStatement.cs │ │ ├── BreakStatement.cs │ │ ├── BreakSwitchCaseStatement.cs │ │ ├── CaseGotoStatement.cs │ │ ├── CatchClause.cs │ │ ├── CatchClauseCollection.cs │ │ ├── CompilerOptimizedSwitchByStringStatement.cs │ │ ├── ConditionCase.cs │ │ ├── ConditionStatement.cs │ │ ├── ContinueStatement.cs │ │ ├── DefaultCase.cs │ │ ├── DoWhileStatement.cs │ │ ├── EmptyStatement.cs │ │ ├── ExceptionStatement.cs │ │ ├── ExpressionStatement.cs │ │ ├── FinallyClause.cs │ │ ├── FixedStatement.cs │ │ ├── ForEachStatement.cs │ │ ├── ForStatement.cs │ │ ├── GotoStatement.cs │ │ ├── IfElseIfStatement.cs │ │ ├── IfStatement.cs │ │ ├── LockStatement.cs │ │ ├── Statement.cs │ │ ├── StatementCollection.cs │ │ ├── SwitchCase.cs │ │ ├── SwitchCaseCollection.cs │ │ ├── SwitchStatement.cs │ │ ├── TryStatement.cs │ │ ├── UnsafeBlockStatement.cs │ │ ├── UsingStatement.cs │ │ └── WhileStatement.cs │ └── UnaryOperator.cs ├── Cil │ ├── BaseInstructionVisitor.cs │ ├── BlockRange.cs │ ├── ControlFlowGraph.cs │ ├── ControlFlowGraphAnalyser.cs │ ├── ControlFlowGraphBuilder.cs │ ├── Formatter.cs │ ├── IInstructionVisitor.cs │ ├── ISingleEntrySubGraph.cs │ ├── InstructionBlock.cs │ ├── InstructionDispatcher.cs │ └── SwitchData.cs ├── Common │ ├── DynamicHelper.cs │ ├── EnumValueToFieldCombinationMatcher.cs │ ├── Extensions.cs │ ├── LambdaExpressionsHelper.cs │ ├── LinqExpressionType.cs │ ├── NamespaceHierarchy │ │ ├── NamespaceHierarchyNode.cs │ │ ├── NamespaceHierarchyTree.cs │ │ └── NamespaceHierarchyTreeBuilder.cs │ ├── PairList.cs │ ├── SwitchHelpers.cs │ ├── UnionFinder.cs │ └── VariableFinder.cs ├── Constants.cs ├── DecompilationException.cs ├── DecompilationPreferences.cs ├── Decompiler │ ├── AssemblySpecificContext.cs │ ├── AssignmentAnalysis │ │ ├── AssignmentAnalyzer.cs │ │ ├── AssignmentFlowNode.cs │ │ ├── AssignmentNodeState.cs │ │ ├── AssignmentType.cs │ │ ├── BaseAssignmentAnalysisStep.cs │ │ ├── BaseUsageFinder.cs │ │ ├── FieldUsageFinder.cs │ │ ├── OutParameterUsageFinder.cs │ │ ├── UsageFinderSearchResult.cs │ │ └── VariableUsageFinder.cs │ ├── AsyncData.cs │ ├── AttributesUtilities.cs │ ├── AutoImplementedEventMatcher.cs │ ├── BlockDecompilationPipeline.cs │ ├── Caching │ │ ├── CachedDecompiledMember.cs │ │ ├── DecompilationCache.cs │ │ ├── DefaultDecompilationCacheService.cs │ │ ├── EmptyDecompilationCacheService.cs │ │ ├── IDecompilationCache.cs │ │ ├── IDecompilationCacheService.cs │ │ └── ProjectGenerationDecompilationCacheService.cs │ ├── CompilerOptimizedSwitchByStringData.cs │ ├── DecompilationAnalysisResults.cs │ ├── DecompilationContext.cs │ ├── DecompilationPipeline.cs │ ├── DecompiledMember.cs │ ├── DecompiledType.cs │ ├── DefineUseAnalysis │ │ ├── StackUsageAnalysis.cs │ │ ├── StackUsageData.cs │ │ └── StackVariableDefineUseInfo.cs │ ├── DependsOnAnalysisVisitor.cs │ ├── ExplicitlyImplementedMembersCollection.cs │ ├── ExpressionDecompilerData.cs │ ├── ExpressionDecompilerStep.cs │ ├── ExpressionPropagation │ │ └── ExpressionPropagationStep.cs │ ├── Extensions.cs │ ├── FilterMethodToBeDecompiled.cs │ ├── GeneratedMethod.cs │ ├── GotoElimination │ │ ├── AfterGotoCleanupStep.cs │ │ ├── ContinueAndBreakFinder.cs │ │ ├── GotoCancelation.cs │ │ └── TotalGotoEliminationStep.cs │ ├── IStateMachineData.cs │ ├── InitializationAssignment.cs │ ├── Inlining │ │ ├── BaseVariablesInliner.cs │ │ ├── EmptyVariablesToNotInlineFinder.cs │ │ ├── IVariableInliner.cs │ │ ├── IVariablesToNotInlineFinder.cs │ │ ├── MethodVariablesInliner.cs │ │ ├── RestrictedVariableInliner.cs │ │ ├── SideEffectsFinder.cs │ │ ├── SimpleVariableInliner.cs │ │ ├── StackVariablesInliner.cs │ │ └── VisualBasicVariablesToNotInlineFinder.cs │ ├── LogicFlow │ │ ├── BlockLogicalConstruct.cs │ │ ├── CFGBlockLogicalConstruct.cs │ │ ├── CFGBlockSplitter.cs │ │ ├── Common │ │ │ └── TreeNode.cs │ │ ├── Conditions │ │ │ ├── ConditionBuilder.cs │ │ │ ├── ConditionLogicalConstruct.cs │ │ │ ├── IfBuilder.cs │ │ │ └── IfLogicalConstruct.cs │ │ ├── DFST │ │ │ ├── DFSTBuilder.cs │ │ │ ├── DFSTEdge.cs │ │ │ ├── DFSTNode.cs │ │ │ └── DFSTree.cs │ │ ├── DTree │ │ │ ├── BaseDominatorTreeBuilder.cs │ │ │ ├── DTNode.cs │ │ │ ├── DominatorTree.cs │ │ │ └── FastDominatorTreeBuilder.cs │ │ ├── DominatorTreeDependentStep.cs │ │ ├── EmptyBlockLogicalConstruct.cs │ │ ├── Exceptions │ │ │ ├── ExceptionHandlingBlockCatch.cs │ │ │ ├── ExceptionHandlingBlockFilter.cs │ │ │ ├── ExceptionHandlingLogicalConstruct.cs │ │ │ ├── GuardedBlocksBuilder.cs │ │ │ ├── GuardedBlocksFollowNodesFinder.cs │ │ │ ├── IFilteringExceptionHandler.cs │ │ │ ├── TryCatchFilterLogicalConstruct.cs │ │ │ ├── TryFaultLogicalConstruct.cs │ │ │ └── TryFinallyLogicalConstruct.cs │ │ ├── FollowNodeLoopCleanUpStep.cs │ │ ├── FollowNodes │ │ │ ├── FollowNodeDeterminator.cs │ │ │ └── MaxWeightDisjointPathsFinder.cs │ │ ├── IBreaksContainer.cs │ │ ├── IInstructionBlockContainer.cs │ │ ├── ILogicalConstruct.cs │ │ ├── IntervalAnalyzer.cs │ │ ├── IntervalConstruct.cs │ │ ├── LogicalConstructBase.cs │ │ ├── LogicalFlowBuilderContext.cs │ │ ├── LogicalFlowBuilderStep.cs │ │ ├── LogicalFlowUtilities.cs │ │ ├── Loops │ │ │ ├── LoopBuilder.cs │ │ │ ├── LoopLogicalConstruct.cs │ │ │ └── LoopType.cs │ │ ├── PartialCFGBlockLogicalConstruct.cs │ │ ├── Switches │ │ │ ├── CaseLogicalConstruct.cs │ │ │ ├── SwitchBuilder.cs │ │ │ └── SwitchLogicalConstruct.cs │ │ └── YieldGuardedBlocksBuilder.cs │ ├── MemberRenamingServices │ │ ├── DefaultMemberRenamingService.cs │ │ ├── IMemberRenamingService.cs │ │ ├── MemberRenamingData.cs │ │ └── WinRTRenamingService.cs │ ├── MethodSpecificContext.cs │ ├── ModuleSpecificContext.cs │ ├── PropertyDecompiler.cs │ ├── StateMachines │ │ ├── AsyncMoveNextMethodAnalyzer.cs │ │ ├── AsyncStateControllerRemover.cs │ │ ├── AsyncStateMachineVersion.cs │ │ ├── DisposingStateControllerRemover.cs │ │ ├── StateControllerRemover.cs │ │ ├── StateMachineCFGCleaner.cs │ │ ├── StateMachineCFGCleanerV2.cs │ │ ├── StateMachineDisposeAnalyzer.cs │ │ ├── StateMachineDoFinallyCheckRemover.cs │ │ ├── StateMachineFinallyCheckRemoverBase.cs │ │ ├── StateMachineFinallyStateCheckRemover.cs │ │ ├── StateMachineUtilities.cs │ │ └── YieldStateMachineControlFlowRebuilder.cs │ ├── StatementDecompilerStep.cs │ ├── TypeInference │ │ ├── ClassHierarchyBuilder.cs │ │ ├── ClassHierarchyNode.cs │ │ ├── ConnectedComponentsFinder.cs │ │ ├── ExpressionTypeInferer.cs │ │ ├── GreedyTypeInferer.cs │ │ ├── IntegerTypeInferer.cs │ │ ├── IntegerTypesHierarchyBuilder.cs │ │ ├── TypeInferer.cs │ │ └── UsedAsTypeHelper.cs │ ├── TypeNamesComparer.cs │ ├── TypeSpecificContext.cs │ ├── UsageBasedExpressionFixer.cs │ ├── Utilities.cs │ ├── WriterContext.cs │ ├── WriterContextServices │ │ ├── BaseWriterContextService.cs │ │ ├── FrameworkFoldersWriterContextService.cs │ │ ├── IWriterContextService.cs │ │ ├── SimpleWriterContextService.cs │ │ ├── TypeCollisionWriterContextService.cs │ │ ├── TypeDeclarationsWriterContextService.cs │ │ └── WinRTWriterContextService.cs │ ├── YieldData.cs │ ├── YieldExceptionHandlerInfo.cs │ ├── YieldExceptionHandlerType.cs │ ├── YieldFieldsInformation.cs │ └── YieldStateMachineVersion.cs ├── ExceptionThrownNotifier.cs ├── ExternallyVisibleDecompilationUtilities.cs ├── FileGeneratedInfo.cs ├── Interfaces │ ├── IDecompilationPreferences.cs │ ├── IDecompiler.cs │ ├── IExceptionThrownNotifier.cs │ ├── IFileGeneratedInfo.cs │ ├── IFileGenerationNotifier.cs │ ├── IFrameworkResolver.cs │ ├── IFrameworkResolverWithUserInteraction.cs │ ├── ITypeGeneratedInfo.cs │ └── IUniqueMemberIdentifier.cs ├── JustDecompiler.Shared.projitems ├── JustDecompiler.Shared.shproj ├── Languages │ ├── AttributeWriter.cs │ ├── BaseAssemblyAttributeWriter.cs │ ├── BaseImperativeLanguageWriter.cs │ ├── BaseLanguage.cs │ ├── BaseLanguageWriter.cs │ ├── CSharp │ │ ├── CSharp.cs │ │ ├── CSharpAssemblyAttributeWriter.cs │ │ ├── CSharpAttributeWriter.cs │ │ ├── CSharpKeyWordWriter.cs │ │ ├── CSharpV5.cs │ │ ├── CSharpV6.cs │ │ ├── CSharpV7.cs │ │ ├── CSharpVersion.cs │ │ ├── CSharpWriter.cs │ │ └── ICSharp.cs │ ├── CodeMappingInfo.cs │ ├── CodePosition.cs │ ├── CodeSpan.cs │ ├── IAssemblyAttributeWriter.cs │ ├── IExceptionFormatter.cs │ ├── IFormatter.cs │ ├── IKeyWordWriter.cs │ ├── IL │ │ ├── FlagsWriter.cs │ │ ├── ILBlock.cs │ │ ├── ILHelpers.cs │ │ ├── IntermediateLanguage.cs │ │ ├── IntermediateLanguageAssemblyAttributeWriter.cs │ │ ├── IntermediateLanguageAttributeWriter.cs │ │ └── IntermediateLanguageWriter.cs │ ├── ILanguage.cs │ ├── ILanguageTestCaseWriter.cs │ ├── ILanguageWriter.cs │ ├── INamespaceLanguageWriter.cs │ ├── IPositionMaintainingFormatter.cs │ ├── IWriterSettings.cs │ ├── InfinityConstants.cs │ ├── LanguageFactory.cs │ ├── MemberNamingUtils.cs │ ├── NamespaceImperativeLanguageWriter.cs │ ├── OffsetSpan.cs │ ├── PlainTextFormatter.cs │ ├── SimpleExceptionFormatter.cs │ ├── TestCaseExceptionFormatter.cs │ ├── TestCaseWriters │ │ ├── IntermediateDecompilationCSharpLanguageWriter.cs │ │ └── TestCaseCSharpWriter.cs │ ├── VisualBasic │ │ ├── IVisualBasic.cs │ │ ├── VisualBasic.cs │ │ ├── VisualBasicAssemblyAttributeWriter.cs │ │ ├── VisualBasicAttributeWriter.cs │ │ ├── VisualBasicKeyWordWriter.cs │ │ ├── VisualBasicV10.cs │ │ ├── VisualBasicVersion.cs │ │ └── VisualBasicWriter.cs │ ├── WriterSettings.cs │ └── WritingInfo.cs ├── MemberIdentifier.cs ├── Mono.Cecil.Extensions │ ├── CustomAttributeExtensions.cs │ ├── DecompilationLocker.cs │ ├── EventDefinitionExtensions.cs │ ├── FieldReferenceExtensions.cs │ ├── GenericHelper.cs │ ├── ICustomAttributeProviderExtensions.cs │ ├── IGenericInstanceExtensions.cs │ ├── IGenericParameterProviderExtensions.cs │ ├── ImplementedMember.cs │ ├── InstructionExtensions.cs │ ├── MemberDefinitionExtensions.cs │ ├── MemberNamingExtensions.cs │ ├── MethodDefinitionExtensions.cs │ ├── MethodReferenceExtentions.cs │ ├── ModuleDefinitionExtensions.cs │ ├── ParameterDefinitionExtensions.cs │ ├── ParameterReferenceExtensions.cs │ ├── PropertyReferenceExtensions.cs │ ├── SecurityAttributeExtensions.cs │ ├── SecurityDeclarationExtensions.cs │ ├── TypeDefinitionExtensions.cs │ └── TypeReferenceExtensions.cs ├── Pattern │ └── PatternMatching.cs ├── Steps │ ├── ArrayVariablesStep.cs │ ├── AssignOutParametersStep.cs │ ├── BaseStateMachineRemoverStep.cs │ ├── CanCastStep.cs │ ├── CaseGotoTransformerStep.cs │ ├── CastEnumsToIntegersStep.cs │ ├── CastIntegersStep.cs │ ├── CodePatterns │ │ ├── ArrayInitialisationPattern.cs │ │ ├── BaseInitialisationPattern.cs │ │ ├── CatchClausesFilterPattern.cs │ │ ├── CodePatternsContext.cs │ │ ├── CollectionInitializationPattern.cs │ │ ├── CommonPatterns.cs │ │ ├── DefineUseCount.cs │ │ ├── ICodePattern.cs │ │ ├── InitializationPattern.cs │ │ ├── MultiAssignPattern.cs │ │ ├── NullCoalescingPattern.cs │ │ ├── ObjectInitialisationPattern.cs │ │ ├── RaiseEventPattern.cs │ │ ├── TernaryConditionPattern.cs │ │ ├── TernaryConditionPatternAgressive.cs │ │ ├── VariableInliningPattern.cs │ │ └── VariableInliningPatternAggressive.cs │ ├── CodePatternsStep.cs │ ├── CombinedTransformerStep.cs │ ├── CreateCompilerOptimizedSwitchByStringStatementsStep.cs │ ├── CreateIfElseIfStatementsStep.cs │ ├── DeclareTopLevelVariables.cs │ ├── DeclareVariablesOnFirstAssignment.cs │ ├── DeduceImplicitDelegates.cs │ ├── DependsOnAnalysisStep.cs │ ├── DetermineCtorInvocationStep.cs │ ├── DetermineDestructorStep.cs │ ├── DetermineNotSupportedVBCodeStep.cs │ ├── DynamicVariables │ │ ├── CallSiteBinderType.cs │ │ ├── CallSiteInfo.cs │ │ ├── CallSiteInvocationReplacer.cs │ │ ├── DynamicElementAnalyzer.cs │ │ └── ResolveDynamicVariablesStep.cs │ ├── EnumHelper.cs │ ├── FieldAssignmentAnalysisStep.cs │ ├── FindAutoBoxesStep.cs │ ├── FixBinaryExpressionsStep.cs │ ├── FixMethodOverloadsStep.cs │ ├── FixSwitchCasesStep.cs │ ├── FixSwitchConditionStep.cs │ ├── HandleVirtualMethodInvocations.cs │ ├── IDecompilationStep.cs │ ├── Inflector.cs │ ├── InstructionMappingsCheck.cs │ ├── ManagedPointersRemovalStep.cs │ ├── MapUnconditionalBranchesStep.cs │ ├── Matcher.cs │ ├── MergeUnaryAndBinaryExpression.cs │ ├── Negator.cs │ ├── OperatorStep.cs │ ├── OutParameterAssignmentAnalysisStep.cs │ ├── ParenthesizeExpressionsStep.cs │ ├── PropertyRecognizer.cs │ ├── RebuildAnonymousDelegatesStep.cs │ ├── RebuildAnonymousTypesInitializersStep.cs │ ├── RebuildAsyncStatementsStep.cs │ ├── RebuildCatchClausesFilterStep.cs │ ├── RebuildDoWhileStatements.cs │ ├── RebuildEventsStep.cs │ ├── RebuildExpressionTreesStep.cs │ ├── RebuildFixedStatements.cs │ ├── RebuildForStatements.cs │ ├── RebuildForeachArrayStatements.cs │ ├── RebuildForeachStatements.cs │ ├── RebuildLambdaExpressions.cs │ ├── RebuildLinqQueriesStep.cs │ ├── RebuildLockStatements.cs │ ├── RebuildUsingStatements.cs │ ├── RebuildVBForStatements.cs │ ├── RebuildYieldStatementsStep.cs │ ├── RemoveAsyncStateMachineStep.cs │ ├── RemoveCompilerOptimizationsStep.cs │ ├── RemoveConditionOnlyVariables.cs │ ├── RemoveDelegateCachingStep.cs │ ├── RemoveLastReturn.cs │ ├── RemovePrivateImplemetnationDetailsStep.cs │ ├── RemoveUnreachableBlocksStep.cs │ ├── RemoveUnusedVariablesStep.cs │ ├── RemoveYieldStateMachineStep.cs │ ├── RenameEnumValues.cs │ ├── RenameSplitPropertiesMethodsAndBackingFields.cs │ ├── RenameVBVariables.cs │ ├── RenameVariables.cs │ ├── ReplaceDelegateInvokeStep.cs │ ├── SelfAssignment.cs │ ├── SentinelStep.cs │ ├── SimpleDereferencer.cs │ ├── SwitchByString │ │ ├── RebuildSwitchByString.cs │ │ ├── SwitchByStringFixer.cs │ │ └── SwitchByStringMatcher.cs │ ├── TransformCatchClausesFilterExpressionStep.cs │ ├── TransformMemberHandlersStep.cs │ ├── TypeOfStep.cs │ ├── UnsafeMethodBodyStep.cs │ ├── VBCodePatternsStep.cs │ ├── VBSelfAssignment.cs │ ├── VariableAssignmentAnalysisStep.cs │ ├── VisualBasicRemoveDelegateCachingStep.cs │ └── VisualBasicRemoveUnusedVariablesStep.cs ├── SupportedLanguages.cs ├── ThreadSafeWeakAssemblyResolver.cs ├── TwoDimensionalString.cs ├── TypeGeneratedInfo.cs ├── TypeReferenceType.cs ├── UniqueMemberIdentifier.cs ├── WeakAssemblyResolver.cs └── XmlDocumentationReaders │ ├── DocumentationCache.cs │ ├── DocumentationManager.cs │ ├── XmlDocumentationReader.cs │ └── XmlDocumentationResolver.cs ├── MSBuildProjectCreator └── Tools.MSBuildProjectBuilder.csproj ├── Mono.Cecil.Mdb.NetStandard └── Mono.Cecil.Mdb.NetStandard.csproj ├── Mono.Cecil.Mdb.Shared ├── Mono.Cecil.Mdb.Shared.projitems ├── Mono.Cecil.Mdb.Shared.shproj ├── Mono.Cecil.Mdb │ ├── AssemblyInfo.cs │ ├── MdbReader.cs │ └── MdbWriter.cs └── Mono.CompilerServices.SymbolWriter │ ├── MonoSymbolFile.cs │ ├── MonoSymbolTable.cs │ ├── MonoSymbolWriter.cs │ ├── SourceMethodBuilder.cs │ └── SymbolWriterImpl.cs ├── Mono.Cecil.NetStandard └── Mono.Cecil.NetStandard.csproj ├── Mono.Cecil.Pdb.NetStandard └── Mono.Cecil.Pdb.NetStandard.csproj ├── Mono.Cecil.Pdb.Shared ├── Microsoft.Cci.Pdb │ ├── BitAccess.cs │ ├── BitSet.cs │ ├── CvInfo.cs │ ├── DataStream.cs │ ├── DbiDbgHdr.cs │ ├── DbiHeader.cs │ ├── DbiModuleInfo.cs │ ├── DbiSecCon.cs │ ├── IntHashTable.cs │ ├── Interfaces.cs │ ├── MsfDirectory.cs │ ├── PdbConstant.cs │ ├── PdbDebugException.cs │ ├── PdbException.cs │ ├── PdbFile.cs │ ├── PdbFileHeader.cs │ ├── PdbFunction.cs │ ├── PdbLine.cs │ ├── PdbLines.cs │ ├── PdbReader.cs │ ├── PdbScope.cs │ ├── PdbSlot.cs │ ├── PdbSource.cs │ ├── PdbTokenLine.cs │ └── SourceLocationProvider.cs ├── Mono.Cecil.Pdb.Shared.projitems ├── Mono.Cecil.Pdb.Shared.shproj └── Mono.Cecil.Pdb │ ├── AssemblyInfo.cs │ ├── ISymUnmanagedDocumentWriter.cs │ ├── ISymUnmanagedWriter2.cs │ ├── ModuleMetadata.cs │ ├── PdbHelper.cs │ ├── PdbReader.cs │ ├── PdbWriter.cs │ ├── SymDocumentWriter.cs │ └── SymWriter.cs ├── Mono.Cecil.Shared ├── JustDecompileExtensions │ └── NET4.0Extensions.cs ├── Mono.Cecil.AssemblyResolver │ ├── AssemblyFrameworkResolver.cs │ ├── AssemblyFrameworkResolverCache.cs │ ├── AssemblyName.cs │ ├── AssemblyPathResolver.cs │ ├── AssemblyPathResolverCache.cs │ ├── AssemblyStrongNameExtended.cs │ ├── FrameworkVersion.cs │ ├── IAssemblyFrameworkResolver.cs │ ├── ITargetPlatformResolver.cs │ ├── SpecialTypeAssembly.cs │ ├── SystemInformation.cs │ ├── TargetPlatform.cs │ ├── TargetPlatformResolver.cs │ └── UnresolvedAssembliesSet.cs ├── Mono.Cecil.Cil │ ├── Code.cs │ ├── CodeReader.cs │ ├── CodeWriter.cs │ ├── Document.cs │ ├── ExceptionHandler.cs │ ├── IDynamicTypeContainer.cs │ ├── ILProcessor.cs │ ├── Instruction.cs │ ├── MethodBody.cs │ ├── OpCode.cs │ ├── OpCodes.cs │ ├── SequencePoint.cs │ ├── Symbols.cs │ ├── VariableDefinition.cs │ └── VariableReference.cs ├── Mono.Cecil.Extensions │ ├── AssemblyNameComparer.cs │ ├── AssemblyNameReferenceExtensions.cs │ ├── ModuleArchitectureExtensions.cs │ └── ModuleDefinitionExtensions.cs ├── Mono.Cecil.Metadata │ ├── BlobHeap.cs │ ├── Buffers.cs │ ├── CodedIndex.cs │ ├── ElementType.cs │ ├── GuidHeap.cs │ ├── Heap.cs │ ├── MetadataToken.cs │ ├── Row.cs │ ├── StringHeap.cs │ ├── TableHeap.cs │ ├── TokenType.cs │ ├── UserStringHeap.cs │ └── Utilities.cs ├── Mono.Cecil.PE │ ├── BinaryStreamReader.cs │ ├── BinaryStreamWriter.cs │ ├── ByteBuffer.cs │ ├── ByteBufferEqualityComparer.cs │ ├── DataDirectory.cs │ ├── Image.cs │ ├── ImageReader.cs │ ├── ImageWriter.cs │ ├── Section.cs │ └── TextMap.cs ├── Mono.Cecil.Shared.projitems ├── Mono.Cecil.Shared.shproj ├── Mono.Cecil │ ├── ArrayType.cs │ ├── AssemblyDefinition.cs │ ├── AssemblyFlags.cs │ ├── AssemblyHashAlgorithm.cs │ ├── AssemblyInfo.cs │ ├── AssemblyLinkedResource.cs │ ├── AssemblyNameDefinition.cs │ ├── AssemblyNameReference.cs │ ├── AssemblyReader.cs │ ├── AssemblyWriter.cs │ ├── BaseAssemblyResolver.cs │ ├── CallSite.cs │ ├── ConstantValue.cs │ ├── CustomAttribute.cs │ ├── DefaultAssemblyResolver.cs │ ├── EmbeddedResource.cs │ ├── EventAttributes.cs │ ├── EventDefinition.cs │ ├── EventReference.cs │ ├── ExportedType.cs │ ├── FieldAttributes.cs │ ├── FieldDefinition.cs │ ├── FieldReference.cs │ ├── FileAttributes.cs │ ├── FunctionPointerType.cs │ ├── GenericInstanceMethod.cs │ ├── GenericInstanceType.cs │ ├── GenericParameter.cs │ ├── GenericParameterAttributes.cs │ ├── IConstantProvider.cs │ ├── ICustomAttributeProvider.cs │ ├── IGenericDefinition.cs │ ├── IGenericInstance.cs │ ├── IGenericParameterProvider.cs │ ├── IMarshalInfoProvider.cs │ ├── IMemberDefinition.cs │ ├── IMetadataScope.cs │ ├── IMetadataTokenProvider.cs │ ├── IMethodSignature.cs │ ├── ISecurityDeclarationMemberDefinition.cs │ ├── IVisibilityDefinition.cs │ ├── Import.cs │ ├── LinkedResource.cs │ ├── ManifestResourceAttributes.cs │ ├── MarshalInfo.cs │ ├── MemberDefinitionCollection.cs │ ├── MemberReference.cs │ ├── MetadataResolver.cs │ ├── MetadataSystem.cs │ ├── MethodAttributes.cs │ ├── MethodCallingConvention.cs │ ├── MethodDefinition.cs │ ├── MethodImplAttributes.cs │ ├── MethodReference.cs │ ├── MethodReturnType.cs │ ├── MethodSemanticsAttributes.cs │ ├── MethodSpecification.cs │ ├── Modifiers.cs │ ├── ModuleDefinition.cs │ ├── ModuleKind.cs │ ├── ModuleReference.cs │ ├── NativeType.cs │ ├── PInvokeAttributes.cs │ ├── PInvokeInfo.cs │ ├── ParameterAttributes.cs │ ├── ParameterDefinition.cs │ ├── ParameterDefinitionCollection.cs │ ├── ParameterReference.cs │ ├── PinnedType.cs │ ├── PointerType.cs │ ├── PropertyAttributes.cs │ ├── PropertyDefinition.cs │ ├── PropertyReference.cs │ ├── ReferenceType.cs │ ├── Resource.cs │ ├── SecurityDeclaration.cs │ ├── SentinelType.cs │ ├── TargetRuntime.cs │ ├── TypeAttributes.cs │ ├── TypeDefinition.cs │ ├── TypeDefinitionCollection.cs │ ├── TypeParser.cs │ ├── TypeReference.cs │ ├── TypeSpecification.cs │ ├── TypeSystem.cs │ └── VariantType.cs ├── Mono.Collections.Generic │ ├── Collection.cs │ └── ReadOnlyCollection.cs ├── Mono.Security.Cryptography │ ├── CryptoConvert.cs │ └── CryptoService.cs ├── Mono │ ├── Actions.cs │ ├── Empty.cs │ └── Funcs.cs ├── SmartAssembly.Attributes.cs └── System.Runtime.CompilerServices │ └── ExtensionAttribute.cs ├── Mono.Cecil ├── Mono.Cecil.License.rtf ├── Mono.Cecil.csproj ├── Mono.Cecil.settings ├── ProjectInfo.cs └── symbols │ ├── mdb │ ├── Mono.Cecil.Mdb.csproj │ ├── Mono.Cecil.Mdb │ │ ├── AssemblyInfo.cs │ │ ├── MdbReader.cs │ │ └── MdbWriter.cs │ └── Mono.CompilerServices.SymbolWriter │ │ ├── MonoSymbolFile.cs │ │ ├── MonoSymbolTable.cs │ │ ├── MonoSymbolWriter.cs │ │ ├── SourceMethodBuilder.cs │ │ └── SymbolWriterImpl.cs │ └── pdb │ └── Mono.Cecil.Pdb.csproj ├── SystemInformationHelpers.NetStandard └── SystemInformationHelpers.NetStandard.csproj ├── SystemInformationHelpers.Shared ├── AssemblyInfo.cs ├── Framework4VersionResolver.cs ├── FrameworkVersion.cs ├── MachineInformation.cs ├── SystemInformationHelpers.Shared.projitems └── SystemInformationHelpers.Shared.shproj ├── SystemInformationHelpers └── SystemInformationHelpers.csproj ├── Tools.MSBuildProjectBuilder.NetStandard └── Tools.MSBuildProjectBuilder.NetStandard.csproj └── Tools.MSBuildProjectBuilder.Shared ├── AssemblyInfo.cs ├── BaseProjectBuilder.cs ├── Constants ├── LanguageConstants.cs ├── UAPConstants.cs └── WinRTConstants.cs ├── Contracts ├── FileManagers │ ├── IMsBuildProjectManager.cs │ ├── INetCoreProjectManager.cs │ ├── IProjectManager.cs │ └── IWinRTProjectManager.cs ├── IAppDefinitionProjectItemWriter.cs ├── IProjectItemWriter.cs ├── IRegularProjectItemWriter.cs ├── IResXDesignerProjectItemWriter.cs ├── IResourceProjectItemWriter.cs ├── IWinFormsProjectItemWriter.cs ├── IXamlPageProjectItemWriter.cs └── IXamlProjectItemWriter.cs ├── Extensions.cs ├── FilePathsServices ├── DefaultFilePathsAnalyzer.cs ├── DefaultFilePathsService.cs ├── IFilePathsAnalyzer.cs └── IFilePathsService.cs ├── IProjectGenerationNotifier.cs ├── MSBuildProject.cs ├── MSBuildProject.xsd ├── MSBuildProjectBuilder.cs ├── NetCore ├── NetCoreProject.cs ├── NetCoreProject.xsd └── NetCoreProjectBuilder.cs ├── ProjectFileCreated.cs ├── ProjectFileManagers ├── MsBuildProjectFileManager.cs ├── NetCoreProjectFileManager.cs ├── ProjectFileManager.cs ├── TestNetCoreProjectFileManager.cs └── WinRTProjectFileManager.cs ├── ProjectGenerationSettings.cs ├── ProjectGenerationSettingsProvider.cs ├── ProjectItemFileWriters ├── AppDefinitionItemWriter.cs ├── BaseProjectItemFileWriter.cs ├── BaseXamlFileWriter.cs ├── IProjectItemFileWriter.cs ├── ProjectItemWriterFactory.cs ├── RegularProjectItemWriter.cs ├── ResXDesignerWriter.cs ├── WinFormsItemWriter.cs └── XamlPageItemWriter.cs ├── ProjectJsonWriter.cs ├── SolutionWriter.cs ├── TestMSBuildProjectBuilder.cs ├── TestNetCoreProjectBuilder.cs ├── TestWinRTProjectBuilder.cs ├── Tools.MSBuildProjectBuilder.Shared.projitems ├── Tools.MSBuildProjectBuilder.Shared.shproj ├── UpdateClassGeenratedFromSchema.bat ├── Utilities.cs ├── VisualStudioVersion.cs ├── WinRTProjectBuilder.cs ├── WinRTProjectType.cs └── WinRTProjectTypeDetector.cs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/COPYING -------------------------------------------------------------------------------- /JustDecompileEngine-Original-License/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/JustDecompileEngine-Original-License/License -------------------------------------------------------------------------------- /JustDecompileEngine-Original-License/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/JustDecompileEngine-Original-License/License.md -------------------------------------------------------------------------------- /JustDecompileEngine-Original-License/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/JustDecompileEngine-Original-License/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/THIRD-PARTY-NOTICES.md -------------------------------------------------------------------------------- /src/.idea/.idea.JustDecompileEngine/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/.idea/.idea.JustDecompileEngine/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.JustDecompileEngine/.idea/.name: -------------------------------------------------------------------------------- 1 | JustDecompileEngine -------------------------------------------------------------------------------- /src/.idea/.idea.JustDecompileEngine/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/.idea/.idea.JustDecompileEngine/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.JustDecompileEngine/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/.idea/.idea.JustDecompileEngine/.idea/vcs.xml -------------------------------------------------------------------------------- /src/Cecil.Decompiler/JustDecompiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Cecil.Decompiler/JustDecompiler.csproj -------------------------------------------------------------------------------- /src/CommonVersionAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/CommonVersionAssemblyInfo.cs -------------------------------------------------------------------------------- /src/ConsoleRunner/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunner/App.cs -------------------------------------------------------------------------------- /src/ConsoleRunner/ConsoleRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunner/ConsoleRunner.csproj -------------------------------------------------------------------------------- /src/ConsoleRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ConsoleRunner/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunner/app.config -------------------------------------------------------------------------------- /src/ConsoleRunnerDotNet6/ConsoleRunnerDotNet6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunnerDotNet6/ConsoleRunnerDotNet6.csproj -------------------------------------------------------------------------------- /src/ConsoleRunnerDotNet6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunnerDotNet6/Program.cs -------------------------------------------------------------------------------- /src/ConsoleRunnerDotNet6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/ConsoleRunnerDotNet6/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Decompiler.Tests/Decompiler.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Decompiler.Tests.csproj -------------------------------------------------------------------------------- /src/Decompiler.Tests/Helpers/ContentAssertException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Helpers/ContentAssertException.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Helpers/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Helpers/TestHelper.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/AsyncEnumTest/AsyncEnumTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/AsyncEnumTest/AsyncEnumTest.sln -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Mix.Cms.Lib/Mix.Cms.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Mix.Cms.Lib/Mix.Cms.Lib.csproj -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Mix.Cms.Lib/Mix.Cms.Lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Mix.Cms.Lib/Mix.Cms.Lib.sln -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/OrchardCore/OrchardCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/OrchardCore/OrchardCore.csproj -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/OrchardCore/OrchardCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/OrchardCore/OrchardCore.sln -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha.csproj -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha.sln -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Api.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/App.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Config.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Extend/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Extend/Block.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Extend/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Extend/Field.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/IApi.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ICache.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ISearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ISearch.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ISecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/ISecurity.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/IStorage.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Models/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Models/Site.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/Piranha/Utils.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Piranha/PiranhaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Piranha/PiranhaExtensions.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Expected/Squidex.7.2.0.Net6/Squidex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Expected/Squidex.7.2.0.Net6/Squidex.sln -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/MSBuildProjectBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/MSBuildProjectBuilderTests.cs -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Resources/Mix.Cms.Lib/Mix.Cms.Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Resources/Mix.Cms.Lib/Mix.Cms.Lib.dll -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Resources/OrchardCore/OrchardCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Resources/OrchardCore/OrchardCore.dll -------------------------------------------------------------------------------- /src/Decompiler.Tests/Integration/Resources/Piranha/Piranha.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Decompiler.Tests/Integration/Resources/Piranha/Piranha.dll -------------------------------------------------------------------------------- /src/EngineInfrastructure/JustDecompile.EngineInfrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/EngineInfrastructure/JustDecompile.EngineInfrastructure.csproj -------------------------------------------------------------------------------- /src/EngineInfrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/EngineInfrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/AssemblyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/AssemblyTypes.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/CLRHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/CLRHelper.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/EmptyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/EmptyResolver.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/IAssemblyInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/IAssemblyInfoService.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/ILanguageSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/ILanguageSelector.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/Infrastructure/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/Infrastructure/Token.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/ResourceStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/ResourceStrings.cs -------------------------------------------------------------------------------- /src/JustDecompile.EngineInfrastructure.Shared/Xaml/ITextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.EngineInfrastructure.Shared/Xaml/ITextFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly.sln -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/AccessModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/AccessModifier.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/AssemblyDecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/AssemblyDecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/AvalonEditCodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/AvalonEditCodeFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/CodeViewerResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/CodeViewerResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/DecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/DecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/Decompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/Decompiler.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/EventMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/EventMethod.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/EventMethodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/EventMethodType.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/FileGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/FileGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/FileGenerationNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/FileGenerationNotifier.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IAssemblyDecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IAssemblyDecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/ICodeViewerResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/ICodeViewerResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IDecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IDecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IEventMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IEventMethod.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IFileGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IFileGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IFileGenerationNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IFileGenerationNotifier.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IMemberTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IMemberTokenProvider.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IModuleDecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IModuleDecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IOffsetSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IOffsetSpan.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/IPropertyMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/IPropertyMethod.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/ISpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/ISpan.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/ITokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/ITokenProvider.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/ITypeTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/ITypeTokenProvider.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/JustAssemblyFilePathsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/JustAssemblyFilePathsAnalyzer.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/JustAssemblyProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/JustAssemblyProjectBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/MemberTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/MemberTokenProvider.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/MemberType.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/ModuleDecompilationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/ModuleDecompilationResults.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/OffsetSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/OffsetSpan.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/PropertyMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/PropertyMethod.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/PropertyMethodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/PropertyMethodType.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/SupportedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/SupportedLanguage.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/TokenProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/TokenProviderType.cs -------------------------------------------------------------------------------- /src/JustDecompile.External.JustAssembly/TypeTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompile.External.JustAssembly/TypeTokenProvider.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.NetStandard/JustDecompileCmd.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.NetStandard/JustDecompileCmd.NetStandard.csproj -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/CmdShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/CmdShell.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/CommandLineError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/CommandLineError.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/CommandLineHelpError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/CommandLineHelpError.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/CommandLineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/CommandLineManager.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/ConsoleFrameworkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/ConsoleFrameworkResolver.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/GeneratorProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/GeneratorProjectInfo.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/IProjectGenerationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/IProjectGenerationError.cs -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/JustDecompileCmd.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/JustDecompileCmd.Shared.projitems -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/JustDecompileCmd.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/JustDecompileCmd.Shared.shproj -------------------------------------------------------------------------------- /src/JustDecompileCmd.Shared/TestCmdShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmd.Shared/TestCmdShell.cs -------------------------------------------------------------------------------- /src/JustDecompileCmdShell/JustDecompileCmd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileCmdShell/JustDecompileCmd.csproj -------------------------------------------------------------------------------- /src/JustDecompileEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompileEngine.sln -------------------------------------------------------------------------------- /src/JustDecompiler.NetStandard/JustDecompiler.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.NetStandard/JustDecompiler.NetStandard.csproj -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Architecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Architecture.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/AssemblyIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/AssemblyIdentifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/BaseCodeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/BaseCodeNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/BaseCodeTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/BaseCodeTransformer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/BaseCodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/BaseCodeVisitor.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/BinaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/BinaryOperator.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/CodeNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/CodeNodeType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ArgumentReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ArgumentReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ArrayCreationExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ArrayCreationExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ArrayIndexerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ArrayIndexerExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ArrayLengthExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ArrayLengthExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/AwaitExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/AwaitExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/BaseCtorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/BaseCtorExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/BaseReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/BaseReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/BinaryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/BinaryExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/BlockExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/BlockExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/BoxExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/BoxExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/CanCastExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/CanCastExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/CastExpressionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/CastExpressionBase.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/CheckedExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/CheckedExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ConditionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ConditionExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/DefaultObjectExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/DefaultObjectExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/DelegateCreationExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/DelegateCreationExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/DelegateInvokeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/DelegateInvokeExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/DynamicIndexerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/DynamicIndexerExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/EnumExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/EnumExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/EventReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/EventReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ExplicitCastExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ExplicitCastExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/Expression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ExpressionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ExpressionCollection.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/FieldInitializerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/FieldInitializerExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/FieldReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/FieldReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/FromClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/FromClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/GroupClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/GroupClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ImplicitCastExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ImplicitCastExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/InitializerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/InitializerExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/IntoClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/IntoClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/JoinClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/JoinClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/LambdaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/LambdaExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/LambdaParameterExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/LambdaParameterExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/LetClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/LetClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/LinqQueryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/LinqQueryExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/LiteralExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/LiteralExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/MakeRefExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/MakeRefExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/MemberHandleExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/MemberHandleExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/MemberReferenceExpresion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/MemberReferenceExpresion.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/MethodInvocationExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/MethodInvocationExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/MethodReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/MethodReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ObjectCreationExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ObjectCreationExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/OrderByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/OrderByClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ParenthesesExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ParenthesesExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/PropertyReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/PropertyReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/QueryClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/QueryClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/RaiseEventExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/RaiseEventExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/RefReturnExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/RefReturnExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ReturnExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ReturnExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/SafeCastExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/SafeCastExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/SelectClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/SelectClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ShortFormReturnExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ShortFormReturnExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/SizeOfExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/SizeOfExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/StackAllocExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/StackAllocExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ThisCtorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ThisCtorExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ThisReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ThisReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/ThrowExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/ThrowExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/TypeOfExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/TypeOfExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/TypeReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/TypeReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/UnaryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/UnaryExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/VariableReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/VariableReferenceExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/WhereClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/WhereClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/YieldBreakExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/YieldBreakExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Expressions/YieldReturnExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Expressions/YieldReturnExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/ICodeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/ICodeNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/ICodeTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/ICodeTransformer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/ICodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/ICodeVisitor.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/IIndexerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/IIndexerExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/IPdbCodeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/IPdbCodeNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/OrderDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/OrderDirection.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/StatementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/StatementExtensions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/BasePdbStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/BasePdbStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/BlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/BlockStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/BreakStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/BreakStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/BreakSwitchCaseStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/BreakSwitchCaseStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/CaseGotoStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/CaseGotoStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/CatchClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/CatchClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/CatchClauseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/CatchClauseCollection.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ConditionCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ConditionCase.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ConditionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ConditionStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ContinueStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ContinueStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/DefaultCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/DefaultCase.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/DoWhileStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/DoWhileStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/EmptyStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/EmptyStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ExceptionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ExceptionStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ExpressionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ExpressionStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/FinallyClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/FinallyClause.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/FixedStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/FixedStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ForEachStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ForEachStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/ForStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/ForStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/GotoStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/GotoStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/IfElseIfStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/IfElseIfStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/IfStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/IfStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/LockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/LockStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/Statement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/StatementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/StatementCollection.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/SwitchCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/SwitchCase.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/SwitchCaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/SwitchCaseCollection.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/SwitchStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/SwitchStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/TryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/TryStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/UnsafeBlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/UnsafeBlockStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/UsingStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/UsingStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/Statements/WhileStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/Statements/WhileStatement.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Ast/UnaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Ast/UnaryOperator.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/BaseInstructionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/BaseInstructionVisitor.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/BlockRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/BlockRange.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/ControlFlowGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/ControlFlowGraph.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/ControlFlowGraphAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/ControlFlowGraphAnalyser.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/ControlFlowGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/ControlFlowGraphBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/Formatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/IInstructionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/IInstructionVisitor.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/ISingleEntrySubGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/ISingleEntrySubGraph.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/InstructionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/InstructionBlock.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/InstructionDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/InstructionDispatcher.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Cil/SwitchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Cil/SwitchData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/DynamicHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/DynamicHelper.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/EnumValueToFieldCombinationMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/EnumValueToFieldCombinationMatcher.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/Extensions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/LambdaExpressionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/LambdaExpressionsHelper.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/LinqExpressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/LinqExpressionType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/PairList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/PairList.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/SwitchHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/SwitchHelpers.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/UnionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/UnionFinder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Common/VariableFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Common/VariableFinder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Constants.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/DecompilationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/DecompilationException.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/DecompilationPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/DecompilationPreferences.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/AssemblySpecificContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/AssemblySpecificContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/AsyncData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/AsyncData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/AttributesUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/AttributesUtilities.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/AutoImplementedEventMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/AutoImplementedEventMatcher.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/BlockDecompilationPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/BlockDecompilationPipeline.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Caching/CachedDecompiledMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Caching/CachedDecompiledMember.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Caching/DecompilationCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Caching/DecompilationCache.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Caching/IDecompilationCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Caching/IDecompilationCache.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DecompilationAnalysisResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DecompilationAnalysisResults.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DecompilationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DecompilationContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DecompilationPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DecompilationPipeline.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DecompiledMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DecompiledMember.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DecompiledType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DecompiledType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DefineUseAnalysis/StackUsageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DefineUseAnalysis/StackUsageData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/DependsOnAnalysisVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/DependsOnAnalysisVisitor.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/ExpressionDecompilerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/ExpressionDecompilerData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/ExpressionDecompilerStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/ExpressionDecompilerStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Extensions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/FilterMethodToBeDecompiled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/FilterMethodToBeDecompiled.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/GeneratedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/GeneratedMethod.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/GotoElimination/GotoCancelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/GotoElimination/GotoCancelation.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/IStateMachineData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/IStateMachineData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/InitializationAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/InitializationAssignment.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/BaseVariablesInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/BaseVariablesInliner.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/IVariableInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/IVariableInliner.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/MethodVariablesInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/MethodVariablesInliner.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/SideEffectsFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/SideEffectsFinder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/SimpleVariableInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/SimpleVariableInliner.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Inlining/StackVariablesInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Inlining/StackVariablesInliner.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/BlockLogicalConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/BlockLogicalConstruct.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/CFGBlockSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/CFGBlockSplitter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/Common/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/Common/TreeNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/Conditions/IfBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/Conditions/IfBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTEdge.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DFST/DFSTree.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DTree/DTNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DTree/DTNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/DTree/DominatorTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/DTree/DominatorTree.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/IBreaksContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/IBreaksContainer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/ILogicalConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/ILogicalConstruct.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/IntervalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/IntervalAnalyzer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/IntervalConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/IntervalConstruct.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalConstructBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalConstructBase.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalFlowBuilderStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalFlowBuilderStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalFlowUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/LogicalFlowUtilities.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/Loops/LoopBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/Loops/LoopBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/Loops/LoopType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/Loops/LoopType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/LogicFlow/Switches/SwitchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/LogicFlow/Switches/SwitchBuilder.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/MethodSpecificContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/MethodSpecificContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/ModuleSpecificContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/ModuleSpecificContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/PropertyDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/PropertyDecompiler.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/StatementDecompilerStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/StatementDecompilerStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeInference/ClassHierarchyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeInference/ClassHierarchyNode.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeInference/GreedyTypeInferer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeInference/GreedyTypeInferer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeInference/IntegerTypeInferer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeInference/IntegerTypeInferer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeInference/TypeInferer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeInference/TypeInferer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeInference/UsedAsTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeInference/UsedAsTypeHelper.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeNamesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeNamesComparer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/TypeSpecificContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/TypeSpecificContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/UsageBasedExpressionFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/UsageBasedExpressionFixer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/Utilities.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/WriterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/WriterContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/YieldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/YieldData.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/YieldExceptionHandlerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/YieldExceptionHandlerInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/YieldExceptionHandlerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/YieldExceptionHandlerType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/YieldFieldsInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/YieldFieldsInformation.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Decompiler/YieldStateMachineVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Decompiler/YieldStateMachineVersion.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/ExceptionThrownNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/ExceptionThrownNotifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/ExternallyVisibleDecompilationUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/ExternallyVisibleDecompilationUtilities.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/FileGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/FileGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IDecompilationPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IDecompilationPreferences.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IDecompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IDecompiler.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IExceptionThrownNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IExceptionThrownNotifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IFileGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IFileGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IFileGenerationNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IFileGenerationNotifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IFrameworkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IFrameworkResolver.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/ITypeGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/ITypeGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Interfaces/IUniqueMemberIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Interfaces/IUniqueMemberIdentifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/JustDecompiler.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/JustDecompiler.Shared.projitems -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/JustDecompiler.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/JustDecompiler.Shared.shproj -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/AttributeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/AttributeWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/BaseAssemblyAttributeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/BaseAssemblyAttributeWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/BaseImperativeLanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/BaseImperativeLanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/BaseLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/BaseLanguage.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/BaseLanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/BaseLanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharp.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpAttributeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpAttributeWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpKeyWordWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpKeyWordWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpV5.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpV6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpV6.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpV7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpV7.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpVersion.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/CSharpWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/CSharpWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CSharp/ICSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CSharp/ICSharp.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CodeMappingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CodeMappingInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CodePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CodePosition.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/CodeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/CodeSpan.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IAssemblyAttributeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IAssemblyAttributeWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IExceptionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IExceptionFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IKeyWordWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IKeyWordWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IL/FlagsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IL/FlagsWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IL/ILBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IL/ILBlock.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IL/ILHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IL/ILHelpers.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IL/IntermediateLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IL/IntermediateLanguage.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IL/IntermediateLanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IL/IntermediateLanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/ILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/ILanguage.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/ILanguageTestCaseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/ILanguageTestCaseWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/ILanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/ILanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/INamespaceLanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/INamespaceLanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IPositionMaintainingFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IPositionMaintainingFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/IWriterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/IWriterSettings.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/InfinityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/InfinityConstants.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/LanguageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/LanguageFactory.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/MemberNamingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/MemberNamingUtils.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/NamespaceImperativeLanguageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/NamespaceImperativeLanguageWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/OffsetSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/OffsetSpan.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/PlainTextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/PlainTextFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/SimpleExceptionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/SimpleExceptionFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/TestCaseExceptionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/TestCaseExceptionFormatter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/VisualBasic/IVisualBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/VisualBasic/IVisualBasic.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasic.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicV10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicV10.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicVersion.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/VisualBasic/VisualBasicWriter.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/WriterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/WriterSettings.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Languages/WritingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Languages/WritingInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/MemberIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/MemberIdentifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Mono.Cecil.Extensions/DecompilationLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Mono.Cecil.Extensions/DecompilationLocker.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Mono.Cecil.Extensions/GenericHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Mono.Cecil.Extensions/GenericHelper.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Mono.Cecil.Extensions/ImplementedMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Mono.Cecil.Extensions/ImplementedMember.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Mono.Cecil.Extensions/InstructionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Mono.Cecil.Extensions/InstructionExtensions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Pattern/PatternMatching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Pattern/PatternMatching.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/ArrayVariablesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/ArrayVariablesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/AssignOutParametersStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/AssignOutParametersStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/BaseStateMachineRemoverStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/BaseStateMachineRemoverStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CanCastStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CanCastStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CaseGotoTransformerStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CaseGotoTransformerStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CastEnumsToIntegersStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CastEnumsToIntegersStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CastIntegersStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CastIntegersStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/CodePatternsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/CodePatternsContext.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/CommonPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/CommonPatterns.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/DefineUseCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/DefineUseCount.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/ICodePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/ICodePattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/InitializationPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/InitializationPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/MultiAssignPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/MultiAssignPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/NullCoalescingPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/NullCoalescingPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/RaiseEventPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/RaiseEventPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/TernaryConditionPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/TernaryConditionPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatterns/VariableInliningPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatterns/VariableInliningPattern.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CodePatternsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CodePatternsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CombinedTransformerStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CombinedTransformerStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/CreateIfElseIfStatementsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/CreateIfElseIfStatementsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DeclareTopLevelVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DeclareTopLevelVariables.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DeclareVariablesOnFirstAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DeclareVariablesOnFirstAssignment.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DeduceImplicitDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DeduceImplicitDelegates.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DependsOnAnalysisStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DependsOnAnalysisStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DetermineCtorInvocationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DetermineCtorInvocationStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DetermineDestructorStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DetermineDestructorStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DetermineNotSupportedVBCodeStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DetermineNotSupportedVBCodeStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DynamicVariables/CallSiteBinderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DynamicVariables/CallSiteBinderType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/DynamicVariables/CallSiteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/DynamicVariables/CallSiteInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/EnumHelper.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FieldAssignmentAnalysisStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FieldAssignmentAnalysisStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FindAutoBoxesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FindAutoBoxesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FixBinaryExpressionsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FixBinaryExpressionsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FixMethodOverloadsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FixMethodOverloadsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FixSwitchCasesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FixSwitchCasesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/FixSwitchConditionStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/FixSwitchConditionStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/HandleVirtualMethodInvocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/HandleVirtualMethodInvocations.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/IDecompilationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/IDecompilationStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/Inflector.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/InstructionMappingsCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/InstructionMappingsCheck.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/ManagedPointersRemovalStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/ManagedPointersRemovalStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/MapUnconditionalBranchesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/MapUnconditionalBranchesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/Matcher.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/MergeUnaryAndBinaryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/MergeUnaryAndBinaryExpression.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/Negator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/Negator.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/OperatorStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/OperatorStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/OutParameterAssignmentAnalysisStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/OutParameterAssignmentAnalysisStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/ParenthesizeExpressionsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/ParenthesizeExpressionsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/PropertyRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/PropertyRecognizer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildAnonymousDelegatesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildAnonymousDelegatesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildAnonymousTypesInitializersStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildAnonymousTypesInitializersStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildAsyncStatementsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildAsyncStatementsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildCatchClausesFilterStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildCatchClausesFilterStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildDoWhileStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildDoWhileStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildEventsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildEventsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildExpressionTreesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildExpressionTreesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildFixedStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildFixedStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildForStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildForStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildForeachArrayStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildForeachArrayStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildForeachStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildForeachStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildLambdaExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildLambdaExpressions.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildLinqQueriesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildLinqQueriesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildLockStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildLockStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildUsingStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildUsingStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildVBForStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildVBForStatements.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RebuildYieldStatementsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RebuildYieldStatementsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveAsyncStateMachineStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveAsyncStateMachineStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveCompilerOptimizationsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveCompilerOptimizationsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveConditionOnlyVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveConditionOnlyVariables.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveDelegateCachingStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveDelegateCachingStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveLastReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveLastReturn.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveUnreachableBlocksStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveUnreachableBlocksStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveUnusedVariablesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveUnusedVariablesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RemoveYieldStateMachineStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RemoveYieldStateMachineStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RenameEnumValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RenameEnumValues.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RenameVBVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RenameVBVariables.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/RenameVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/RenameVariables.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/ReplaceDelegateInvokeStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/ReplaceDelegateInvokeStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SelfAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SelfAssignment.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SentinelStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SentinelStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SimpleDereferencer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SimpleDereferencer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SwitchByString/RebuildSwitchByString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SwitchByString/RebuildSwitchByString.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SwitchByString/SwitchByStringFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SwitchByString/SwitchByStringFixer.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/SwitchByString/SwitchByStringMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/SwitchByString/SwitchByStringMatcher.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/TransformMemberHandlersStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/TransformMemberHandlersStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/TypeOfStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/TypeOfStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/UnsafeMethodBodyStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/UnsafeMethodBodyStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/VBCodePatternsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/VBCodePatternsStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/VBSelfAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/VBSelfAssignment.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/VariableAssignmentAnalysisStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/VariableAssignmentAnalysisStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/VisualBasicRemoveDelegateCachingStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/VisualBasicRemoveDelegateCachingStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/Steps/VisualBasicRemoveUnusedVariablesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/Steps/VisualBasicRemoveUnusedVariablesStep.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/SupportedLanguages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/SupportedLanguages.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/ThreadSafeWeakAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/ThreadSafeWeakAssemblyResolver.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/TwoDimensionalString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/TwoDimensionalString.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/TypeGeneratedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/TypeGeneratedInfo.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/TypeReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/TypeReferenceType.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/UniqueMemberIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/UniqueMemberIdentifier.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/WeakAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/WeakAssemblyResolver.cs -------------------------------------------------------------------------------- /src/JustDecompiler.Shared/XmlDocumentationReaders/DocumentationCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/JustDecompiler.Shared/XmlDocumentationReaders/DocumentationCache.cs -------------------------------------------------------------------------------- /src/MSBuildProjectCreator/Tools.MSBuildProjectBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/MSBuildProjectCreator/Tools.MSBuildProjectBuilder.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.NetStandard/Mono.Cecil.Mdb.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.NetStandard/Mono.Cecil.Mdb.NetStandard.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb.Shared.projitems -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb.Shared.shproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/MdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/MdbReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/MdbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Mdb.Shared/Mono.Cecil.Mdb/MdbWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.NetStandard/Mono.Cecil.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.NetStandard/Mono.Cecil.NetStandard.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.NetStandard/Mono.Cecil.Pdb.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.NetStandard/Mono.Cecil.Pdb.NetStandard.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/BitAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/BitAccess.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/BitSet.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/CvInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/CvInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DataStream.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiDbgHdr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiDbgHdr.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiHeader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiModuleInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiSecCon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/DbiSecCon.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/IntHashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/IntHashTable.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/Interfaces.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/MsfDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/MsfDirectory.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbConstant.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbDebugException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbDebugException.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbException.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFile.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFileHeader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbFunction.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbLine.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbLines.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbScope.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbSlot.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbSource.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbTokenLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/PdbTokenLine.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/SourceLocationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Microsoft.Cci.Pdb/SourceLocationProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb.Shared.projitems -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb.Shared.shproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ISymUnmanagedDocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ISymUnmanagedDocumentWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ISymUnmanagedWriter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ISymUnmanagedWriter2.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ModuleMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/ModuleMetadata.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbHelper.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/PdbWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/SymDocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/SymDocumentWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/SymWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Pdb.Shared/Mono.Cecil.Pdb/SymWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/JustDecompileExtensions/NET4.0Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/JustDecompileExtensions/NET4.0Extensions.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/AssemblyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/AssemblyName.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/FrameworkVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/FrameworkVersion.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/SpecialTypeAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/SpecialTypeAssembly.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/SystemInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/SystemInformation.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/TargetPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.AssemblyResolver/TargetPlatform.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/CodeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/CodeReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/CodeWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/Document.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/ExceptionHandler.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/IDynamicTypeContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/IDynamicTypeContainer.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/ILProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/ILProcessor.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/Instruction.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/MethodBody.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/SequencePoint.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/VariableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/VariableDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Cil/VariableReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Cil/VariableReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Extensions/AssemblyNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Extensions/AssemblyNameComparer.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/BlobHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/BlobHeap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Buffers.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/CodedIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/CodedIndex.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/ElementType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/GuidHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/GuidHeap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Heap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/MetadataToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/MetadataToken.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Row.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/StringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/StringHeap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/TableHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/TableHeap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/TokenType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/UserStringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/UserStringHeap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Metadata/Utilities.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/BinaryStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/BinaryStreamReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/BinaryStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/BinaryStreamWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/ByteBuffer.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/ByteBufferEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/ByteBufferEqualityComparer.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/DataDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/DataDirectory.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/ImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/ImageReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/ImageWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.PE/TextMap.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Shared.projitems -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil.Shared.shproj -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyFlags.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyHashAlgorithm.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyLinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyLinkedResource.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyNameDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyNameDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyNameReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyNameReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/AssemblyWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/AssemblyWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/BaseAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/BaseAssemblyResolver.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ConstantValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ConstantValue.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/CustomAttribute.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/DefaultAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/DefaultAssemblyResolver.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/EmbeddedResource.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/EventAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/EventAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/EventDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/EventDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/EventReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/EventReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ExportedType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/FieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/FieldAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/FieldDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/FieldReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/FileAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/FunctionPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/FunctionPointerType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/GenericInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/GenericInstanceMethod.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/GenericInstanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/GenericInstanceType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/GenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/GenericParameter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/GenericParameterAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/GenericParameterAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IConstantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IConstantProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ICustomAttributeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ICustomAttributeProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IGenericDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IGenericDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IGenericInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IGenericInstance.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IGenericParameterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IGenericParameterProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IMarshalInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IMarshalInfoProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IMemberDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IMemberDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IMetadataScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IMetadataScope.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IMetadataTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IMetadataTokenProvider.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IMethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IMethodSignature.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ISecurityDeclarationMemberDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ISecurityDeclarationMemberDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/IVisibilityDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/IVisibilityDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/LinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/LinkedResource.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ManifestResourceAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ManifestResourceAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MemberDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MemberDefinitionCollection.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MemberReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MemberReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MetadataResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MetadataResolver.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MetadataSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MetadataSystem.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodCallingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodCallingConvention.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodImplAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodImplAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodReturnType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodSemanticsAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodSemanticsAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/MethodSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/MethodSpecification.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ModuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ModuleDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ModuleReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ModuleReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PInvokeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PInvokeAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ParameterAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ParameterAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ParameterDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ParameterDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ParameterDefinitionCollection.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ParameterReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ParameterReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PropertyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PropertyAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PropertyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PropertyDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/PropertyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/PropertyReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/ReferenceType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/SecurityDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/SecurityDeclaration.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/SentinelType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TargetRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TargetRuntime.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeAttributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeDefinition.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeDefinitionCollection.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeReference.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeSpecification.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Collections.Generic/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Collections.Generic/Collection.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Collections.Generic/ReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Collections.Generic/ReadOnlyCollection.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Security.Cryptography/CryptoConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Security.Cryptography/CryptoConvert.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono.Security.Cryptography/CryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono.Security.Cryptography/CryptoService.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono/Actions.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono/Empty.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/Mono/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/Mono/Funcs.cs -------------------------------------------------------------------------------- /src/Mono.Cecil.Shared/SmartAssembly.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil.Shared/SmartAssembly.Attributes.cs -------------------------------------------------------------------------------- /src/Mono.Cecil/Mono.Cecil.License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/Mono.Cecil.License.rtf -------------------------------------------------------------------------------- /src/Mono.Cecil/Mono.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/Mono.Cecil.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil/Mono.Cecil.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/Mono.Cecil.settings -------------------------------------------------------------------------------- /src/Mono.Cecil/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/ProjectInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb.csproj -------------------------------------------------------------------------------- /src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs -------------------------------------------------------------------------------- /src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/MdbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/symbols/mdb/Mono.Cecil.Mdb/MdbWriter.cs -------------------------------------------------------------------------------- /src/Mono.Cecil/symbols/pdb/Mono.Cecil.Pdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Mono.Cecil/symbols/pdb/Mono.Cecil.Pdb.csproj -------------------------------------------------------------------------------- /src/SystemInformationHelpers.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/SystemInformationHelpers.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SystemInformationHelpers.Shared/Framework4VersionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/SystemInformationHelpers.Shared/Framework4VersionResolver.cs -------------------------------------------------------------------------------- /src/SystemInformationHelpers.Shared/FrameworkVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/SystemInformationHelpers.Shared/FrameworkVersion.cs -------------------------------------------------------------------------------- /src/SystemInformationHelpers.Shared/MachineInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/SystemInformationHelpers.Shared/MachineInformation.cs -------------------------------------------------------------------------------- /src/SystemInformationHelpers/SystemInformationHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/SystemInformationHelpers/SystemInformationHelpers.csproj -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/BaseProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/BaseProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Constants/LanguageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Constants/LanguageConstants.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Constants/UAPConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Constants/UAPConstants.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Constants/WinRTConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Constants/WinRTConstants.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Contracts/IProjectItemWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Contracts/IProjectItemWriter.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Extensions.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/IProjectGenerationNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/IProjectGenerationNotifier.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/MSBuildProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/MSBuildProject.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/MSBuildProject.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/MSBuildProject.xsd -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/MSBuildProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/MSBuildProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProject.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProject.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProject.xsd -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/NetCore/NetCoreProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/ProjectFileCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/ProjectFileCreated.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/ProjectGenerationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/ProjectGenerationSettings.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/ProjectJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/ProjectJsonWriter.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/SolutionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/SolutionWriter.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/TestMSBuildProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/TestMSBuildProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/TestNetCoreProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/TestNetCoreProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/TestWinRTProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/TestWinRTProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/Utilities.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/VisualStudioVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/VisualStudioVersion.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectBuilder.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectType.cs -------------------------------------------------------------------------------- /src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectTypeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemerx/JustDecompileEngine/HEAD/src/Tools.MSBuildProjectBuilder.Shared/WinRTProjectTypeDetector.cs --------------------------------------------------------------------------------