├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Build └── Binary │ ├── .artifactignore │ ├── generate.ILSpy.AIO.bat │ ├── generate.ILSpy.bat │ ├── generate.JustDecompile.AIO.bat │ ├── generate.JustDecompile.bat │ ├── generate.Reflector.AIO.bat │ ├── generate.Reflector.bat │ ├── generate.bat │ └── tools │ ├── ILMerge.exe │ ├── cp.exe │ ├── grep.exe │ ├── mv.exe │ ├── rm.exe │ ├── sed.exe │ └── zip.exe ├── ChangeLog ├── Compilation ├── AppDomainHelper.cs ├── BaseLanguageHelper.cs ├── CSharpHelper.cs ├── CSharpKeywords.cs ├── Compiler.cs ├── CompilerProfile.cs ├── ILanguageHelper.cs ├── LanguageHelperFactory.cs ├── NamespaceCollector.cs ├── SpaceSurrounder.cs ├── SupportedLanguage.cs ├── VisualBasicHelper.cs └── VisualBasicKeywords.cs ├── Controls ├── Body │ ├── InstructionReferenceEditor.cs │ ├── MultipleInstructionReferenceEditor.cs │ ├── OperandReferenceEditor.cs │ ├── ParameterReferenceEditor.cs │ └── VariableReferenceEditor.cs ├── CheckBoxComboBox │ ├── CheckBoxComboBox.Designer.cs │ ├── CheckBoxComboBox.cs │ ├── GripBounds.cs │ ├── NativeMethods.cs │ ├── Popup.Designer.cs │ ├── Popup.cs │ ├── PopupComboBox.Designer.cs │ ├── PopupComboBox.cs │ ├── PopupComboBox.resx │ └── Selection Wrappers │ │ ├── ListSelectionWrapper.cs │ │ └── ObjectSelectionWrapper.cs ├── Context │ └── GenericParameterEditor.cs ├── Definition │ ├── AssemblyDefinitionControl.Designer.cs │ ├── AssemblyDefinitionControl.cs │ ├── AssemblyDefinitionControl.resx │ ├── AssemblyDefinitionEditor.Designer.cs │ ├── AssemblyDefinitionEditor.cs │ ├── AssemblyDefinitionEditor.resx │ ├── ConstantEditor.Designer.cs │ ├── ConstantEditor.cs │ ├── ConstantEditor.resx │ ├── CustomAttributeArgumentEditor.Designer.cs │ ├── CustomAttributeArgumentEditor.cs │ ├── CustomAttributeArgumentEditor.resx │ ├── HexEditorControl.Designer.cs │ ├── HexEditorControl.cs │ ├── HexEditorControl.resx │ ├── MethodDefinitionEditor.cs │ ├── ModuleDefinitionControl.Designer.cs │ ├── ModuleDefinitionControl.cs │ ├── ModuleDefinitionControl.resx │ └── TypeDefinitionEditor.cs ├── Grid │ ├── CustomAttributeArgumentGridControl.Designer.cs │ ├── CustomAttributeArgumentGridControl.cs │ ├── CustomAttributeGridControl.Designer.cs │ ├── CustomAttributeGridControl.cs │ ├── CustomAttributeNamedArgumentGridControl.Designer.cs │ ├── CustomAttributeNamedArgumentGridControl.cs │ ├── ExceptionHandlerGridControl.Designer.cs │ ├── ExceptionHandlerGridControl.cs │ ├── GridControl.Designer.cs │ ├── GridControl.cs │ ├── GridControl.resx │ ├── InstructionGridControl.Designer.cs │ ├── InstructionGridControl.cs │ ├── InterfaceGridControl.Designer.cs │ ├── InterfaceGridControl.cs │ ├── OverrideGridControl.Designer.cs │ ├── OverrideGridControl.cs │ ├── ParameterGridControl.Designer.cs │ ├── ParameterGridControl.cs │ ├── VariableGridControl.Designer.cs │ └── VariableGridControl.cs ├── IOperandEditor.cs ├── Misc │ ├── BasePopupControl.cs │ ├── TextComboUserControl.Designer.cs │ ├── TextComboUserControl.cs │ └── TextComboUserControl.resx ├── NoneOperandEditor.cs ├── NotSupportedOperandEditor.cs ├── NullOperandEditor.cs ├── Primitive │ ├── BooleanEditor.cs │ ├── ByteEditor.cs │ ├── DoubleEditor.cs │ ├── IntegerEditor.cs │ ├── LongEditor.cs │ ├── OperandEditor.cs │ ├── OperandEditorBridge.cs │ ├── SByteEditor.cs │ ├── ShortEditor.cs │ ├── SingleEditor.cs │ ├── StringEditor.cs │ ├── UIntegerEditor.cs │ ├── ULongEditor.cs │ ├── UShortEditor.cs │ └── VerbatimStringEditor.cs ├── Reference │ ├── FieldReferenceEditor.cs │ ├── MemberReferenceEditor.cs │ ├── MethodReferenceEditor.cs │ ├── TypeReferenceEditor.cs │ ├── TypeSpecification.cs │ ├── TypeSpecificationEditor.Designer.cs │ ├── TypeSpecificationEditor.cs │ └── TypeSpecificationEditor.resx └── Split │ ├── AssemblyNameDefinitionAttributesControl.Designer.cs │ ├── AssemblyNameDefinitionAttributesControl.cs │ ├── AssemblyNameDefinitionAttributesControl.resx │ ├── AssemblyNameReferenceAttributesControl.Designer.cs │ ├── AssemblyNameReferenceAttributesControl.cs │ ├── AssemblyNameReferenceAttributesControl.resx │ ├── AttributesControl.Designer.cs │ ├── AttributesControl.cs │ ├── AttributesControl.resx │ ├── EmbeddedResourceAttributesControl.Designer.cs │ ├── EmbeddedResourceAttributesControl.cs │ ├── EmbeddedResourceAttributesControl.resx │ ├── EventAttributesControl.Designer.cs │ ├── EventAttributesControl.cs │ ├── EventAttributesControl.resx │ ├── FieldAttributesControl.Designer.cs │ ├── FieldAttributesControl.cs │ ├── FieldAttributesControl.resx │ ├── LinkedResourceAttributesControl.Designer.cs │ ├── LinkedResourceAttributesControl.cs │ ├── LinkedResourceAttributesControl.resx │ ├── MethodAttributesControl.Designer.cs │ ├── MethodAttributesControl.cs │ ├── MethodAttributesControl.resx │ ├── PropertyAttributesControl.Designer.cs │ ├── PropertyAttributesControl.cs │ ├── PropertyAttributesControl.resx │ ├── ResourceAttributesControl.Designer.cs │ ├── ResourceAttributesControl.cs │ ├── ResourceAttributesControl.resx │ ├── SplitAttributesControl.Designer.cs │ ├── SplitAttributesControl.cs │ ├── SplitAttributesControl.resx │ ├── TypeAttributesControl.Designer.cs │ ├── TypeAttributesControl.cs │ └── TypeAttributesControl.resx ├── Forms ├── AssemblyCleanerForm.Designer.cs ├── AssemblyCleanerForm.cs ├── AssemblyCleanerForm.resx ├── CodeForm.Designer.cs ├── CodeForm.cs ├── CodeForm.resx ├── ConfigureForm.Designer.cs ├── ConfigureForm.cs ├── ConfigureForm.resx ├── CreateCustomAttributeArgumentForm.Designer.cs ├── CreateCustomAttributeArgumentForm.cs ├── CreateCustomAttributeArgumentForm.resx ├── CreateCustomAttributeForm.Designer.cs ├── CreateCustomAttributeForm.cs ├── CreateCustomAttributeForm.resx ├── CreateCustomAttributeNamedArgumentForm.Designer.cs ├── CreateCustomAttributeNamedArgumentForm.cs ├── CreateCustomAttributeNamedArgumentForm.resx ├── CreateExceptionHandlerForm.Designer.cs ├── CreateExceptionHandlerForm.cs ├── CreateExceptionHandlerForm.resx ├── CreateInstructionForm.Designer.cs ├── CreateInstructionForm.cs ├── CreateInstructionForm.resx ├── CreateInterfaceForm.Designer.cs ├── CreateInterfaceForm.cs ├── CreateInterfaceForm.resx ├── CreateOverrideForm.Designer.cs ├── CreateOverrideForm.cs ├── CreateOverrideForm.resx ├── CreateParameterForm.Designer.cs ├── CreateParameterForm.cs ├── CreateParameterForm.resx ├── CreateVariableForm.Designer.cs ├── CreateVariableForm.cs ├── CreateVariableForm.resx ├── CustomAttributeArgumentForm.Designer.cs ├── CustomAttributeArgumentForm.cs ├── CustomAttributeArgumentForm.resx ├── CustomAttributeForm.Designer.cs ├── CustomAttributeForm.cs ├── CustomAttributeForm.resx ├── CustomAttributeNamedArgumentForm.Designer.cs ├── CustomAttributeNamedArgumentForm.cs ├── CustomAttributeNamedArgumentForm.resx ├── DirectoryScanForm.Designer.cs ├── DirectoryScanForm.cs ├── DirectoryScanForm.resx ├── EditCustomAttributeArgumentForm.Designer.cs ├── EditCustomAttributeArgumentForm.cs ├── EditCustomAttributeArgumentForm.resx ├── EditCustomAttributeForm.Designer.cs ├── EditCustomAttributeForm.cs ├── EditCustomAttributeForm.resx ├── EditCustomAttributeNamedArgumentForm.Designer.cs ├── EditCustomAttributeNamedArgumentForm.cs ├── EditCustomAttributeNamedArgumentForm.resx ├── EditExceptionHandlerForm.Designer.cs ├── EditExceptionHandlerForm.cs ├── EditExceptionHandlerForm.resx ├── EditInstructionForm.Designer.cs ├── EditInstructionForm.cs ├── EditInstructionForm.resx ├── EditInterfaceForm.Designer.cs ├── EditInterfaceForm.cs ├── EditInterfaceForm.resx ├── EditOverrideForm.Designer.cs ├── EditOverrideForm.cs ├── EditOverrideForm.resx ├── EditParameterForm.Designer.cs ├── EditParameterForm.cs ├── EditParameterForm.resx ├── EditVariableForm.Designer.cs ├── EditVariableForm.cs ├── EditVariableForm.resx ├── ExceptionHandlerForm.Designer.cs ├── ExceptionHandlerForm.cs ├── ExceptionHandlerForm.resx ├── GenericInstanceForm.Designer.cs ├── GenericInstanceForm.cs ├── GenericInstanceForm.resx ├── GenericInstanceMethodForm.cs ├── GenericInstanceTypeForm.cs ├── HexFindCancelForm.cs ├── HexFindCancelForm.resx ├── HexFindForm.cs ├── HexFindForm.resx ├── HexGotoForm.cs ├── HexGotoForm.resx ├── InjectForm.Designer.cs ├── InjectForm.cs ├── InjectForm.resx ├── InstructionForm.Designer.cs ├── InstructionForm.cs ├── InstructionForm.resx ├── InstructionSelectForm.Designer.cs ├── InstructionSelectForm.cs ├── InstructionSelectForm.resx ├── IntellisenseForm.Designer.cs ├── IntellisenseForm.cs ├── IntellisenseForm.resx ├── InterfaceForm.Designer.cs ├── InterfaceForm.cs ├── InterfaceForm.resx ├── MemberReferenceForm.Designer.cs ├── MemberReferenceForm.cs ├── MemberReferenceForm.resx ├── ObfuscatorForm.Designer.cs ├── ObfuscatorForm.cs ├── ObfuscatorForm.resx ├── OverrideForm.Designer.cs ├── OverrideForm.cs ├── OverrideForm.resx ├── ParameterForm.Designer.cs ├── ParameterForm.cs ├── ParameterForm.resx ├── PropertyGridForm.Designer.cs ├── PropertyGridForm.cs ├── PropertyGridForm.resx ├── ReferenceUpdaterForm.Designer.cs ├── ReferenceUpdaterForm.cs ├── ReferenceUpdaterForm.resx ├── ReflexilWindow.Designer.cs ├── ReflexilWindow.cs ├── ReflexilWindow.resx ├── RenameForm.Designer.cs ├── RenameForm.cs ├── RenameForm.resx ├── StrongNameForm.Designer.cs ├── StrongNameForm.cs ├── StrongNameForm.resx ├── StrongNameRemoverForm.Designer.cs ├── StrongNameRemoverForm.cs ├── StrongNameRemoverForm.resx ├── SyncWarningForm.Designer.cs ├── SyncWarningForm.cs ├── SyncWarningForm.resx ├── TypeSpecificationForm.Designer.cs ├── TypeSpecificationForm.cs ├── TypeSpecificationForm.resx ├── VariableForm.Designer.cs ├── VariableForm.cs ├── VariableForm.resx ├── VerifierForm.Designer.cs ├── VerifierForm.cs └── VerifierForm.resx ├── Handlers ├── AssemblyDefinitionHandler.Designer.cs ├── AssemblyDefinitionHandler.cs ├── AssemblyDefinitionHandler.resx ├── AssemblyLinkedResourceHandler.Designer.cs ├── AssemblyLinkedResourceHandler.cs ├── AssemblyLinkedResourceHandler.resx ├── AssemblyNameReferenceHandler.Designer.cs ├── AssemblyNameReferenceHandler.cs ├── AssemblyNameReferenceHandler.resx ├── EmbeddedResourceHandler.Designer.cs ├── EmbeddedResourceHandler.cs ├── EmbeddedResourceHandler.resx ├── EventDefinitionHandler.Designer.cs ├── EventDefinitionHandler.cs ├── EventDefinitionHandler.resx ├── FieldDefinitionHandler.Designer.cs ├── FieldDefinitionHandler.cs ├── FieldDefinitionHandler.resx ├── IHandler.cs ├── LinkedResourceHandler.Designer.cs ├── LinkedResourceHandler.cs ├── LinkedResourceHandler.resx ├── MergedAssemblyModuleDefinitionHandler.Designer.cs ├── MergedAssemblyModuleDefinitionHandler.cs ├── MergedAssemblyModuleDefinitionHandler.resx ├── MethodDefinitionHandler.Designer.cs ├── MethodDefinitionHandler.cs ├── MethodDefinitionHandler.resx ├── ModuleDefinitionHandler.Designer.cs ├── ModuleDefinitionHandler.cs ├── ModuleDefinitionHandler.resx ├── NotSupportedHandler.Designer.cs ├── NotSupportedHandler.cs ├── NotSupportedHandler.resx ├── PropertyDefinitionHandler.Designer.cs ├── PropertyDefinitionHandler.cs ├── PropertyDefinitionHandler.resx ├── TypeDefinitionHandler.Designer.cs ├── TypeDefinitionHandler.cs └── TypeDefinitionHandler.resx ├── Intellisense ├── CodeCompletionData.cs ├── CodeCompletionKeyHandler.cs ├── CodeCompletionProvider.cs ├── HostCallbackImplementation.cs ├── MethodInsightDataProvider.cs ├── RegionFoldingStrategy.cs └── ToolTipProvider.cs ├── Keys └── reflexil.snk ├── Libs ├── Binaries │ ├── Be.Windows.Forms.HexBox.Reflexil.dll │ └── De4Dot.Reflexil.dll └── Sources │ ├── De4dot │ ├── 0-readme.txt │ ├── 1-download.bat │ ├── 2-patch.bat │ ├── 3-compile.bat │ ├── 4-merge.bat │ ├── X-all.bat │ ├── patch │ │ └── de4dot.netframework.sln │ ├── sources │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ └── build.yml │ │ ├── .gitignore │ │ ├── AssemblyData │ │ │ ├── AssemblyData.csproj │ │ │ ├── AssemblyResolver.cs │ │ │ ├── AssemblyServer.cs │ │ │ ├── AssemblyService.cs │ │ │ ├── DelegateStringDecrypter.cs │ │ │ ├── EmuStringDecrypter.cs │ │ │ ├── GenericService.cs │ │ │ ├── IAssemblyService.cs │ │ │ ├── IGenericService.cs │ │ │ ├── IMethodDecrypterService.cs │ │ │ ├── IStringDecrypter.cs │ │ │ ├── IStringDecrypterService.cs │ │ │ ├── IUserGenericService.cs │ │ │ ├── MethodDecrypterService.cs │ │ │ ├── SimpleData.cs │ │ │ ├── StringDecrypterService.cs │ │ │ ├── Utils.cs │ │ │ └── methodsrewriter │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── CodeGenerator.cs │ │ │ │ ├── IMethodsRewriter.cs │ │ │ │ ├── MField.cs │ │ │ │ ├── MMethod.cs │ │ │ │ ├── MModule.cs │ │ │ │ ├── MType.cs │ │ │ │ ├── MethodsRewriter.cs │ │ │ │ ├── Operand.cs │ │ │ │ ├── Resolver.cs │ │ │ │ ├── ResolverUtils.cs │ │ │ │ ├── TypeInstanceResolver.cs │ │ │ │ └── TypeResolver.cs │ │ ├── AssemblyServer-CLR20-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR20-x64.csproj │ │ │ └── Program.cs │ │ ├── AssemblyServer-CLR20 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR20.csproj │ │ │ └── Program.cs │ │ ├── AssemblyServer-CLR40-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR40-x64.csproj │ │ │ └── Program.cs │ │ ├── AssemblyServer-CLR40 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR40.csproj │ │ │ └── Program.cs │ │ ├── AssemblyServer-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-x64.csproj │ │ │ └── Program.cs │ │ ├── AssemblyServer │ │ │ ├── App.config │ │ │ ├── AssemblyServer.csproj │ │ │ └── Program.cs │ │ ├── COPYING │ │ ├── De4DotCommon.props │ │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ │ ├── LICENSE.QuickLZ.txt │ │ ├── LICENSE.de4dot.txt │ │ ├── LICENSE.dnlib.txt │ │ ├── LICENSE.lzma.txt │ │ ├── LICENSE.lzmat.txt │ │ ├── LICENSE.randomc.txt │ │ ├── README.md │ │ ├── Test.Rename.Dll │ │ │ ├── Test.Rename.Dll.csproj │ │ │ └── Tests.cs │ │ ├── Test.Rename │ │ │ ├── Program.cs │ │ │ └── Test.Rename.csproj │ │ ├── build.ps1 │ │ ├── de4dot-x64 │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ └── de4dot-x64.csproj │ │ ├── de4dot.blocks │ │ │ ├── BaseBlock.cs │ │ │ ├── Block.cs │ │ │ ├── Blocks.cs │ │ │ ├── BlocksSorter.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── DeadBlocksRemover.cs │ │ │ ├── DotNetUtils.cs │ │ │ ├── DumpedMethod.cs │ │ │ ├── DumpedMethods.cs │ │ │ ├── FilterHandlerBlock.cs │ │ │ ├── ForwardScanOrder.cs │ │ │ ├── GenericArgsSubstitutor.cs │ │ │ ├── HandlerBlock.cs │ │ │ ├── Instr.cs │ │ │ ├── InstructionListParser.cs │ │ │ ├── MemberDefDict.cs │ │ │ ├── MethodBlocks.cs │ │ │ ├── ScopeBlock.cs │ │ │ ├── StackTracePatcher.cs │ │ │ ├── TryBlock.cs │ │ │ ├── TryHandlerBlock.cs │ │ │ ├── Utils.cs │ │ │ ├── cflow │ │ │ │ ├── AccessChecker.cs │ │ │ │ ├── BlockCflowDeobfuscator.cs │ │ │ │ ├── BlockDeobfuscator.cs │ │ │ │ ├── BlocksCflowDeobfuscator.cs │ │ │ │ ├── BranchEmulator.cs │ │ │ │ ├── CachedCflowDeobfuscator.cs │ │ │ │ ├── CflowDeobfuscator.cs │ │ │ │ ├── CflowUtils.cs │ │ │ │ ├── ConstantsFolder.cs │ │ │ │ ├── DeadCodeRemover.cs │ │ │ │ ├── DeadStoreRemover.cs │ │ │ │ ├── DupBlockDeobfuscator.cs │ │ │ │ ├── IBlocksDeobfuscator.cs │ │ │ │ ├── ICflowDeobfuscator.cs │ │ │ │ ├── InstructionEmulator.cs │ │ │ │ ├── Int32Value.cs │ │ │ │ ├── Int64Value.cs │ │ │ │ ├── MethodCallInliner.cs │ │ │ │ ├── MethodCallInlinerBase.cs │ │ │ │ ├── Real8Value.cs │ │ │ │ ├── StLdlocFixer.cs │ │ │ │ ├── SwitchCflowDeobfuscator.cs │ │ │ │ ├── Value.cs │ │ │ │ └── ValueStack.cs │ │ │ └── de4dot.blocks.csproj │ │ ├── de4dot.code │ │ │ ├── 7zip │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ └── LzmaDecoder.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ └── ICoder.cs │ │ │ ├── AssemblyClient │ │ │ │ ├── AssemblyClient.cs │ │ │ │ ├── AssemblyClientFactory.cs │ │ │ │ ├── IAssemblyClient.cs │ │ │ │ ├── IAssemblyServerLoader.cs │ │ │ │ ├── IpcAssemblyServerLoader.cs │ │ │ │ ├── NewAppDomainAssemblyServerLoader.cs │ │ │ │ ├── NewProcessAssemblyServerLoader.cs │ │ │ │ ├── SameAppDomainAssemblyServerLoader.cs │ │ │ │ └── ServerClrVersion.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyModule.cs │ │ │ ├── AssemblyResolver.cs │ │ │ ├── DeobfuscatorContext.cs │ │ │ ├── DumpedMethodsRestorer.cs │ │ │ ├── HandleProcessCorruptedStateExceptionsAttribute.cs │ │ │ ├── IDeobfuscatorContext.cs │ │ │ ├── IObfuscatedFile.cs │ │ │ ├── Logger.cs │ │ │ ├── MethodPrinter.cs │ │ │ ├── MethodReturnValueInliner.cs │ │ │ ├── NameRegexes.cs │ │ │ ├── ObfuscatedFile.cs │ │ │ ├── Option.cs │ │ │ ├── PrintNewTokens.cs │ │ │ ├── SharpZipLib │ │ │ │ ├── Checksums │ │ │ │ │ ├── Adler32.cs │ │ │ │ │ └── IChecksum.cs │ │ │ │ ├── Main.cs │ │ │ │ ├── SharpZipBaseException.cs │ │ │ │ └── Zip │ │ │ │ │ └── Compression │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ ├── InflaterDynHeader.cs │ │ │ │ │ ├── InflaterHuffmanTree.cs │ │ │ │ │ └── Streams │ │ │ │ │ ├── OutputWindow.cs │ │ │ │ │ └── StreamManipulator.cs │ │ │ ├── StringInliner.cs │ │ │ ├── UserException.cs │ │ │ ├── Utils.cs │ │ │ ├── Win32Path.cs │ │ │ ├── de4dot.code.csproj │ │ │ ├── deobfuscators │ │ │ │ ├── Agile_NET │ │ │ │ │ ├── CliSecureRtType.cs │ │ │ │ │ ├── CsBlowfish.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── StackFrameHelper.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ ├── StringDecrypterInfo.cs │ │ │ │ │ └── vm │ │ │ │ │ │ ├── CilOperandInstructionRestorer.cs │ │ │ │ │ │ ├── CsvmDataReader.cs │ │ │ │ │ │ ├── CsvmMethodData.cs │ │ │ │ │ │ ├── CsvmToCilMethodConverterBase.cs │ │ │ │ │ │ ├── VmOperand.cs │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ │ ├── FieldsInfo.cs │ │ │ │ │ │ ├── OpCodeHandler.cs │ │ │ │ │ │ ├── OpCodeHandlers.cs │ │ │ │ │ │ ├── UnknownHandlerInfo.cs │ │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── CSVM1.bin │ │ │ │ │ │ ├── CSVM2.bin │ │ │ │ │ │ ├── CSVM3.bin │ │ │ │ │ │ ├── CSVM4.bin │ │ │ │ │ │ ├── CSVM5.bin │ │ │ │ │ │ ├── CSVM6.bin │ │ │ │ │ │ ├── CompositeHandlerDetector.cs │ │ │ │ │ │ ├── CompositeOpCodeHandler.cs │ │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ │ ├── CsvmInfo.cs │ │ │ │ │ │ ├── CsvmResources.Designer.cs │ │ │ │ │ │ ├── CsvmResources.resx │ │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ │ ├── HandlerTypeCode.cs │ │ │ │ │ │ ├── OpCodeHandlerInfo.cs │ │ │ │ │ │ ├── OpCodeHandlerInfoReader.cs │ │ │ │ │ │ ├── OpCodeHandlerInfos.cs │ │ │ │ │ │ ├── SigCreator.cs │ │ │ │ │ │ ├── VmOpCode.cs │ │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ │ ├── AllTypesHelper.cs │ │ │ │ ├── ArrayFinder.cs │ │ │ │ ├── Babel_NET │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── BabelInflater.cs │ │ │ │ │ ├── BabelMethodCallInliner.cs │ │ │ │ │ ├── BabelUtils.cs │ │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── ImageReader.cs │ │ │ │ │ ├── InflaterCreator.cs │ │ │ │ │ ├── MemberReferenceConverter.cs │ │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ │ ├── MethodReferenceReader.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Blowfish.cs │ │ │ │ ├── CRC32.cs │ │ │ │ ├── CodeFort │ │ │ │ │ ├── AssemblyData.cs │ │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ │ ├── CfMethodCallInliner.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── PasswordFinder.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── CodeVeil │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── DataReaderUtils.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── ErexResourceReader.cs │ │ │ │ │ ├── InvalidDataException.cs │ │ │ │ │ ├── InvalidMethodsFinder.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ObfuscatorVersion.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceConverter.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceInfo.cs │ │ │ │ │ ├── ResourceReader.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── TamperDetection.cs │ │ │ │ ├── CodeWall │ │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── KeyGenerator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── randomc │ │ │ │ │ │ ├── CRandomMersenne.cs │ │ │ │ │ │ └── CRandomMother.cs │ │ │ │ ├── Confuser │ │ │ │ │ ├── AntiDebugger.cs │ │ │ │ │ ├── AntiDumping.cs │ │ │ │ │ ├── Arg64ConstantsReader.cs │ │ │ │ │ ├── ConfuserUtils.cs │ │ │ │ │ ├── ConstantsDecrypterBase.cs │ │ │ │ │ ├── ConstantsDecrypterUtils.cs │ │ │ │ │ ├── ConstantsDecrypterV15.cs │ │ │ │ │ ├── ConstantsDecrypterV17.cs │ │ │ │ │ ├── ConstantsDecrypterV18.cs │ │ │ │ │ ├── ConstantsFolder.cs │ │ │ │ │ ├── ConstantsInliner.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── IVersionProvider.cs │ │ │ │ │ ├── JitMethodsDecrypter.cs │ │ │ │ │ ├── MemoryMethodsDecrypter.cs │ │ │ │ │ ├── MethodsDecrypterBase.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ ├── Unpacker.cs │ │ │ │ │ ├── VersionDetector.cs │ │ │ │ │ └── x86Emulator.cs │ │ │ │ ├── ConstantsReader.cs │ │ │ │ ├── CryptoObfuscator │ │ │ │ │ ├── AntiDebugger.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CoMethodCallInliner.cs │ │ │ │ │ ├── CoUtils.cs │ │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── InlinedMethodTypes.cs │ │ │ │ │ ├── LdnullFixer.cs │ │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── TamperDetection.cs │ │ │ │ ├── DeepSea │ │ │ │ │ ├── ArrayBlockDeobfuscator.cs │ │ │ │ │ ├── ArrayBlockState.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CastDeobfuscator.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DsConstantsReader.cs │ │ │ │ │ ├── DsInlinedMethodsFinder.cs │ │ │ │ │ ├── DsMethodCallInliner.cs │ │ │ │ │ ├── DsUtils.cs │ │ │ │ │ ├── FieldsRestorer.cs │ │ │ │ │ ├── ResolverBase.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── DeobUtils.cs │ │ │ │ ├── DeobfuscatorBase.cs │ │ │ │ ├── DeobfuscatorInfoBase.cs │ │ │ │ ├── Dotfuscator │ │ │ │ │ ├── CflowDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── StringBuilderDecrypter.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Eazfuscator_NET │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CodeCompilerMethodCallRestorer.cs │ │ │ │ │ ├── DecrypterType.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DynamicDynocodeIterator.cs │ │ │ │ │ ├── DynocodeService.cs │ │ │ │ │ ├── EfConstantsReader.cs │ │ │ │ │ ├── EfUtils.cs │ │ │ │ │ ├── ResourceMethodsRestorer.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── VersionDetector.cs │ │ │ │ ├── ExceptionLoggerRemover.cs │ │ │ │ ├── Goliath_NET │ │ │ │ │ ├── ArrayDecrypter.cs │ │ │ │ │ ├── ArrayValueInliner.cs │ │ │ │ │ ├── DecrypterBase.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── IntegerDecrypter.cs │ │ │ │ │ ├── LocalsRestorer.cs │ │ │ │ │ ├── LogicalExpressionFixer.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── StrongNameChecker.cs │ │ │ │ ├── IDeobfuscatedFile.cs │ │ │ │ ├── IDeobfuscator.cs │ │ │ │ ├── IDeobfuscatorInfo.cs │ │ │ │ ├── ILProtector │ │ │ │ │ ├── DecryptedMethodInfo.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DynamicMethodsDecrypter.cs │ │ │ │ │ ├── DynamicMethodsDecrypterService.cs │ │ │ │ │ ├── DynamicMethodsRestorer.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── MethodReader.cs │ │ │ │ │ ├── MethodsDecrypterBase.cs │ │ │ │ │ ├── RuntimeFileInfo.cs │ │ │ │ │ └── StaticMethodsDecrypter.cs │ │ │ │ ├── ISimpleDeobfuscator.cs │ │ │ │ ├── InitializedDataCreator.cs │ │ │ │ ├── InlinedMethodsFinder.cs │ │ │ │ ├── MPRESS │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ └── Lzmat.cs │ │ │ │ ├── MaxtoCode │ │ │ │ │ ├── CryptDecrypter.cs │ │ │ │ │ ├── Decrypter6.cs │ │ │ │ │ ├── DecrypterInfo.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── EncryptionInfos.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── McKey.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── PeHeader.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── MemberReferenceBuilder.cs │ │ │ │ ├── MethodBodyParser.cs │ │ │ │ ├── MethodCallRestorerBase.cs │ │ │ │ ├── MethodCollection.cs │ │ │ │ ├── MethodStack.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── MyPEImage.cs │ │ │ │ ├── NullStream.cs │ │ │ │ ├── Operations.cs │ │ │ │ ├── ProxyCallFixerBase.cs │ │ │ │ ├── QuickLZ.cs │ │ │ │ ├── RandomNameChecker.cs │ │ │ │ ├── Rummage │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── RummageVersion.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Skater_NET │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── EnumClassFinder.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── SmartAssembly │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── AssemblyResolverInfo.cs │ │ │ │ │ ├── AutomatedErrorReportingFinder.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── MemoryManagerInfo.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResolverInfoBase.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceDecrypterInfo.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── ResourceResolverInfo.cs │ │ │ │ │ ├── SimpleZipInfo.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ ├── StringDecrypterInfo.cs │ │ │ │ │ ├── StringEncoderClassFinder.cs │ │ │ │ │ └── TamperProtectionRemover.cs │ │ │ │ ├── Spices_Net │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── QclzDecompressor.cs │ │ │ │ │ ├── ResourceNamesRestorer.cs │ │ │ │ │ ├── SpicesMethodCallInliner.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── StringCounts.cs │ │ │ │ ├── TypesRestorer.cs │ │ │ │ ├── Unknown │ │ │ │ │ └── Deobfuscator.cs │ │ │ │ ├── UnpackedFile.cs │ │ │ │ ├── UnusedMethodsFinder.cs │ │ │ │ ├── ValueInlinerBase.cs │ │ │ │ ├── Xenocode │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ └── dotNET_Reactor │ │ │ │ │ ├── v3 │ │ │ │ │ ├── AntiStrongName.cs │ │ │ │ │ ├── ApplicationModeDecrypter.cs │ │ │ │ │ ├── ApplicationModeUnpacker.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── DecryptMethod.cs │ │ │ │ │ ├── DecrypterType.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── LibAssemblyResolver.cs │ │ │ │ │ ├── MemoryPatcher.cs │ │ │ │ │ └── NativeLibSaver.cs │ │ │ │ │ └── v4 │ │ │ │ │ ├── AntiStrongname.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── BooleanDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DnrMethodCallInliner.cs │ │ │ │ │ ├── EmptyClass.cs │ │ │ │ │ ├── EncryptedResource.cs │ │ │ │ │ ├── MetadataTokenObfuscator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── NativeFileDecrypter.cs │ │ │ │ │ ├── NativeImageUnpacker.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ └── renamer │ │ │ │ ├── DerivedFrom.cs │ │ │ │ ├── ExistingNames.cs │ │ │ │ ├── INameChecker.cs │ │ │ │ ├── MemberInfos.cs │ │ │ │ ├── NameCreators.cs │ │ │ │ ├── Renamer.cs │ │ │ │ ├── ResourceKeysRenamer.cs │ │ │ │ ├── ResourceRenamer.cs │ │ │ │ ├── TypeInfo.cs │ │ │ │ ├── TypeNames.cs │ │ │ │ ├── TypeRenamerState.cs │ │ │ │ ├── VariableNameState.cs │ │ │ │ └── asmmodules │ │ │ │ ├── EventDef.cs │ │ │ │ ├── FieldDef.cs │ │ │ │ ├── GenericParamDef.cs │ │ │ │ ├── IResolver.cs │ │ │ │ ├── MemberRefFinder.cs │ │ │ │ ├── MethodDef.cs │ │ │ │ ├── MethodNameGroups.cs │ │ │ │ ├── Module.cs │ │ │ │ ├── Modules.cs │ │ │ │ ├── ParamDef.cs │ │ │ │ ├── PropertyDef.cs │ │ │ │ ├── Ref.cs │ │ │ │ ├── RefDict.cs │ │ │ │ └── TypeDef.cs │ │ ├── de4dot.cui │ │ │ ├── CommandLineParser.cs │ │ │ ├── FilesDeobfuscator.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── de4dot.cui.csproj │ │ ├── de4dot.mdecrypt │ │ │ ├── DecryptMethodsInfo.cs │ │ │ ├── DynamicMethodsDecrypter.cs │ │ │ ├── NativeCodeGenerator.cs │ │ │ └── de4dot.mdecrypt.csproj │ │ ├── de4dot.netcore.sln │ │ ├── de4dot.netframework.sln │ │ ├── de4dot.snk │ │ ├── de4dot │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ └── de4dot.csproj │ │ ├── deobfuscator.Template │ │ │ ├── deobfuscator.Template.csproj │ │ │ └── readme.txt │ │ └── dnlib │ │ │ ├── dnlib.snk │ │ │ └── src │ │ │ ├── DefaultDllImportSearchPathsAttribute.cs │ │ │ ├── DotNet │ │ │ ├── AllTypesHelper.cs │ │ │ ├── AssemblyAttributes.cs │ │ │ ├── AssemblyDef.cs │ │ │ ├── AssemblyHash.cs │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ ├── AssemblyNameComparer.cs │ │ │ ├── AssemblyNameInfo.cs │ │ │ ├── AssemblyRef.cs │ │ │ ├── AssemblyResolver.cs │ │ │ ├── CallingConvention.cs │ │ │ ├── CallingConventionSig.cs │ │ │ ├── ClassLayout.cs │ │ │ ├── Constant.cs │ │ │ ├── CorLibTypes.cs │ │ │ ├── CpuArch.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── CustomAttributeCollection.cs │ │ │ ├── CustomAttributeReader.cs │ │ │ ├── DeclSecurity.cs │ │ │ ├── DeclSecurityReader.cs │ │ │ ├── ElementType.cs │ │ │ ├── Emit │ │ │ │ ├── Code.cs │ │ │ │ ├── DynamicMethodBodyReader.cs │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ ├── ExceptionHandlerType.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── FlowControl.cs │ │ │ │ ├── Instruction.cs │ │ │ │ ├── InstructionPrinter.cs │ │ │ │ ├── InvalidMethodException.cs │ │ │ │ ├── LocalList.cs │ │ │ │ ├── MethodBody.cs │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ ├── MethodBodyReaderBase.cs │ │ │ │ ├── MethodTableToTypeConverter.cs │ │ │ │ ├── MethodUtils.cs │ │ │ │ ├── OpCode.cs │ │ │ │ ├── OpCodeType.cs │ │ │ │ ├── OpCodes.cs │ │ │ │ ├── OperandType.cs │ │ │ │ └── StackBehaviour.cs │ │ │ ├── EventAttributes.cs │ │ │ ├── EventDef.cs │ │ │ ├── ExportedType.cs │ │ │ ├── Extensions.cs │ │ │ ├── FieldAttributes.cs │ │ │ ├── FieldDef.cs │ │ │ ├── FileAttributes.cs │ │ │ ├── FileDef.cs │ │ │ ├── FrameworkRedirect.cs │ │ │ ├── FullNameFactory.cs │ │ │ ├── GenericArguments.cs │ │ │ ├── GenericParam.cs │ │ │ ├── GenericParamAttributes.cs │ │ │ ├── GenericParamConstraint.cs │ │ │ ├── GenericParamContext.cs │ │ │ ├── IAssemblyResolver.cs │ │ │ ├── ICodedToken.cs │ │ │ ├── ICorLibTypes.cs │ │ │ ├── ICustomAttribute.cs │ │ │ ├── IDecrypters.cs │ │ │ ├── ILogger.cs │ │ │ ├── IResolver.cs │ │ │ ├── ITokenResolver.cs │ │ │ ├── IType.cs │ │ │ ├── ITypeDefFinder.cs │ │ │ ├── IVariable.cs │ │ │ ├── ImplMap.cs │ │ │ ├── Importer.cs │ │ │ ├── InterfaceImpl.cs │ │ │ ├── MD │ │ │ │ ├── BlobStream.cs │ │ │ │ ├── CodedToken.cs │ │ │ │ ├── ColumnInfo.cs │ │ │ │ ├── ColumnSize.cs │ │ │ │ ├── ComImageFlags.cs │ │ │ │ ├── CompressedMetaData.cs │ │ │ │ ├── CustomDotNetStream.cs │ │ │ │ ├── DotNetStream.cs │ │ │ │ ├── DotNetTableSizes.cs │ │ │ │ ├── ENCMetaData.cs │ │ │ │ ├── GuidStream.cs │ │ │ │ ├── HeapType.cs │ │ │ │ ├── IRowReaders.cs │ │ │ │ ├── ImageCor20Header.cs │ │ │ │ ├── MDHeaderRuntimeVersion.cs │ │ │ │ ├── MDStreamFlags.cs │ │ │ │ ├── MDTable.cs │ │ │ │ ├── MetaData.cs │ │ │ │ ├── MetaDataHeader.cs │ │ │ │ ├── MetadataBase.cs │ │ │ │ ├── MetadataFactory.cs │ │ │ │ ├── PdbStream.cs │ │ │ │ ├── RawRowEqualityComparer.cs │ │ │ │ ├── RawTableRows.cs │ │ │ │ ├── RidList.cs │ │ │ │ ├── StorageFlags.cs │ │ │ │ ├── StreamHeader.cs │ │ │ │ ├── StringsStream.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TableInfo.cs │ │ │ │ ├── TablesStream.cs │ │ │ │ ├── TablesStream_Read.cs │ │ │ │ └── USStream.cs │ │ │ ├── MDToken.cs │ │ │ ├── ManifestResource.cs │ │ │ ├── ManifestResourceAttributes.cs │ │ │ ├── MarshalBlobReader.cs │ │ │ ├── MarshalType.cs │ │ │ ├── MemberFinder.cs │ │ │ ├── MemberMDInitializer.cs │ │ │ ├── MemberRef.cs │ │ │ ├── MethodAttributes.cs │ │ │ ├── MethodDef.cs │ │ │ ├── MethodExportInfo.cs │ │ │ ├── MethodExportInfoProvider.cs │ │ │ ├── MethodImplAttributes.cs │ │ │ ├── MethodOverride.cs │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ ├── MethodSpec.cs │ │ │ ├── ModuleContext.cs │ │ │ ├── ModuleCreationOptions.cs │ │ │ ├── ModuleDef.cs │ │ │ ├── ModuleDefMD.cs │ │ │ ├── ModuleKind.cs │ │ │ ├── ModuleLoader.cs │ │ │ ├── ModuleRef.cs │ │ │ ├── NativeType.cs │ │ │ ├── NullResolver.cs │ │ │ ├── PInvokeAttributes.cs │ │ │ ├── ParamAttributes.cs │ │ │ ├── ParamDef.cs │ │ │ ├── ParameterList.cs │ │ │ ├── Pdb │ │ │ │ ├── CustomDebugInfoGuids.cs │ │ │ │ ├── DataReaderFactoryUtils.cs │ │ │ │ ├── Dss │ │ │ │ │ ├── ComInterfaces.cs │ │ │ │ │ ├── DataReaderIStream.cs │ │ │ │ │ ├── MDEmitter.cs │ │ │ │ │ ├── MetaDataImport.cs │ │ │ │ │ ├── ReaderMetaDataImport.cs │ │ │ │ │ ├── StreamIStream.cs │ │ │ │ │ ├── SymbolDocumentImpl.cs │ │ │ │ │ ├── SymbolDocumentWriter.cs │ │ │ │ │ ├── SymbolMethodImpl.cs │ │ │ │ │ ├── SymbolNamespaceImpl.cs │ │ │ │ │ ├── SymbolReaderImpl.cs │ │ │ │ │ ├── SymbolReaderWriterFactory.cs │ │ │ │ │ ├── SymbolScopeImpl.cs │ │ │ │ │ ├── SymbolVariableImpl.cs │ │ │ │ │ └── SymbolWriterImpl.cs │ │ │ │ ├── IMAGE_DEBUG_DIRECTORY.cs │ │ │ │ ├── Managed │ │ │ │ │ ├── DbiDocument.cs │ │ │ │ │ ├── DbiFunction.cs │ │ │ │ │ ├── DbiModule.cs │ │ │ │ │ ├── DbiNamespace.cs │ │ │ │ │ ├── DbiScope.cs │ │ │ │ │ ├── DbiVariable.cs │ │ │ │ │ ├── ModuleStreamType.cs │ │ │ │ │ ├── MsfStream.cs │ │ │ │ │ ├── NumericLeaf.cs │ │ │ │ │ ├── NumericReader.cs │ │ │ │ │ ├── PdbAddress.cs │ │ │ │ │ ├── PdbException.cs │ │ │ │ │ ├── PdbReader.cs │ │ │ │ │ ├── SymbolReaderFactory.cs │ │ │ │ │ └── SymbolType.cs │ │ │ │ ├── PdbConstant.cs │ │ │ │ ├── PdbCustomDebugInfo.cs │ │ │ │ ├── PdbDocument.cs │ │ │ │ ├── PdbDocumentConstants.cs │ │ │ │ ├── PdbFileKind.cs │ │ │ │ ├── PdbImport.cs │ │ │ │ ├── PdbLocal.cs │ │ │ │ ├── PdbLocalAttributes.cs │ │ │ │ ├── PdbMethod.cs │ │ │ │ ├── PdbReaderContext.cs │ │ │ │ ├── PdbReaderOptions.cs │ │ │ │ ├── PdbScope.cs │ │ │ │ ├── PdbState.cs │ │ │ │ ├── PdbUtils.cs │ │ │ │ ├── Portable │ │ │ │ │ ├── DocumentNameReader.cs │ │ │ │ │ ├── ImportDefinitionKindUtils.cs │ │ │ │ │ ├── ImportScopeBlobReader.cs │ │ │ │ │ ├── ImportScopeBlobWriter.cs │ │ │ │ │ ├── ListCache.cs │ │ │ │ │ ├── LocalConstantSigBlobReader.cs │ │ │ │ │ ├── LocalConstantSigBlobWriter.cs │ │ │ │ │ ├── PortablePdbCustomDebugInfoReader.cs │ │ │ │ │ ├── PortablePdbCustomDebugInfoWriter.cs │ │ │ │ │ ├── PortablePdbReader.cs │ │ │ │ │ ├── SequencePointConstants.cs │ │ │ │ │ ├── SymbolDocumentImpl.cs │ │ │ │ │ ├── SymbolMethodImpl.cs │ │ │ │ │ ├── SymbolReaderFactory.cs │ │ │ │ │ ├── SymbolScopeImpl.cs │ │ │ │ │ └── SymbolVariableImpl.cs │ │ │ │ ├── SequencePoint.cs │ │ │ │ ├── SymbolReaderFactory.cs │ │ │ │ ├── Symbols │ │ │ │ │ ├── SymbolAsyncStepInfo.cs │ │ │ │ │ ├── SymbolDocument.cs │ │ │ │ │ ├── SymbolMethod.cs │ │ │ │ │ ├── SymbolNamespace.cs │ │ │ │ │ ├── SymbolReader.cs │ │ │ │ │ ├── SymbolScope.cs │ │ │ │ │ ├── SymbolSequencePoint.cs │ │ │ │ │ └── SymbolVariable.cs │ │ │ │ └── WindowsPdb │ │ │ │ │ ├── CorSymVarFlag.cs │ │ │ │ │ ├── CustomDebugInfoConstants.cs │ │ │ │ │ ├── PdbCustomDebugInfoReader.cs │ │ │ │ │ ├── PdbCustomDebugInfoWriter.cs │ │ │ │ │ ├── PseudoCustomDebugInfoFactory.cs │ │ │ │ │ ├── SymbolWriter.cs │ │ │ │ │ └── WindowsPdbWriter.cs │ │ │ ├── PropertyAttributes.cs │ │ │ ├── PropertyDef.cs │ │ │ ├── PublicKey.cs │ │ │ ├── PublicKeyBase.cs │ │ │ ├── PublicKeyToken.cs │ │ │ ├── RecursionCounter.cs │ │ │ ├── ReflectionExtensions.cs │ │ │ ├── ResolveException.cs │ │ │ ├── Resolver.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceCollection.cs │ │ │ ├── Resources │ │ │ │ ├── BuiltInResourceData.cs │ │ │ │ ├── IResourceData.cs │ │ │ │ ├── ResourceDataFactory.cs │ │ │ │ ├── ResourceElement.cs │ │ │ │ ├── ResourceElementSet.cs │ │ │ │ ├── ResourceReader.cs │ │ │ │ ├── ResourceTypeCode.cs │ │ │ │ ├── ResourceWriter.cs │ │ │ │ ├── UserResourceData.cs │ │ │ │ └── UserResourceType.cs │ │ │ ├── SecurityAction.cs │ │ │ ├── SecurityAttribute.cs │ │ │ ├── SerializationType.cs │ │ │ ├── SigComparer.cs │ │ │ ├── SignatureReader.cs │ │ │ ├── StandAloneSig.cs │ │ │ ├── StrongNameKey.cs │ │ │ ├── StrongNameSigner.cs │ │ │ ├── TIAHelper.cs │ │ │ ├── TypeAttributes.cs │ │ │ ├── TypeDef.cs │ │ │ ├── TypeDefFinder.cs │ │ │ ├── TypeHelper.cs │ │ │ ├── TypeNameParser.cs │ │ │ ├── TypeRef.cs │ │ │ ├── TypeSig.cs │ │ │ ├── TypeSpec.cs │ │ │ ├── UTF8String.cs │ │ │ ├── Utils.cs │ │ │ ├── VTableFixups.cs │ │ │ ├── VariantType.cs │ │ │ ├── WinMDHelpers.cs │ │ │ ├── WinMDStatus.cs │ │ │ └── Writer │ │ │ │ ├── ArrayWriter.cs │ │ │ │ ├── BlobHeap.cs │ │ │ │ ├── ByteArrayChunk.cs │ │ │ │ ├── ChecksumAlgorithm.cs │ │ │ │ ├── ChunkList.cs │ │ │ │ ├── ChunkListBase.cs │ │ │ │ ├── CustomAttributeWriter.cs │ │ │ │ ├── DataReaderChunk.cs │ │ │ │ ├── DataReaderHeap.cs │ │ │ │ ├── DataWriter.cs │ │ │ │ ├── DebugDirectory.cs │ │ │ │ ├── DeclSecurityWriter.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── GuidHeap.cs │ │ │ │ ├── Hasher.cs │ │ │ │ ├── HeapBase.cs │ │ │ │ ├── IChunk.cs │ │ │ │ ├── IHeap.cs │ │ │ │ ├── IOffsetHeap.cs │ │ │ │ ├── IWriterError.cs │ │ │ │ ├── ImageCor20Header.cs │ │ │ │ ├── ImportAddressTable.cs │ │ │ │ ├── ImportDirectory.cs │ │ │ │ ├── MDTable.cs │ │ │ │ ├── MDTableWriter.cs │ │ │ │ ├── ManagedExportsWriter.cs │ │ │ │ ├── MarshalBlobWriter.cs │ │ │ │ ├── MaxStackCalculator.cs │ │ │ │ ├── MetaData.cs │ │ │ │ ├── MetaDataHeader.cs │ │ │ │ ├── MetadataEvent.cs │ │ │ │ ├── MethodBody.cs │ │ │ │ ├── MethodBodyChunks.cs │ │ │ │ ├── MethodBodyWriter.cs │ │ │ │ ├── MethodBodyWriterBase.cs │ │ │ │ ├── ModuleWriter.cs │ │ │ │ ├── ModuleWriterBase.cs │ │ │ │ ├── ModuleWriterEvent.cs │ │ │ │ ├── ModuleWriterException.cs │ │ │ │ ├── NativeModuleWriter.cs │ │ │ │ ├── NetResources.cs │ │ │ │ ├── NormalMetaData.cs │ │ │ │ ├── PEHeaders.cs │ │ │ │ ├── PESection.cs │ │ │ │ ├── PdbHeap.cs │ │ │ │ ├── PortablePdbConstants.cs │ │ │ │ ├── PreserveTokensMetaData.cs │ │ │ │ ├── RelocDirectory.cs │ │ │ │ ├── RoslynContentIdProvider.cs │ │ │ │ ├── SectionSizes.cs │ │ │ │ ├── SerializerMethodContext.cs │ │ │ │ ├── SignatureWriter.cs │ │ │ │ ├── StartupStub.cs │ │ │ │ ├── StringsHeap.cs │ │ │ │ ├── StrongNameSignature.cs │ │ │ │ ├── TablesHeap.cs │ │ │ │ ├── USHeap.cs │ │ │ │ ├── UniqueChunkList.cs │ │ │ │ ├── Win32ResourcesChunk.cs │ │ │ │ └── WriterUtils.cs │ │ │ ├── ExtensionAttribute.cs │ │ │ ├── HandleProcessCorruptedStateExceptionsAttribute.cs │ │ │ ├── IO │ │ │ ├── AlignedByteArrayDataStream.cs │ │ │ ├── AlignedNativeMemoryDataStream.cs │ │ │ ├── ByteArrayDataReaderFactory.cs │ │ │ ├── DataReader.cs │ │ │ ├── DataReaderFactory.cs │ │ │ ├── DataReaderFactoryFactory.cs │ │ │ ├── DataReaderStream.cs │ │ │ ├── DataStream.cs │ │ │ ├── DataStreamFactory.cs │ │ │ ├── EmptyDataStream.cs │ │ │ ├── FileOffset.cs │ │ │ ├── FileSection.cs │ │ │ ├── IFileSection.cs │ │ │ ├── IOExtensions.cs │ │ │ ├── MemoryMappedDataReaderFactory.cs │ │ │ ├── NativeMemoryDataReaderFactory.cs │ │ │ ├── UnalignedByteArrayDataStream.cs │ │ │ └── UnalignedNativeMemoryDataStream.cs │ │ │ ├── PE │ │ │ ├── Characteristics.cs │ │ │ ├── DllCharacteristics.cs │ │ │ ├── IImageOptionalHeader.cs │ │ │ ├── IPEImage.cs │ │ │ ├── IPEType.cs │ │ │ ├── ImageDataDirectory.cs │ │ │ ├── ImageDebugDirectory.cs │ │ │ ├── ImageDebugType.cs │ │ │ ├── ImageDosHeader.cs │ │ │ ├── ImageFileHeader.cs │ │ │ ├── ImageNTHeaders.cs │ │ │ ├── ImageOptionalHeader32.cs │ │ │ ├── ImageOptionalHeader64.cs │ │ │ ├── ImageSectionHeader.cs │ │ │ ├── Machine.cs │ │ │ ├── PEExtensions.cs │ │ │ ├── PEImage.cs │ │ │ ├── PEInfo.cs │ │ │ ├── ProcessorArchUtils.cs │ │ │ ├── RVA.cs │ │ │ └── Subsystem.cs │ │ │ ├── Settings.cs │ │ │ ├── Threading │ │ │ ├── ICancellationToken.cs │ │ │ └── Lock.cs │ │ │ ├── Utils │ │ │ ├── ArrayEmpty.cs │ │ │ ├── CollectionDebugView.cs │ │ │ ├── ILazyList.cs │ │ │ ├── LazyList.cs │ │ │ ├── SimpleLazyList.cs │ │ │ └── UserValue.cs │ │ │ ├── W32Resources │ │ │ ├── ResourceData.cs │ │ │ ├── ResourceDirectory.cs │ │ │ ├── ResourceDirectoryEntry.cs │ │ │ ├── ResourceName.cs │ │ │ └── Win32Resources.cs │ │ │ └── dnlib.csproj │ └── tools │ │ ├── ILMerge.exe │ │ ├── cp.exe │ │ ├── curl.exe │ │ ├── mv.exe │ │ ├── rm.exe │ │ ├── rpl.exe │ │ └── unzip.exe │ ├── ICSharpCode.NRefactory.Reflexil │ ├── Ast │ │ ├── AbstractNode.cs │ │ ├── Enums.cs │ │ ├── General │ │ │ ├── BlockStatement.cs │ │ │ ├── CompilationUnit.cs │ │ │ ├── Expression.cs │ │ │ ├── LocalVariableDeclaration.cs │ │ │ ├── PrimitiveExpression.cs │ │ │ └── Statement.cs │ │ ├── Generated.cs │ │ ├── INode.cs │ │ ├── INullable.cs │ │ └── TypeReference.cs │ ├── AstBuilder │ │ ├── ExpressionBuilder.cs │ │ └── StatementBuilder.cs │ ├── EnvironmentInformationProvider.cs │ ├── Extensions │ │ ├── StringExtensions.cs │ │ └── XmlConvertExtensions.cs │ ├── IAstVisitor.cs │ ├── ICSharpCode.NRefactory.Reflexil.csproj │ ├── Lexer │ │ ├── AbstractLexer.cs │ │ ├── CSharp │ │ │ ├── ConditionalCompilation.cs │ │ │ ├── KeywordList.txt │ │ │ ├── Keywords.cs │ │ │ ├── Lexer.cs │ │ │ └── Tokens.cs │ │ ├── ILexer.cs │ │ ├── LATextReader.cs │ │ ├── LexerMemento.cs │ │ ├── LookupTable.cs │ │ ├── SavepointEventArgs.cs │ │ ├── Special │ │ │ ├── BlankLine.cs │ │ │ ├── Comment.cs │ │ │ ├── CommentType.cs │ │ │ ├── ISpecial.cs │ │ │ ├── PreProcessingDirective.cs │ │ │ ├── SpecialTracker.cs │ │ │ └── TagComment.cs │ │ ├── Token.cs │ │ └── VBNet │ │ │ ├── Block.cs │ │ │ ├── ExpressionFinder.atg │ │ │ ├── ExpressionFinder.cs │ │ │ ├── ExpressionFinderState.cs │ │ │ ├── Extensions.cs │ │ │ ├── KeywordList.txt │ │ │ ├── Keywords.cs │ │ │ ├── Lexer.cs │ │ │ ├── Parser.cs │ │ │ ├── PushParser.frame │ │ │ ├── Tokens.cs │ │ │ ├── VBLexerMemento.cs │ │ │ └── XmlModeInfo.cs │ ├── Location.cs │ ├── OperatorPrecedence.cs │ ├── Parser │ │ ├── AbstractParser.cs │ │ ├── CSharp │ │ │ ├── CSharpParser.cs │ │ │ ├── Parser.cs │ │ │ └── cs.ATG │ │ ├── Errors.cs │ │ ├── Frames │ │ │ ├── Parser.frame │ │ │ ├── Scanner.frame │ │ │ └── SharpCoco.exe │ │ ├── IParser.cs │ │ ├── ModifierList.cs │ │ ├── VBNet │ │ │ ├── ParamModifierList.cs │ │ │ ├── Parser.cs │ │ │ ├── VBNET.ATG │ │ │ └── VBNetParser.cs │ │ ├── gen.bat │ │ └── gen.sh │ ├── ParserFactory.cs │ ├── PrettyPrinter │ │ ├── AbstractOutputFormatter.cs │ │ ├── AbstractPrettyPrintOptions.cs │ │ ├── CSharp │ │ │ ├── CSharpOutputVisitor.cs │ │ │ ├── OutputFormatter.cs │ │ │ └── PrettyPrintOptions.cs │ │ ├── IOutputAstVisitor.cs │ │ ├── SpecialNodesInserter.cs │ │ └── VBNet │ │ │ ├── VBNetOutputFormatter.cs │ │ │ ├── VBNetOutputVisitor.cs │ │ │ └── VBNetPrettyPrintOptions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SnippetParser.cs │ └── Visitors │ │ ├── AbstractASTVisitor.cs │ │ ├── AbstractAstTransformer.cs │ │ ├── CSharpConstructsConvertVisitor.cs │ │ ├── CodeDOMOutputVisitor.cs │ │ ├── CodeDOMVerboseOutputGenerator.cs │ │ ├── ConvertVisitorBase.cs │ │ ├── LookupTableVisitor.cs │ │ ├── NodeTrackingAstVisitor.cs │ │ ├── NotImplementedAstVisitor.cs │ │ ├── PrefixFieldsVisitor.cs │ │ ├── RenameIdentifierVisitor.cs │ │ ├── SetParentVisitor.cs │ │ ├── SetRegionInclusionVisitor.cs │ │ ├── ToCSharpConvertVisitor.cs │ │ ├── ToVBNetConvertVisitor.cs │ │ ├── ToVBNetRenameConflictingVariables.cs │ │ └── VBNetConstructsConvertVisitor.cs │ ├── ICSharpCode.SharpDevelop.Dom.Reflexil │ ├── Ambience.cs │ ├── BusyManager.cs │ ├── CSharp │ │ ├── CSharpAmbience.cs │ │ ├── CSharpExpressionContext.cs │ │ ├── ExpressionFinder.cs │ │ ├── OverloadResolution.cs │ │ └── TypeInference.cs │ ├── CecilReader.cs │ ├── ClassFinder.cs │ ├── CtrlSpaceResolveHelper.cs │ ├── DiffUtility.cs │ ├── DomCache.cs │ ├── EasyCodeDom.cs │ ├── ExpressionContext.cs │ ├── ExtensionMethods.cs │ ├── FilePosition.cs │ ├── FileUtility.Minimal.cs │ ├── FoldingRegion.cs │ ├── FusionNative.cs │ ├── GacInterop.cs │ ├── HostCallback.cs │ ├── ICSharpCode.SharpDevelop.Dom.Reflexil.csproj │ ├── IComment.cs │ ├── IExpressionFinder.cs │ ├── IResolver.cs │ ├── Implementations │ │ ├── AbstractEntity.cs │ │ ├── AbstractMember.cs │ │ ├── AbstractReturnType.cs │ │ ├── AnonymousMethodReturnType.cs │ │ ├── ArrayReturnType.cs │ │ ├── AttributeReturnType.cs │ │ ├── BoundTypeParameter.cs │ │ ├── CombinedReturnType.cs │ │ ├── CompoundClass.cs │ │ ├── ConstructedReturnType.cs │ │ ├── DecoratingReturnType.cs │ │ ├── DefaultAttribute.cs │ │ ├── DefaultClass.cs │ │ ├── DefaultComment.cs │ │ ├── DefaultCompilationUnit.cs │ │ ├── DefaultEvent.cs │ │ ├── DefaultField.cs │ │ ├── DefaultMethod.cs │ │ ├── DefaultParameter.cs │ │ ├── DefaultProperty.cs │ │ ├── DefaultReturnType.cs │ │ ├── DefaultTypeParameter.cs │ │ ├── DefaultUsing.cs │ │ ├── DefaultUsingScope.cs │ │ ├── DynamicReturnType.cs │ │ ├── ElementReturnType.cs │ │ ├── GenericReturnType.cs │ │ ├── GetClassReturnType.cs │ │ ├── MethodGroupReturnType.cs │ │ ├── NullReturnType.cs │ │ ├── PointerReturnType.cs │ │ ├── ProxyReturnType.cs │ │ ├── ReferenceReturnType.cs │ │ ├── SearchClassReturnType.cs │ │ ├── SystemTypes.cs │ │ └── UnknownReturnType.cs │ ├── Interfaces │ │ ├── ClassType.cs │ │ ├── ExplicitInterfaceImplementation.cs │ │ ├── IAttribute.cs │ │ ├── IClass.cs │ │ ├── ICompilationUnit.cs │ │ ├── ICompletionEntry.cs │ │ ├── IDomProgressMonitor.cs │ │ ├── IEntity.cs │ │ ├── IEvent.cs │ │ ├── IField.cs │ │ ├── IFreezable.cs │ │ ├── IMember.cs │ │ ├── IMethod.cs │ │ ├── IParameter.cs │ │ ├── IProperty.cs │ │ ├── IReturnType.cs │ │ ├── ITypeParameter.cs │ │ ├── IUsing.cs │ │ ├── IUsingScope.cs │ │ ├── ModifierEnum.cs │ │ ├── ParameterModifiers.cs │ │ └── Region.cs │ ├── LanguageProperties.cs │ ├── LazyList.cs │ ├── LoggingService.cs │ ├── MemberLookupHelper.cs │ ├── NRefactoryResolver │ │ ├── CSharpToVBNetConvertVisitor.cs │ │ ├── CodeSnippetConverter.cs │ │ ├── InferredReturnType.cs │ │ ├── LambdaParameterReturnType.cs │ │ ├── LambdaReturnType.cs │ │ ├── NRefactoryASTConvertVisitor.cs │ │ ├── NRefactoryInformationProvider.cs │ │ ├── NRefactoryResolver.cs │ │ ├── ResolveVisitor.cs │ │ ├── TypeVisitor.cs │ │ └── VBNetToCSharpConvertVisitor.cs │ ├── ParameterListComparer.cs │ ├── ProjectContent │ │ ├── DefaultProjectContent.cs │ │ ├── DomAssemblyName.cs │ │ ├── IProjectContent.cs │ │ ├── ParseInformation.cs │ │ ├── ProjectContentRegistry.cs │ │ └── ReflectionProjectContent.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReadOnlyDictionary.cs │ ├── Refactoring │ │ ├── CSharpCodeGenerator.cs │ │ ├── CodeGenerator.cs │ │ ├── CodeGeneratorOptions.cs │ │ ├── IRefactoringDocument.cs │ │ ├── NRefactoryCodeGenerator.cs │ │ ├── NRefactoryRefactoringProvider.cs │ │ ├── RefactoringProvider.cs │ │ ├── TextFinder.cs │ │ └── VBNetCodeGenerator.cs │ ├── ReflectionLayer │ │ ├── DomPersistence.cs │ │ ├── ReflectionClass.cs │ │ ├── ReflectionEvent.cs │ │ ├── ReflectionField.cs │ │ ├── ReflectionLoader.cs │ │ ├── ReflectionMethod.cs │ │ ├── ReflectionParameter.cs │ │ ├── ReflectionProperty.cs │ │ ├── ReflectionReturnType.cs │ │ └── ReflectionTypeNameSyntaxError.cs │ ├── ResolveResult.cs │ ├── SignatureComparer.cs │ ├── Tag.cs │ ├── VBNet │ │ ├── ExpressionFinder.cs │ │ ├── IVBNetOptionProvider.cs │ │ ├── VBNetAmbience.cs │ │ ├── VBNetCompilationUnit.cs │ │ └── VBNetExpressionFinder.cs │ └── XmlDoc.cs │ ├── ICSharpCode.TextEditor.Reflexil │ ├── Actions │ │ ├── BookmarkActions.cs │ │ ├── CaretActions.cs │ │ ├── ClipBoardActions.cs │ │ ├── FoldActions.cs │ │ ├── FormatActions.cs │ │ ├── HomeEndActions.cs │ │ ├── IEditAction.cs │ │ ├── MiscActions.cs │ │ └── SelectionActions.cs │ ├── Document │ │ ├── AbstractSegment.cs │ │ ├── BookmarkManager │ │ │ ├── Bookmark.cs │ │ │ ├── BookmarkEventHandler.cs │ │ │ ├── BookmarkManager.cs │ │ │ └── BookmarkManagerMemento.cs │ │ ├── DefaultDocument.cs │ │ ├── DefaultTextEditorProperties.cs │ │ ├── DocumentEventArgs.cs │ │ ├── DocumentFactory.cs │ │ ├── FoldingStrategy │ │ │ ├── FoldMarker.cs │ │ │ ├── FoldingManager.cs │ │ │ ├── IFoldingStrategy.cs │ │ │ └── IndentFoldingStrategy.cs │ │ ├── FormattingStrategy │ │ │ ├── DefaultFormattingStrategy.cs │ │ │ └── IFormattingStrategy.cs │ │ ├── HighlightingStrategy │ │ │ ├── DefaultHighlightingStrategy.cs │ │ │ ├── FontContainer.cs │ │ │ ├── HighlightBackground.cs │ │ │ ├── HighlightColor.cs │ │ │ ├── HighlightInfo.cs │ │ │ ├── HighlightRuleSet.cs │ │ │ ├── HighlightingColorNotFoundException.cs │ │ │ ├── HighlightingDefinitionInvalidException.cs │ │ │ ├── HighlightingDefinitionParser.cs │ │ │ ├── HighlightingManager.cs │ │ │ ├── HighlightingStrategyFactory.cs │ │ │ ├── IHighlightingStrategy.cs │ │ │ ├── NextMarker.cs │ │ │ ├── PrevMarker.cs │ │ │ ├── Span.cs │ │ │ ├── SpanStack.cs │ │ │ ├── SyntaxModes │ │ │ │ ├── FileSyntaxModeProvider.cs │ │ │ │ ├── ISyntaxModeFileProvider.cs │ │ │ │ ├── ResourceSyntaxModeProvider.cs │ │ │ │ └── SyntaxMode.cs │ │ │ └── TextWord.cs │ │ ├── IDocument.cs │ │ ├── ISegment.cs │ │ ├── ITextEditorProperties.cs │ │ ├── LineManager │ │ │ ├── DeferredEventList.cs │ │ │ ├── LineManager.cs │ │ │ ├── LineManagerEventArgs.cs │ │ │ ├── LineSegment.cs │ │ │ └── LineSegmentTree.cs │ │ ├── MarkerStrategy │ │ │ ├── MarkerStrategy.cs │ │ │ └── TextMarker.cs │ │ ├── Selection │ │ │ ├── ColumnRange.cs │ │ │ ├── DefaultSelection.cs │ │ │ ├── ISelection.cs │ │ │ └── SelectionManager.cs │ │ ├── TextAnchor.cs │ │ ├── TextBufferStrategy │ │ │ ├── GapTextBufferStrategy.cs │ │ │ ├── ITextBufferStrategy.cs │ │ │ └── StringTextBufferStrategy.cs │ │ ├── TextLocation.cs │ │ └── TextUtilities.cs │ ├── Gui │ │ ├── AbstractMargin.cs │ │ ├── BracketHighlighter.cs │ │ ├── BrushRegistry.cs │ │ ├── Caret.cs │ │ ├── CompletionWindow │ │ │ ├── AbstractCompletionWindow.cs │ │ │ ├── CodeCompletionListView.cs │ │ │ ├── CodeCompletionWindow.cs │ │ │ ├── DeclarationViewWindow.cs │ │ │ ├── ICompletionData.cs │ │ │ └── ICompletionDataProvider.cs │ │ ├── DrawableLine.cs │ │ ├── FoldMargin.cs │ │ ├── GutterMargin.cs │ │ ├── HRuler.cs │ │ ├── IconBarMargin.cs │ │ ├── Ime.cs │ │ ├── InsightWindow │ │ │ ├── IInsightDataProvider.cs │ │ │ └── InsightWindow.cs │ │ ├── TextArea.cs │ │ ├── TextAreaClipboardHandler.cs │ │ ├── TextAreaControl.cs │ │ ├── TextAreaDragDropHandler.cs │ │ ├── TextAreaMouseHandler.cs │ │ ├── TextAreaUpdate.cs │ │ ├── TextEditorControl.cs │ │ ├── TextEditorControlBase.cs │ │ ├── TextView.cs │ │ └── ToolTipRequestEventArgs.cs │ ├── ICSharpCode.TextEditor.Reflexil.csproj │ ├── ICSharpCode.TextEditor.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ASPX.xshd │ │ ├── BAT-Mode.xshd │ │ ├── Boo.xshd │ │ ├── CPP-Mode.xshd │ │ ├── CSharp-Mode.xshd │ │ ├── Coco-Mode.xshd │ │ ├── HTML-Mode.xshd │ │ ├── Java-Mode.xshd │ │ ├── JavaScript-Mode.xshd │ │ ├── Mode.xsd │ │ ├── PHP-Mode.xshd │ │ ├── Patch-Mode.xshd │ │ ├── RightArrow.cur │ │ ├── SyntaxModes.xml │ │ ├── Tex-Mode.xshd │ │ ├── TextEditorControl.bmp │ │ ├── VBNET-Mode.xshd │ │ └── XML-Mode.xshd │ ├── Undo │ │ ├── IUndoableOperation.cs │ │ ├── UndoQueue.cs │ │ ├── UndoStack.cs │ │ ├── UndoableDelete.cs │ │ ├── UndoableInsert.cs │ │ └── UndoableReplace.cs │ └── Util │ │ ├── AugmentableRedBlackTree.cs │ │ ├── CheckedList.cs │ │ ├── FileReader.cs │ │ ├── LoggingService.cs │ │ ├── LookupTable.cs │ │ ├── MouseWheelHandler.cs │ │ ├── RedBlackTreeIterator.cs │ │ ├── RtfWriter.cs │ │ ├── TextUtility.cs │ │ ├── TipPainter.cs │ │ ├── TipPainterTools.cs │ │ ├── TipSection.cs │ │ ├── TipSpacer.cs │ │ ├── TipSplitter.cs │ │ ├── TipText.cs │ │ └── WeakCollection.cs │ ├── Mono.Cecil.Mdb.Reflexil │ ├── Mono.Cecil.Mdb.Reflexil.csproj │ ├── Mono.Cecil.Mdb │ │ ├── MdbReader.cs │ │ └── MdbWriter.cs │ ├── Mono.CompilerServices.SymbolWriter │ │ ├── MonoSymbolFile.cs │ │ ├── MonoSymbolTable.cs │ │ ├── MonoSymbolWriter.cs │ │ ├── SourceMethodBuilder.cs │ │ └── SymbolWriterImpl.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── Mono.Cecil.Pdb.Reflexil │ ├── Microsoft.Cci.Pdb │ │ ├── BitAccess.cs │ │ ├── BitSet.cs │ │ ├── CvInfo.cs │ │ ├── DataStream.cs │ │ ├── DbiDbgHdr.cs │ │ ├── DbiHeader.cs │ │ ├── DbiModuleInfo.cs │ │ ├── DbiSecCon.cs │ │ ├── IntHashTable.cs │ │ ├── Interfaces.cs │ │ ├── LICENSE │ │ ├── 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.Reflexil.csproj │ ├── Mono.Cecil.Pdb │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ ├── ISymUnmanagedWriter2.cs │ │ ├── ModuleMetadata.cs │ │ ├── NativePdbReader.cs │ │ ├── NativePdbWriter.cs │ │ ├── PdbHelper.cs │ │ ├── SymDocumentWriter.cs │ │ └── SymWriter.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── Mono.Cecil.Reflexil │ ├── Mono.Cecil.Cil │ ├── Code.cs │ ├── CodeReader.cs │ ├── CodeWriter.cs │ ├── Document.cs │ ├── ExceptionHandler.cs │ ├── ILProcessor.cs │ ├── Instruction.cs │ ├── MethodBody.cs │ ├── OpCode.cs │ ├── OpCodes.cs │ ├── PortablePdb.cs │ ├── SequencePoint.cs │ ├── Symbols.cs │ ├── VariableDefinition.cs │ └── VariableReference.cs │ ├── Mono.Cecil.Legacy │ ├── CustomAttribute.cs │ ├── EventDefinition.cs │ ├── FieldDefinition.cs │ ├── GenericContext.cs │ ├── IReflectionVisitable.cs │ ├── IReflectionVisitor.cs │ ├── ImageFormatException.cs │ ├── MarshalInfo.cs │ ├── MemberReference.cs │ ├── MetadataFormatException.cs │ ├── MethodDefinition.cs │ ├── MethodReference.cs │ ├── ModuleDefinition.cs │ ├── MonoCecilReflexilMarker.cs │ ├── PInvokeInfo.cs │ ├── ParameterDefinition.cs │ ├── ParameterReference.cs │ ├── PropertyDefinition.cs │ ├── ReflectionException.cs │ ├── SecurityDeclaration.cs │ ├── TypeDefinition.cs │ └── TypeReference.cs │ ├── Mono.Cecil.Metadata │ ├── BlobHeap.cs │ ├── Buffers.cs │ ├── CodedIndex.cs │ ├── ElementType.cs │ ├── GuidHeap.cs │ ├── Heap.cs │ ├── MetadataToken.cs │ ├── PdbHeap.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.Reflexil.csproj │ ├── Mono.Cecil.Rocks │ ├── DocCommentId.cs │ ├── Functional.cs │ ├── ILParser.cs │ ├── MethodBodyRocks.cs │ ├── MethodDefinitionRocks.cs │ ├── ModuleDefinitionRocks.cs │ ├── ParameterReferenceRocks.cs │ ├── SecurityDeclarationRocks.cs │ ├── TypeDefinitionRocks.cs │ └── TypeReferenceRocks.cs │ ├── Mono.Cecil.props │ ├── Mono.Cecil │ ├── ArrayType.cs │ ├── AssemblyDefinition.cs │ ├── AssemblyFlags.cs │ ├── AssemblyHashAlgorithm.cs │ ├── AssemblyLinkedResource.cs │ ├── AssemblyNameDefinition.cs │ ├── AssemblyNameReference.cs │ ├── AssemblyReader.cs │ ├── AssemblyWriter.cs │ ├── BaseAssemblyResolver.cs │ ├── CallSite.cs │ ├── Consts.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 │ ├── IGenericInstance.cs │ ├── IGenericParameterProvider.cs │ ├── IMarshalInfoProvider.cs │ ├── IMemberDefinition.cs │ ├── IMetadataScope.cs │ ├── IMetadataTokenProvider.cs │ ├── IMethodSignature.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 │ ├── Treatments.cs │ ├── TypeAttributes.cs │ ├── TypeDefinition.cs │ ├── TypeDefinitionCollection.cs │ ├── TypeParser.cs │ ├── TypeReference.cs │ ├── TypeSpecification.cs │ ├── TypeSystem.cs │ ├── VariantType.cs │ └── WindowsRuntimeProjections.cs │ ├── Mono.Collections.Generic │ ├── Collection.cs │ └── ReadOnlyCollection.cs │ ├── Mono.Security.Cryptography │ ├── CryptoConvert.cs │ └── CryptoService.cs │ ├── Mono │ ├── Disposable.cs │ ├── Empty.cs │ └── Type.cs │ ├── ProjectInfo.cs │ └── Properties │ └── AssemblyInfo.cs ├── Licenses ├── Reflexil │ ├── GPL-LICENSE.txt │ ├── LGPL-LICENSE.txt │ ├── MIT-LICENSE.txt │ └── triple.licensing.txt └── ThirdParty │ ├── Be.HexEditor │ └── LICENSE.Be.HexEditor.txt │ ├── De4dot │ ├── COPYING │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ ├── LICENSE.QuickLZ.txt │ ├── LICENSE.de4dot.txt │ ├── LICENSE.dnlib.txt │ ├── LICENSE.lzma.txt │ ├── LICENSE.lzmat.txt │ └── LICENSE.randomc.txt │ ├── ICSharpCode.NRefactory │ └── LICENSE.ICSharpCode.NRefactory.txt │ ├── ICSharpCode.SharpDevelop.Dom │ ├── LGPL.txt │ └── README.txt │ ├── ICSharpCode.TextEditor │ ├── LGPL.txt │ └── README.txt │ └── Mono.Cecil │ └── LICENSE.Mono.Cecil.txt ├── Plugins ├── BaseAssemblyContext.cs ├── BasePackage.cs ├── BasePlugin.cs ├── GenericFactory.cs ├── IAssemblyContext.cs ├── IPackage.cs ├── IPlugin.cs ├── PluginFactory.cs ├── Reflexil.ILSpy │ ├── Libs │ │ └── Binaries │ │ │ ├── ICSharpCode.Decompiler.dll │ │ │ ├── ICSharpCode.TreeView.dll │ │ │ ├── ILSpy.exe │ │ │ └── System.Reflection.Metadata.dll │ ├── Plugins │ │ ├── Command │ │ │ ├── ReflexilMainMenuCommandAttribute.cs │ │ │ └── ReflexilToolbarCommand.cs │ │ ├── ContextMenu │ │ │ ├── BaseAssemblyOrModuleContextMenu.cs │ │ │ ├── BaseContextMenu.cs │ │ │ ├── BaseMemberContextMenu.cs │ │ │ ├── BaseTypeDefinitionContextMenu.cs │ │ │ ├── DeleteContextMenu.cs │ │ │ ├── IRenamerContextMenu.cs │ │ │ ├── InjectAssemblyReferenceContextMenu.cs │ │ │ ├── InjectClassContextMenu.cs │ │ │ ├── InjectConstructorContextMenu.cs │ │ │ ├── InjectEnumContextMenu.cs │ │ │ ├── InjectEventContextMenu.cs │ │ │ ├── InjectFieldContextMenu.cs │ │ │ ├── InjectInnerClassContextMenu.cs │ │ │ ├── InjectInnerEnumContextMenu.cs │ │ │ ├── InjectInnerInterfaceContextMenu.cs │ │ │ ├── InjectInnerStructContextMenu.cs │ │ │ ├── InjectInterfaceContextMenu.cs │ │ │ ├── InjectMethodContextMenu.cs │ │ │ ├── InjectPropertyContextMenu.cs │ │ │ ├── InjectResourceContextMenu.cs │ │ │ ├── InjectStructContextMenu.cs │ │ │ ├── ObfuscatorSearchContextMenu.cs │ │ │ ├── ReloadContextMenu.cs │ │ │ ├── RenameAssemblyContextMenu.cs │ │ │ ├── RenameContextMenu.cs │ │ │ ├── SaveAsContextMenu.cs │ │ │ ├── UpdateContextMenu.cs │ │ │ └── VerifyContextMenu.cs │ │ ├── ILSpyAssemblyContext.cs │ │ ├── ILSpyAssemblyWrapper.cs │ │ ├── ILSpyHelper.cs │ │ ├── ILSpyPackage.cs │ │ ├── ILSpyPlugin.cs │ │ ├── ReflexilHost.xaml │ │ └── ReflexilHost.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reflexil.ILSpy.csproj │ └── Resources │ │ ├── delete.png │ │ ├── injectassemblyreference.png │ │ ├── injectclass.png │ │ ├── injectconstructor.png │ │ ├── injectenum.png │ │ ├── injectevent.png │ │ ├── injectfield.png │ │ ├── injectinnerclass.png │ │ ├── injectinnerenum.png │ │ ├── injectinnerinterface.png │ │ ├── injectinnerstruct.png │ │ ├── injectinterface.png │ │ ├── injectmethod.png │ │ ├── injectproperty.png │ │ ├── injectresource.png │ │ ├── injectstruct.png │ │ ├── obfuscator.png │ │ ├── reflexil.png │ │ ├── reload.png │ │ ├── rename.png │ │ ├── saveas.png │ │ ├── update.png │ │ └── verify.png ├── Reflexil.JustDecompile │ ├── Libs │ │ └── Binaries │ │ │ └── JustDecompile.API.dll │ ├── PluginConfig.xml │ ├── Plugins │ │ ├── ContextMenu │ │ │ ├── JustDecompileToolMenuItem.cs │ │ │ ├── MemberTreeViewContextMenu.cs │ │ │ ├── MenuItem.cs │ │ │ ├── MenuSeparator.cs │ │ │ ├── ModuleDefinitionTreeViewContextMenu.cs │ │ │ └── TypeTreeViewContextMenu.cs │ │ ├── JustDecompileAssemblyContext.cs │ │ ├── JustDecompileAssemblyWrapper.cs │ │ ├── JustDecompileHelper.cs │ │ ├── JustDecompilePackage.cs │ │ ├── JustDecompilePlugin.cs │ │ ├── ReflexilHost.xaml │ │ └── ReflexilHost.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reflexil.JustDecompile.csproj │ └── Resources │ │ ├── close.png │ │ ├── delete.png │ │ ├── injectassemblyreference.png │ │ ├── injectclass.png │ │ ├── injectconstructor.png │ │ ├── injectenum.png │ │ ├── injectevent.png │ │ ├── injectfield.png │ │ ├── injectinnerclass.png │ │ ├── injectinnerenum.png │ │ ├── injectinnerinterface.png │ │ ├── injectinnerstruct.png │ │ ├── injectinterface.png │ │ ├── injectmethod.png │ │ ├── injectproperty.png │ │ ├── injectresource.png │ │ ├── injectstruct.png │ │ ├── obfuscator.png │ │ ├── reflexil.png │ │ ├── reload.png │ │ ├── rename.png │ │ ├── saveas.png │ │ ├── update.png │ │ └── verify.png └── Reflexil.Reflector │ ├── Libs │ └── Binaries │ │ └── Reflector.exe │ ├── Plugins │ ├── ReflectorAssemblyContext.cs │ ├── ReflectorAssemblyWrapper.cs │ ├── ReflectorHelper.cs │ ├── ReflectorPackage.cs │ ├── ReflectorPlugin.cs │ └── UIContext.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Reflexil.Reflector.csproj ├── Properties ├── AssemblyInfo.cs ├── DataSources │ ├── Mono.Cecil.Cil.ExceptionHandler.datasource │ ├── Mono.Cecil.Cil.Instruction.datasource │ ├── Mono.Cecil.Cil.OpCode.datasource │ ├── Mono.Cecil.Cil.OpCodes.datasource │ ├── Mono.Cecil.Cil.VariableDefinition.datasource │ ├── Mono.Cecil.ParameterDefinition.datasource │ ├── Reflexil.Verifier.VerificationError.datasource │ └── System.CodeDom.Compiler.CompilerError.datasource ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── SolutionVersion.cs ├── README.md ├── Reflexil.csproj ├── Reflexil.sln ├── Resources ├── bar.png ├── browser.png ├── copyhs.png ├── cuths.png ├── findhs.png ├── findnexths.png ├── opcodes.txt ├── openhs.png ├── pastehs.png ├── reflexil.png └── savehs.png ├── Utils ├── AssemblyHelper.cs ├── ByteHelper.cs ├── CecilHelper.cs ├── CecilImporter.cs ├── De4dotHelper.cs ├── DeleteHelper.cs ├── EBarImages.cs ├── EBrowserImages.cs ├── ENumericBase.cs ├── InjectHelper.cs ├── InjectType.cs ├── PEVerifyUtility.cs ├── ReflexilAssemblyResolver.cs ├── RenameHelper.cs ├── SdkUtility.cs └── StrongNameUtility.cs ├── Verifier ├── AssemblyVerification.cs ├── IntermediateLanguageVerificationError.cs ├── MetadataVerificationError.cs ├── VerificationError.cs ├── VerificationErrorCollectionCreator.cs └── VerificationException.cs ├── Wrappers ├── IAssemblyWrapper.cs ├── IWrapper.cs ├── InstructionWrapper.cs ├── NamespaceWrapper.cs ├── OperandDisplayHelper.cs ├── ParameterWrapper.cs ├── PropertyWrapper.cs └── VariableWrapper.cs ├── app.config ├── azure-pipelines.yml └── credits.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sailro 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Binary/.artifactignore: -------------------------------------------------------------------------------- 1 | **/* 2 | !*.zip 3 | -------------------------------------------------------------------------------- /Build/Binary/generate.ILSpy.AIO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/generate.ILSpy.AIO.bat -------------------------------------------------------------------------------- /Build/Binary/generate.ILSpy.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | generate ILSpy 3 | -------------------------------------------------------------------------------- /Build/Binary/generate.JustDecompile.AIO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/generate.JustDecompile.AIO.bat -------------------------------------------------------------------------------- /Build/Binary/generate.JustDecompile.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | generate JustDecompile 3 | -------------------------------------------------------------------------------- /Build/Binary/generate.Reflector.AIO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/generate.Reflector.AIO.bat -------------------------------------------------------------------------------- /Build/Binary/generate.Reflector.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | generate Reflector 3 | -------------------------------------------------------------------------------- /Build/Binary/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/generate.bat -------------------------------------------------------------------------------- /Build/Binary/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/ILMerge.exe -------------------------------------------------------------------------------- /Build/Binary/tools/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/cp.exe -------------------------------------------------------------------------------- /Build/Binary/tools/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/grep.exe -------------------------------------------------------------------------------- /Build/Binary/tools/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/mv.exe -------------------------------------------------------------------------------- /Build/Binary/tools/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/rm.exe -------------------------------------------------------------------------------- /Build/Binary/tools/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/sed.exe -------------------------------------------------------------------------------- /Build/Binary/tools/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Build/Binary/tools/zip.exe -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/ChangeLog -------------------------------------------------------------------------------- /Compilation/AppDomainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/AppDomainHelper.cs -------------------------------------------------------------------------------- /Compilation/BaseLanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/BaseLanguageHelper.cs -------------------------------------------------------------------------------- /Compilation/CSharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/CSharpHelper.cs -------------------------------------------------------------------------------- /Compilation/CSharpKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/CSharpKeywords.cs -------------------------------------------------------------------------------- /Compilation/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/Compiler.cs -------------------------------------------------------------------------------- /Compilation/CompilerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/CompilerProfile.cs -------------------------------------------------------------------------------- /Compilation/ILanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/ILanguageHelper.cs -------------------------------------------------------------------------------- /Compilation/LanguageHelperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/LanguageHelperFactory.cs -------------------------------------------------------------------------------- /Compilation/NamespaceCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/NamespaceCollector.cs -------------------------------------------------------------------------------- /Compilation/SpaceSurrounder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/SpaceSurrounder.cs -------------------------------------------------------------------------------- /Compilation/SupportedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/SupportedLanguage.cs -------------------------------------------------------------------------------- /Compilation/VisualBasicHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/VisualBasicHelper.cs -------------------------------------------------------------------------------- /Compilation/VisualBasicKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Compilation/VisualBasicKeywords.cs -------------------------------------------------------------------------------- /Controls/Body/InstructionReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Body/InstructionReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Body/MultipleInstructionReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Body/MultipleInstructionReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Body/OperandReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Body/OperandReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Body/ParameterReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Body/ParameterReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Body/VariableReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Body/VariableReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/CheckBoxComboBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/CheckBoxComboBox.Designer.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/CheckBoxComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/CheckBoxComboBox.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/GripBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/GripBounds.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/NativeMethods.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/Popup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/Popup.Designer.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/Popup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/Popup.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/PopupComboBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/PopupComboBox.Designer.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/PopupComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/PopupComboBox.cs -------------------------------------------------------------------------------- /Controls/CheckBoxComboBox/PopupComboBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/CheckBoxComboBox/PopupComboBox.resx -------------------------------------------------------------------------------- /Controls/Context/GenericParameterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Context/GenericParameterEditor.cs -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionControl.cs -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionControl.resx -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionEditor.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionEditor.cs -------------------------------------------------------------------------------- /Controls/Definition/AssemblyDefinitionEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/AssemblyDefinitionEditor.resx -------------------------------------------------------------------------------- /Controls/Definition/ConstantEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ConstantEditor.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/ConstantEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ConstantEditor.cs -------------------------------------------------------------------------------- /Controls/Definition/ConstantEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ConstantEditor.resx -------------------------------------------------------------------------------- /Controls/Definition/CustomAttributeArgumentEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/CustomAttributeArgumentEditor.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/CustomAttributeArgumentEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/CustomAttributeArgumentEditor.cs -------------------------------------------------------------------------------- /Controls/Definition/CustomAttributeArgumentEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/CustomAttributeArgumentEditor.resx -------------------------------------------------------------------------------- /Controls/Definition/HexEditorControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/HexEditorControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/HexEditorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/HexEditorControl.cs -------------------------------------------------------------------------------- /Controls/Definition/HexEditorControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/HexEditorControl.resx -------------------------------------------------------------------------------- /Controls/Definition/MethodDefinitionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/MethodDefinitionEditor.cs -------------------------------------------------------------------------------- /Controls/Definition/ModuleDefinitionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ModuleDefinitionControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Definition/ModuleDefinitionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ModuleDefinitionControl.cs -------------------------------------------------------------------------------- /Controls/Definition/ModuleDefinitionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/ModuleDefinitionControl.resx -------------------------------------------------------------------------------- /Controls/Definition/TypeDefinitionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Definition/TypeDefinitionEditor.cs -------------------------------------------------------------------------------- /Controls/Grid/CustomAttributeArgumentGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/CustomAttributeArgumentGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/CustomAttributeArgumentGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/CustomAttributeArgumentGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/CustomAttributeGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/CustomAttributeGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/CustomAttributeGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/CustomAttributeGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/CustomAttributeNamedArgumentGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/CustomAttributeNamedArgumentGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/ExceptionHandlerGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/ExceptionHandlerGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/ExceptionHandlerGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/ExceptionHandlerGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/GridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/GridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/GridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/GridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/GridControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/GridControl.resx -------------------------------------------------------------------------------- /Controls/Grid/InstructionGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/InstructionGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/InstructionGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/InstructionGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/InterfaceGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/InterfaceGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/InterfaceGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/InterfaceGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/OverrideGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/OverrideGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/OverrideGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/OverrideGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/ParameterGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/ParameterGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/ParameterGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/ParameterGridControl.cs -------------------------------------------------------------------------------- /Controls/Grid/VariableGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/VariableGridControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Grid/VariableGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Grid/VariableGridControl.cs -------------------------------------------------------------------------------- /Controls/IOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/IOperandEditor.cs -------------------------------------------------------------------------------- /Controls/Misc/BasePopupControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Misc/BasePopupControl.cs -------------------------------------------------------------------------------- /Controls/Misc/TextComboUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Misc/TextComboUserControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Misc/TextComboUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Misc/TextComboUserControl.cs -------------------------------------------------------------------------------- /Controls/Misc/TextComboUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Misc/TextComboUserControl.resx -------------------------------------------------------------------------------- /Controls/NoneOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/NoneOperandEditor.cs -------------------------------------------------------------------------------- /Controls/NotSupportedOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/NotSupportedOperandEditor.cs -------------------------------------------------------------------------------- /Controls/NullOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/NullOperandEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/BooleanEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/BooleanEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/ByteEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/ByteEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/DoubleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/DoubleEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/IntegerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/IntegerEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/LongEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/LongEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/OperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/OperandEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/OperandEditorBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/OperandEditorBridge.cs -------------------------------------------------------------------------------- /Controls/Primitive/SByteEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/SByteEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/ShortEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/ShortEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/SingleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/SingleEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/StringEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/StringEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/UIntegerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/UIntegerEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/ULongEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/ULongEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/UShortEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/UShortEditor.cs -------------------------------------------------------------------------------- /Controls/Primitive/VerbatimStringEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Primitive/VerbatimStringEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/FieldReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/FieldReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/MemberReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/MemberReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/MethodReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/MethodReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/TypeReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/TypeReferenceEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/TypeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/TypeSpecification.cs -------------------------------------------------------------------------------- /Controls/Reference/TypeSpecificationEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/TypeSpecificationEditor.Designer.cs -------------------------------------------------------------------------------- /Controls/Reference/TypeSpecificationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/TypeSpecificationEditor.cs -------------------------------------------------------------------------------- /Controls/Reference/TypeSpecificationEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Reference/TypeSpecificationEditor.resx -------------------------------------------------------------------------------- /Controls/Split/AssemblyNameDefinitionAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AssemblyNameDefinitionAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/AssemblyNameDefinitionAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AssemblyNameDefinitionAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/AssemblyNameReferenceAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AssemblyNameReferenceAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/AssemblyNameReferenceAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AssemblyNameReferenceAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/AttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/AttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/AttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/AttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/EmbeddedResourceAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EmbeddedResourceAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/EmbeddedResourceAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EmbeddedResourceAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/EmbeddedResourceAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EmbeddedResourceAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/EventAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EventAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/EventAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EventAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/EventAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/EventAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/FieldAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/FieldAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/FieldAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/FieldAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/FieldAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/FieldAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/LinkedResourceAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/LinkedResourceAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/LinkedResourceAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/LinkedResourceAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/LinkedResourceAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/LinkedResourceAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/MethodAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/MethodAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/MethodAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/MethodAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/MethodAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/MethodAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/PropertyAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/PropertyAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/PropertyAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/PropertyAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/PropertyAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/PropertyAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/ResourceAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/ResourceAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/ResourceAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/ResourceAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/ResourceAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/ResourceAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/SplitAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/SplitAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/SplitAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/SplitAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/SplitAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/SplitAttributesControl.resx -------------------------------------------------------------------------------- /Controls/Split/TypeAttributesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/TypeAttributesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/Split/TypeAttributesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/TypeAttributesControl.cs -------------------------------------------------------------------------------- /Controls/Split/TypeAttributesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Controls/Split/TypeAttributesControl.resx -------------------------------------------------------------------------------- /Forms/AssemblyCleanerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/AssemblyCleanerForm.Designer.cs -------------------------------------------------------------------------------- /Forms/AssemblyCleanerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/AssemblyCleanerForm.cs -------------------------------------------------------------------------------- /Forms/AssemblyCleanerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/AssemblyCleanerForm.resx -------------------------------------------------------------------------------- /Forms/CodeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CodeForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CodeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CodeForm.cs -------------------------------------------------------------------------------- /Forms/CodeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CodeForm.resx -------------------------------------------------------------------------------- /Forms/ConfigureForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ConfigureForm.Designer.cs -------------------------------------------------------------------------------- /Forms/ConfigureForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ConfigureForm.cs -------------------------------------------------------------------------------- /Forms/ConfigureForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ConfigureForm.resx -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeArgumentForm.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeArgumentForm.resx -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeForm.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeForm.resx -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeNamedArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeNamedArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeNamedArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeNamedArgumentForm.cs -------------------------------------------------------------------------------- /Forms/CreateCustomAttributeNamedArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateCustomAttributeNamedArgumentForm.resx -------------------------------------------------------------------------------- /Forms/CreateExceptionHandlerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateExceptionHandlerForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateExceptionHandlerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateExceptionHandlerForm.cs -------------------------------------------------------------------------------- /Forms/CreateExceptionHandlerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateExceptionHandlerForm.resx -------------------------------------------------------------------------------- /Forms/CreateInstructionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInstructionForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInstructionForm.cs -------------------------------------------------------------------------------- /Forms/CreateInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInstructionForm.resx -------------------------------------------------------------------------------- /Forms/CreateInterfaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInterfaceForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInterfaceForm.cs -------------------------------------------------------------------------------- /Forms/CreateInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateInterfaceForm.resx -------------------------------------------------------------------------------- /Forms/CreateOverrideForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateOverrideForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateOverrideForm.cs -------------------------------------------------------------------------------- /Forms/CreateOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateOverrideForm.resx -------------------------------------------------------------------------------- /Forms/CreateParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateParameterForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateParameterForm.cs -------------------------------------------------------------------------------- /Forms/CreateParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateParameterForm.resx -------------------------------------------------------------------------------- /Forms/CreateVariableForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateVariableForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CreateVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateVariableForm.cs -------------------------------------------------------------------------------- /Forms/CreateVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CreateVariableForm.resx -------------------------------------------------------------------------------- /Forms/CustomAttributeArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeArgumentForm.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeArgumentForm.resx -------------------------------------------------------------------------------- /Forms/CustomAttributeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeForm.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeForm.resx -------------------------------------------------------------------------------- /Forms/CustomAttributeNamedArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeNamedArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeNamedArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeNamedArgumentForm.cs -------------------------------------------------------------------------------- /Forms/CustomAttributeNamedArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/CustomAttributeNamedArgumentForm.resx -------------------------------------------------------------------------------- /Forms/DirectoryScanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/DirectoryScanForm.Designer.cs -------------------------------------------------------------------------------- /Forms/DirectoryScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/DirectoryScanForm.cs -------------------------------------------------------------------------------- /Forms/DirectoryScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/DirectoryScanForm.resx -------------------------------------------------------------------------------- /Forms/EditCustomAttributeArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeArgumentForm.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeArgumentForm.resx -------------------------------------------------------------------------------- /Forms/EditCustomAttributeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeForm.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeForm.resx -------------------------------------------------------------------------------- /Forms/EditCustomAttributeNamedArgumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeNamedArgumentForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeNamedArgumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeNamedArgumentForm.cs -------------------------------------------------------------------------------- /Forms/EditCustomAttributeNamedArgumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditCustomAttributeNamedArgumentForm.resx -------------------------------------------------------------------------------- /Forms/EditExceptionHandlerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditExceptionHandlerForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditExceptionHandlerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditExceptionHandlerForm.cs -------------------------------------------------------------------------------- /Forms/EditExceptionHandlerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditExceptionHandlerForm.resx -------------------------------------------------------------------------------- /Forms/EditInstructionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInstructionForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInstructionForm.cs -------------------------------------------------------------------------------- /Forms/EditInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInstructionForm.resx -------------------------------------------------------------------------------- /Forms/EditInterfaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInterfaceForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInterfaceForm.cs -------------------------------------------------------------------------------- /Forms/EditInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditInterfaceForm.resx -------------------------------------------------------------------------------- /Forms/EditOverrideForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditOverrideForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditOverrideForm.cs -------------------------------------------------------------------------------- /Forms/EditOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditOverrideForm.resx -------------------------------------------------------------------------------- /Forms/EditParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditParameterForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditParameterForm.cs -------------------------------------------------------------------------------- /Forms/EditParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditParameterForm.resx -------------------------------------------------------------------------------- /Forms/EditVariableForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditVariableForm.Designer.cs -------------------------------------------------------------------------------- /Forms/EditVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditVariableForm.cs -------------------------------------------------------------------------------- /Forms/EditVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/EditVariableForm.resx -------------------------------------------------------------------------------- /Forms/ExceptionHandlerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ExceptionHandlerForm.Designer.cs -------------------------------------------------------------------------------- /Forms/ExceptionHandlerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ExceptionHandlerForm.cs -------------------------------------------------------------------------------- /Forms/ExceptionHandlerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ExceptionHandlerForm.resx -------------------------------------------------------------------------------- /Forms/GenericInstanceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/GenericInstanceForm.Designer.cs -------------------------------------------------------------------------------- /Forms/GenericInstanceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/GenericInstanceForm.cs -------------------------------------------------------------------------------- /Forms/GenericInstanceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/GenericInstanceForm.resx -------------------------------------------------------------------------------- /Forms/GenericInstanceMethodForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/GenericInstanceMethodForm.cs -------------------------------------------------------------------------------- /Forms/GenericInstanceTypeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/GenericInstanceTypeForm.cs -------------------------------------------------------------------------------- /Forms/HexFindCancelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexFindCancelForm.cs -------------------------------------------------------------------------------- /Forms/HexFindCancelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexFindCancelForm.resx -------------------------------------------------------------------------------- /Forms/HexFindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexFindForm.cs -------------------------------------------------------------------------------- /Forms/HexFindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexFindForm.resx -------------------------------------------------------------------------------- /Forms/HexGotoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexGotoForm.cs -------------------------------------------------------------------------------- /Forms/HexGotoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/HexGotoForm.resx -------------------------------------------------------------------------------- /Forms/InjectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InjectForm.Designer.cs -------------------------------------------------------------------------------- /Forms/InjectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InjectForm.cs -------------------------------------------------------------------------------- /Forms/InjectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InjectForm.resx -------------------------------------------------------------------------------- /Forms/InstructionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionForm.Designer.cs -------------------------------------------------------------------------------- /Forms/InstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionForm.cs -------------------------------------------------------------------------------- /Forms/InstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionForm.resx -------------------------------------------------------------------------------- /Forms/InstructionSelectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionSelectForm.Designer.cs -------------------------------------------------------------------------------- /Forms/InstructionSelectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionSelectForm.cs -------------------------------------------------------------------------------- /Forms/InstructionSelectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InstructionSelectForm.resx -------------------------------------------------------------------------------- /Forms/IntellisenseForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/IntellisenseForm.Designer.cs -------------------------------------------------------------------------------- /Forms/IntellisenseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/IntellisenseForm.cs -------------------------------------------------------------------------------- /Forms/IntellisenseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/IntellisenseForm.resx -------------------------------------------------------------------------------- /Forms/InterfaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InterfaceForm.Designer.cs -------------------------------------------------------------------------------- /Forms/InterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InterfaceForm.cs -------------------------------------------------------------------------------- /Forms/InterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/InterfaceForm.resx -------------------------------------------------------------------------------- /Forms/MemberReferenceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/MemberReferenceForm.Designer.cs -------------------------------------------------------------------------------- /Forms/MemberReferenceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/MemberReferenceForm.cs -------------------------------------------------------------------------------- /Forms/MemberReferenceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/MemberReferenceForm.resx -------------------------------------------------------------------------------- /Forms/ObfuscatorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ObfuscatorForm.Designer.cs -------------------------------------------------------------------------------- /Forms/ObfuscatorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ObfuscatorForm.cs -------------------------------------------------------------------------------- /Forms/ObfuscatorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ObfuscatorForm.resx -------------------------------------------------------------------------------- /Forms/OverrideForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/OverrideForm.Designer.cs -------------------------------------------------------------------------------- /Forms/OverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/OverrideForm.cs -------------------------------------------------------------------------------- /Forms/OverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/OverrideForm.resx -------------------------------------------------------------------------------- /Forms/ParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ParameterForm.Designer.cs -------------------------------------------------------------------------------- /Forms/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ParameterForm.cs -------------------------------------------------------------------------------- /Forms/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ParameterForm.resx -------------------------------------------------------------------------------- /Forms/PropertyGridForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/PropertyGridForm.Designer.cs -------------------------------------------------------------------------------- /Forms/PropertyGridForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/PropertyGridForm.cs -------------------------------------------------------------------------------- /Forms/PropertyGridForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/PropertyGridForm.resx -------------------------------------------------------------------------------- /Forms/ReferenceUpdaterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReferenceUpdaterForm.Designer.cs -------------------------------------------------------------------------------- /Forms/ReferenceUpdaterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReferenceUpdaterForm.cs -------------------------------------------------------------------------------- /Forms/ReferenceUpdaterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReferenceUpdaterForm.resx -------------------------------------------------------------------------------- /Forms/ReflexilWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReflexilWindow.Designer.cs -------------------------------------------------------------------------------- /Forms/ReflexilWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReflexilWindow.cs -------------------------------------------------------------------------------- /Forms/ReflexilWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/ReflexilWindow.resx -------------------------------------------------------------------------------- /Forms/RenameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/RenameForm.Designer.cs -------------------------------------------------------------------------------- /Forms/RenameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/RenameForm.cs -------------------------------------------------------------------------------- /Forms/RenameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/RenameForm.resx -------------------------------------------------------------------------------- /Forms/StrongNameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameForm.Designer.cs -------------------------------------------------------------------------------- /Forms/StrongNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameForm.cs -------------------------------------------------------------------------------- /Forms/StrongNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameForm.resx -------------------------------------------------------------------------------- /Forms/StrongNameRemoverForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameRemoverForm.Designer.cs -------------------------------------------------------------------------------- /Forms/StrongNameRemoverForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameRemoverForm.cs -------------------------------------------------------------------------------- /Forms/StrongNameRemoverForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/StrongNameRemoverForm.resx -------------------------------------------------------------------------------- /Forms/SyncWarningForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/SyncWarningForm.Designer.cs -------------------------------------------------------------------------------- /Forms/SyncWarningForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/SyncWarningForm.cs -------------------------------------------------------------------------------- /Forms/SyncWarningForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/SyncWarningForm.resx -------------------------------------------------------------------------------- /Forms/TypeSpecificationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/TypeSpecificationForm.Designer.cs -------------------------------------------------------------------------------- /Forms/TypeSpecificationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/TypeSpecificationForm.cs -------------------------------------------------------------------------------- /Forms/TypeSpecificationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/TypeSpecificationForm.resx -------------------------------------------------------------------------------- /Forms/VariableForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VariableForm.Designer.cs -------------------------------------------------------------------------------- /Forms/VariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VariableForm.cs -------------------------------------------------------------------------------- /Forms/VariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VariableForm.resx -------------------------------------------------------------------------------- /Forms/VerifierForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VerifierForm.Designer.cs -------------------------------------------------------------------------------- /Forms/VerifierForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VerifierForm.cs -------------------------------------------------------------------------------- /Forms/VerifierForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Forms/VerifierForm.resx -------------------------------------------------------------------------------- /Handlers/AssemblyDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/AssemblyDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/AssemblyDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/AssemblyLinkedResourceHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyLinkedResourceHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/AssemblyLinkedResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyLinkedResourceHandler.cs -------------------------------------------------------------------------------- /Handlers/AssemblyLinkedResourceHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyLinkedResourceHandler.resx -------------------------------------------------------------------------------- /Handlers/AssemblyNameReferenceHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyNameReferenceHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/AssemblyNameReferenceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyNameReferenceHandler.cs -------------------------------------------------------------------------------- /Handlers/AssemblyNameReferenceHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/AssemblyNameReferenceHandler.resx -------------------------------------------------------------------------------- /Handlers/EmbeddedResourceHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EmbeddedResourceHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/EmbeddedResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EmbeddedResourceHandler.cs -------------------------------------------------------------------------------- /Handlers/EmbeddedResourceHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EmbeddedResourceHandler.resx -------------------------------------------------------------------------------- /Handlers/EventDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EventDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/EventDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EventDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/EventDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/EventDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/FieldDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/FieldDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/FieldDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/FieldDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/FieldDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/FieldDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/IHandler.cs -------------------------------------------------------------------------------- /Handlers/LinkedResourceHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/LinkedResourceHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/LinkedResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/LinkedResourceHandler.cs -------------------------------------------------------------------------------- /Handlers/LinkedResourceHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/LinkedResourceHandler.resx -------------------------------------------------------------------------------- /Handlers/MergedAssemblyModuleDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MergedAssemblyModuleDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/MergedAssemblyModuleDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MergedAssemblyModuleDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/MergedAssemblyModuleDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MergedAssemblyModuleDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/MethodDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MethodDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/MethodDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MethodDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/MethodDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/MethodDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/ModuleDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/ModuleDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/ModuleDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/ModuleDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/ModuleDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/ModuleDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/NotSupportedHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/NotSupportedHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/NotSupportedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/NotSupportedHandler.cs -------------------------------------------------------------------------------- /Handlers/NotSupportedHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/NotSupportedHandler.resx -------------------------------------------------------------------------------- /Handlers/PropertyDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/PropertyDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/PropertyDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/PropertyDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/PropertyDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/PropertyDefinitionHandler.resx -------------------------------------------------------------------------------- /Handlers/TypeDefinitionHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/TypeDefinitionHandler.Designer.cs -------------------------------------------------------------------------------- /Handlers/TypeDefinitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/TypeDefinitionHandler.cs -------------------------------------------------------------------------------- /Handlers/TypeDefinitionHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Handlers/TypeDefinitionHandler.resx -------------------------------------------------------------------------------- /Intellisense/CodeCompletionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/CodeCompletionData.cs -------------------------------------------------------------------------------- /Intellisense/CodeCompletionKeyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/CodeCompletionKeyHandler.cs -------------------------------------------------------------------------------- /Intellisense/CodeCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/CodeCompletionProvider.cs -------------------------------------------------------------------------------- /Intellisense/HostCallbackImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/HostCallbackImplementation.cs -------------------------------------------------------------------------------- /Intellisense/MethodInsightDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/MethodInsightDataProvider.cs -------------------------------------------------------------------------------- /Intellisense/RegionFoldingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/RegionFoldingStrategy.cs -------------------------------------------------------------------------------- /Intellisense/ToolTipProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Intellisense/ToolTipProvider.cs -------------------------------------------------------------------------------- /Keys/reflexil.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Keys/reflexil.snk -------------------------------------------------------------------------------- /Libs/Binaries/Be.Windows.Forms.HexBox.Reflexil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Binaries/Be.Windows.Forms.HexBox.Reflexil.dll -------------------------------------------------------------------------------- /Libs/Binaries/De4Dot.Reflexil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Binaries/De4Dot.Reflexil.dll -------------------------------------------------------------------------------- /Libs/Sources/De4dot/0-readme.txt: -------------------------------------------------------------------------------- 1 | De4dot source code is here. It's not directly used by the solution. 2 | -------------------------------------------------------------------------------- /Libs/Sources/De4dot/1-download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/1-download.bat -------------------------------------------------------------------------------- /Libs/Sources/De4dot/2-patch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/2-patch.bat -------------------------------------------------------------------------------- /Libs/Sources/De4dot/3-compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/3-compile.bat -------------------------------------------------------------------------------- /Libs/Sources/De4dot/4-merge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/4-merge.bat -------------------------------------------------------------------------------- /Libs/Sources/De4dot/X-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/X-all.bat -------------------------------------------------------------------------------- /Libs/Sources/De4dot/patch/de4dot.netframework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/patch/de4dot.netframework.sln -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/.editorconfig -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: "0xd4d" 2 | -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/.github/workflows/build.yml -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/.gitignore -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/AssemblyData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/AssemblyData.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/AssemblyResolver.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/AssemblyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/AssemblyServer.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/AssemblyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/AssemblyService.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/GenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/GenericService.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/IAssemblyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/IAssemblyService.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/IGenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/IGenericService.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/IStringDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/IStringDecrypter.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/SimpleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/SimpleData.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyData/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyData/Utils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-CLR20/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-CLR20/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-CLR20/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-CLR20/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-CLR40/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-CLR40/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-CLR40/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-CLR40/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-x64/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer-x64/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/AssemblyServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/AssemblyServer/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/COPYING -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/De4DotCommon.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/De4DotCommon.props -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.QuickLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.QuickLZ.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.de4dot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.de4dot.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.dnlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.dnlib.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.lzma.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.lzmat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.lzmat.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/LICENSE.randomc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/LICENSE.randomc.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/README.md -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/Test.Rename.Dll/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/Test.Rename.Dll/Tests.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/Test.Rename/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/Test.Rename/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/Test.Rename/Test.Rename.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/Test.Rename/Test.Rename.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/build.ps1 -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot-x64/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot-x64/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot-x64/de4dot-x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot-x64/de4dot-x64.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/BaseBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/BaseBlock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/Block.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/Blocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/Blocks.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/BlocksSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/BlocksSorter.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/CodeGenerator.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/DotNetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/DotNetUtils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/DumpedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/DumpedMethod.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/DumpedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/DumpedMethods.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/ForwardScanOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/ForwardScanOrder.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/HandlerBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/HandlerBlock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/Instr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/Instr.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/MemberDefDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/MemberDefDict.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/MethodBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/MethodBlocks.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/ScopeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/ScopeBlock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/TryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/TryBlock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/TryHandlerBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/TryHandlerBlock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/Utils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/CflowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/CflowUtils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Int32Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Int32Value.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Int64Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Int64Value.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Real8Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Real8Value.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/Value.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.blocks/cflow/ValueStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.blocks/cflow/ValueStack.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/7zip/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/7zip/ICoder.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/AssemblyInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/AssemblyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/AssemblyModule.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/AssemblyResolver.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/IObfuscatedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/IObfuscatedFile.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/Logger.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/MethodPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/MethodPrinter.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/NameRegexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/NameRegexes.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/ObfuscatedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/ObfuscatedFile.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/Option.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/PrintNewTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/PrintNewTokens.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/SharpZipLib/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/SharpZipLib/Main.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/StringInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/StringInliner.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/UserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/UserException.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/Utils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/Win32Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/Win32Path.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/de4dot.code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/de4dot.code.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/renamer/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/renamer/Renamer.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/renamer/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/renamer/TypeInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.code/renamer/TypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.code/renamer/TypeNames.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.cui/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.cui/CommandLineParser.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.cui/FilesDeobfuscator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.cui/FilesDeobfuscator.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.cui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.cui/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.cui/de4dot.cui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.cui/de4dot.cui.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.netcore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.netcore.sln -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.netframework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.netframework.sln -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot.snk -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot/App.config -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot/Program.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/de4dot/de4dot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/de4dot/de4dot.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/deobfuscator.Template/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/deobfuscator.Template/readme.txt -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/dnlib.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/dnlib.snk -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyHash.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/AssemblyRef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ClassLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ClassLayout.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Constant.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/CorLibTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/CorLibTypes.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/CpuArch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/CpuArch.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/DeclSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/DeclSecurity.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ElementType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/Code.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/OpCode.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Emit/OpCodes.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/EventDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/EventDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ExportedType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Extensions.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/FieldDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/FieldDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/FileDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/FileDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/GenericParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/GenericParam.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ICodedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ICodedToken.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ICorLibTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ICorLibTypes.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/IDecrypters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/IDecrypters.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ILogger.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/IResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/IResolver.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/IType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/IVariable.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ImplMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ImplMap.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Importer.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/InterfaceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/InterfaceImpl.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/BlobStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/BlobStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/CodedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/CodedToken.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/ColumnInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/ColumnSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/ColumnSize.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/GuidStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/GuidStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/HeapType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/HeapType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/MDTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/MDTable.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/MetaData.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/PdbStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/PdbStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/RidList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/RidList.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/Table.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/TableInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/USStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MD/USStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MDToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MDToken.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MarshalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MarshalType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MemberFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MemberFinder.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MemberRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MemberRef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MethodDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MethodDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/MethodSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/MethodSpec.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleContext.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleDefMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleDefMD.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleKind.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleLoader.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ModuleRef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/NativeType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/NullResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/NullResolver.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ParamDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ParamDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/ParameterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/ParameterList.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbImport.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbLocal.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbMethod.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbScope.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbState.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Pdb/PdbUtils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/PropertyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/PropertyDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/PublicKey.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/PublicKeyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/PublicKeyBase.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Resolver.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Resource.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/SigComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/SigComparer.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/StandAloneSig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/StandAloneSig.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/StrongNameKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/StrongNameKey.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TIAHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TIAHelper.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeDef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeDefFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeDefFinder.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeHelper.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeRef.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeSig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeSig.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/TypeSpec.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/UTF8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/UTF8String.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Utils.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/VTableFixups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/VTableFixups.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/VariantType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/WinMDHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/WinMDHelpers.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/WinMDStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/WinMDStatus.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/Hasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/Hasher.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/IChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/IChunk.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/IHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/IHeap.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/USHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/DotNet/Writer/USHeap.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/ExtensionAttribute.cs: -------------------------------------------------------------------------------- 1 | // Foo 2 | -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/DataReader.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/DataReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/DataReaderFactory.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/DataReaderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/DataReaderStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/DataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/DataStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/DataStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/DataStreamFactory.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/EmptyDataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/EmptyDataStream.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/FileOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/FileOffset.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/FileSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/FileSection.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/IFileSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/IFileSection.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/IO/IOExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/IO/IOExtensions.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/Characteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/Characteristics.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/IPEImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/IPEImage.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/IPEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/IPEType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/ImageDebugType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/ImageDebugType.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/ImageDosHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/ImageDosHeader.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/ImageFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/ImageFileHeader.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/ImageNTHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/ImageNTHeaders.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/Machine.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/PEExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/PEExtensions.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/PEImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/PEImage.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/PEInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/PEInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/RVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/RVA.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/PE/Subsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/PE/Subsystem.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Settings.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Threading/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Threading/Lock.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Utils/ArrayEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Utils/ArrayEmpty.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Utils/ILazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Utils/ILazyList.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Utils/LazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Utils/LazyList.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Utils/SimpleLazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Utils/SimpleLazyList.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/Utils/UserValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/Utils/UserValue.cs -------------------------------------------------------------------------------- /Libs/Sources/De4dot/sources/dnlib/src/dnlib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/sources/dnlib/src/dnlib.csproj -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/ILMerge.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/cp.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/curl.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/mv.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/rm.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/rpl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/rpl.exe -------------------------------------------------------------------------------- /Libs/Sources/De4dot/tools/unzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/De4dot/tools/unzip.exe -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/Enums.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/Generated.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/INode.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/INullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Ast/INullable.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/IAstVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/IAstVisitor.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Lexer/ILexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Lexer/ILexer.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Lexer/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Lexer/Token.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Location.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/Errors.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/gen.bat -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/Parser/gen.sh -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/ParserFactory.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.NRefactory.Reflexil/SnippetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.NRefactory.Reflexil/SnippetParser.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.SharpDevelop.Dom.Reflexil/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.SharpDevelop.Dom.Reflexil/Tag.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.SharpDevelop.Dom.Reflexil/XmlDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.SharpDevelop.Dom.Reflexil/XmlDoc.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/Caret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/Caret.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/HRuler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/HRuler.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/Ime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/Ime.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/TextArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/TextArea.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/TextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Gui/TextView.cs -------------------------------------------------------------------------------- /Libs/Sources/ICSharpCode.TextEditor.Reflexil/Util/TipText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/ICSharpCode.TextEditor.Reflexil/Util/TipText.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/CodeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/CodeReader.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/CodeWriter.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Document.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/MethodBody.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Metadata/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Metadata/Heap.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Metadata/Row.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ByteBuffer.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ImageReader.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/ImageWriter.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.PE/TextMap.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Reflexil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Reflexil.csproj -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Rocks/ILParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.Rocks/ILParser.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil.props -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyFlags.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyReader.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/AssemblyWriter.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Consts.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/EventReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/EventReference.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ExportedType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/FieldReference.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/FileAttributes.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/IMetadataScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/IMetadataScope.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/LinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/LinkedResource.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/MetadataSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/MetadataSystem.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/ReferenceType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/SentinelType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TargetRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TargetRuntime.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Treatments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/Treatments.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeAttributes.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeDefinition.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeReference.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono/Disposable.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono/Empty.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Mono/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Mono/Type.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/ProjectInfo.cs -------------------------------------------------------------------------------- /Libs/Sources/Mono.Cecil.Reflexil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Libs/Sources/Mono.Cecil.Reflexil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Licenses/Reflexil/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/Reflexil/GPL-LICENSE.txt -------------------------------------------------------------------------------- /Licenses/Reflexil/LGPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/Reflexil/LGPL-LICENSE.txt -------------------------------------------------------------------------------- /Licenses/Reflexil/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/Reflexil/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Licenses/Reflexil/triple.licensing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/Reflexil/triple.licensing.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/Be.HexEditor/LICENSE.Be.HexEditor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/Be.HexEditor/LICENSE.Be.HexEditor.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/COPYING -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.QuickLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.QuickLZ.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.de4dot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.de4dot.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.dnlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.dnlib.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.lzma.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.lzmat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.lzmat.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/De4dot/LICENSE.randomc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/De4dot/LICENSE.randomc.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/ICSharpCode.SharpDevelop.Dom/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/ICSharpCode.SharpDevelop.Dom/LGPL.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/ICSharpCode.SharpDevelop.Dom/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/ICSharpCode.SharpDevelop.Dom/README.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/ICSharpCode.TextEditor/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/ICSharpCode.TextEditor/LGPL.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/ICSharpCode.TextEditor/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/ICSharpCode.TextEditor/README.txt -------------------------------------------------------------------------------- /Licenses/ThirdParty/Mono.Cecil/LICENSE.Mono.Cecil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Licenses/ThirdParty/Mono.Cecil/LICENSE.Mono.Cecil.txt -------------------------------------------------------------------------------- /Plugins/BaseAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/BaseAssemblyContext.cs -------------------------------------------------------------------------------- /Plugins/BasePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/BasePackage.cs -------------------------------------------------------------------------------- /Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /Plugins/GenericFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/GenericFactory.cs -------------------------------------------------------------------------------- /Plugins/IAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/IAssemblyContext.cs -------------------------------------------------------------------------------- /Plugins/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/IPackage.cs -------------------------------------------------------------------------------- /Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /Plugins/PluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/PluginFactory.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Libs/Binaries/ICSharpCode.TreeView.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Libs/Binaries/ICSharpCode.TreeView.dll -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Libs/Binaries/ILSpy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Libs/Binaries/ILSpy.exe -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ContextMenu/BaseContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ContextMenu/BaseContextMenu.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ILSpyAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ILSpyAssemblyContext.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ILSpyAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ILSpyAssemblyWrapper.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ILSpyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ILSpyHelper.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ILSpyPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ILSpyPackage.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ILSpyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ILSpyPlugin.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ReflexilHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ReflexilHost.xaml -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Plugins/ReflexilHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Plugins/ReflexilHost.xaml.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Reflexil.ILSpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Reflexil.ILSpy.csproj -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/delete.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectassemblyreference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectassemblyreference.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectclass.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectconstructor.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectenum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectenum.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectevent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectevent.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectfield.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectinnerclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectinnerclass.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectinnerenum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectinnerenum.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectinnerinterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectinnerinterface.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectinnerstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectinnerstruct.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectinterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectinterface.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectmethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectmethod.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectproperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectproperty.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectresource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectresource.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/injectstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/injectstruct.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/obfuscator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/obfuscator.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/reflexil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/reflexil.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/reload.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/rename.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/saveas.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/update.png -------------------------------------------------------------------------------- /Plugins/Reflexil.ILSpy/Resources/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.ILSpy/Resources/verify.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/PluginConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/PluginConfig.xml -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Plugins/JustDecompileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Plugins/JustDecompileHelper.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Plugins/JustDecompilePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Plugins/JustDecompilePlugin.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Plugins/ReflexilHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Plugins/ReflexilHost.xaml -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Plugins/ReflexilHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Plugins/ReflexilHost.xaml.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Reflexil.JustDecompile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Reflexil.JustDecompile.csproj -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/close.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/delete.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectclass.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectenum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectenum.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectevent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectevent.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectfield.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectinnerclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectinnerclass.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectinnerenum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectinnerenum.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectmethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectmethod.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/injectstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/injectstruct.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/obfuscator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/obfuscator.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/reflexil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/reflexil.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/reload.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/rename.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/saveas.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/update.png -------------------------------------------------------------------------------- /Plugins/Reflexil.JustDecompile/Resources/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.JustDecompile/Resources/verify.png -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Libs/Binaries/Reflector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Libs/Binaries/Reflector.exe -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Plugins/ReflectorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Plugins/ReflectorHelper.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Plugins/ReflectorPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Plugins/ReflectorPackage.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Plugins/ReflectorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Plugins/ReflectorPlugin.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Plugins/UIContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Plugins/UIContext.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugins/Reflexil.Reflector/Reflexil.Reflector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Plugins/Reflexil.Reflector/Reflexil.Reflector.csproj -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/DataSources/Mono.Cecil.Cil.OpCode.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/DataSources/Mono.Cecil.Cil.OpCode.datasource -------------------------------------------------------------------------------- /Properties/DataSources/Mono.Cecil.Cil.OpCodes.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/DataSources/Mono.Cecil.Cil.OpCodes.datasource -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/SolutionVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Properties/SolutionVersion.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/README.md -------------------------------------------------------------------------------- /Reflexil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Reflexil.csproj -------------------------------------------------------------------------------- /Reflexil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Reflexil.sln -------------------------------------------------------------------------------- /Resources/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/bar.png -------------------------------------------------------------------------------- /Resources/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/browser.png -------------------------------------------------------------------------------- /Resources/copyhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/copyhs.png -------------------------------------------------------------------------------- /Resources/cuths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/cuths.png -------------------------------------------------------------------------------- /Resources/findhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/findhs.png -------------------------------------------------------------------------------- /Resources/findnexths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/findnexths.png -------------------------------------------------------------------------------- /Resources/opcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/opcodes.txt -------------------------------------------------------------------------------- /Resources/openhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/openhs.png -------------------------------------------------------------------------------- /Resources/pastehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/pastehs.png -------------------------------------------------------------------------------- /Resources/reflexil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/reflexil.png -------------------------------------------------------------------------------- /Resources/savehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Resources/savehs.png -------------------------------------------------------------------------------- /Utils/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/AssemblyHelper.cs -------------------------------------------------------------------------------- /Utils/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/ByteHelper.cs -------------------------------------------------------------------------------- /Utils/CecilHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/CecilHelper.cs -------------------------------------------------------------------------------- /Utils/CecilImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/CecilImporter.cs -------------------------------------------------------------------------------- /Utils/De4dotHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/De4dotHelper.cs -------------------------------------------------------------------------------- /Utils/DeleteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/DeleteHelper.cs -------------------------------------------------------------------------------- /Utils/EBarImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/EBarImages.cs -------------------------------------------------------------------------------- /Utils/EBrowserImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/EBrowserImages.cs -------------------------------------------------------------------------------- /Utils/ENumericBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/ENumericBase.cs -------------------------------------------------------------------------------- /Utils/InjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/InjectHelper.cs -------------------------------------------------------------------------------- /Utils/InjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/InjectType.cs -------------------------------------------------------------------------------- /Utils/PEVerifyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/PEVerifyUtility.cs -------------------------------------------------------------------------------- /Utils/ReflexilAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/ReflexilAssemblyResolver.cs -------------------------------------------------------------------------------- /Utils/RenameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/RenameHelper.cs -------------------------------------------------------------------------------- /Utils/SdkUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/SdkUtility.cs -------------------------------------------------------------------------------- /Utils/StrongNameUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Utils/StrongNameUtility.cs -------------------------------------------------------------------------------- /Verifier/AssemblyVerification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/AssemblyVerification.cs -------------------------------------------------------------------------------- /Verifier/IntermediateLanguageVerificationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/IntermediateLanguageVerificationError.cs -------------------------------------------------------------------------------- /Verifier/MetadataVerificationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/MetadataVerificationError.cs -------------------------------------------------------------------------------- /Verifier/VerificationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/VerificationError.cs -------------------------------------------------------------------------------- /Verifier/VerificationErrorCollectionCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/VerificationErrorCollectionCreator.cs -------------------------------------------------------------------------------- /Verifier/VerificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Verifier/VerificationException.cs -------------------------------------------------------------------------------- /Wrappers/IAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/IAssemblyWrapper.cs -------------------------------------------------------------------------------- /Wrappers/IWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/IWrapper.cs -------------------------------------------------------------------------------- /Wrappers/InstructionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/InstructionWrapper.cs -------------------------------------------------------------------------------- /Wrappers/NamespaceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/NamespaceWrapper.cs -------------------------------------------------------------------------------- /Wrappers/OperandDisplayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/OperandDisplayHelper.cs -------------------------------------------------------------------------------- /Wrappers/ParameterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/ParameterWrapper.cs -------------------------------------------------------------------------------- /Wrappers/PropertyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/PropertyWrapper.cs -------------------------------------------------------------------------------- /Wrappers/VariableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/Wrappers/VariableWrapper.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/app.config -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailro/Reflexil/HEAD/credits.txt --------------------------------------------------------------------------------