├── .gitattributes ├── .gitignore ├── CodeGenerationTools ├── App.config ├── CodeGenerationTools.csproj ├── CodeGenerationTools.csproj.DotSettings ├── Generator │ ├── AbstractMethodGenerator.cs │ ├── AdaptorGenerator.cs │ ├── AdaptorRegisterGenerator.cs │ ├── Base │ │ ├── GeneratorBase.cs │ │ └── IGenerator.cs │ ├── DelegateConveterGenerator.cs │ ├── DelegateRegisterGenerator.cs │ ├── HelperGenerator.cs │ ├── InterfaceGenerator.cs │ └── VirtualMethodGenerator.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReadMe.md ├── ReflectionExt.cs ├── Template │ ├── action_register.tmpd │ ├── adaptor.tmpd │ ├── adaptor_interface.tmpd │ ├── adaptor_register.tmpd │ ├── delegate_return.tmpd │ ├── delegate_void.tmpd │ ├── function_register.tmpd │ ├── helper.tmpd │ ├── method_abstract_return.tmpd │ ├── method_abstract_void.tmpd │ ├── method_virtual_return.tmpd │ └── method_virtual_void.tmpd ├── pic_1.png ├── pic_2.png ├── pic_3.png └── pic_4.png ├── Debugging ├── ILRuntimeDebugEngine │ ├── AD7 │ │ ├── AD7BoundBreakpoint.cs │ │ ├── AD7DocumentContext.cs │ │ ├── AD7Engine.cs │ │ ├── AD7Enums.cs │ │ ├── AD7ErrorBreakpoint.cs │ │ ├── AD7Events.cs │ │ ├── AD7Expression.cs │ │ ├── AD7Module.cs │ │ ├── AD7PendingBreakPoint.cs │ │ ├── AD7Port.cs │ │ ├── AD7PortSupplier.cs │ │ ├── AD7Process.cs │ │ ├── AD7ProgramNode.cs │ │ ├── AD7ProgramProvider.cs │ │ ├── AD7StackFrame.cs │ │ ├── AD7Thread.cs │ │ ├── Constants.cs │ │ ├── DebuggedProcess.cs │ │ ├── EngineCallback.cs │ │ └── ILProperty.cs │ ├── EngineConstants.cs │ ├── EngineRegistration.pkgdef │ ├── ILRuntimeDebugEngine.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Utils │ │ └── EngineUtils.cs │ └── packages.config └── ILRuntimeDebuggerLauncher │ ├── AttachToILRuntime.cs │ ├── AttachToILRuntimePackage.cs │ ├── AttachToILRuntimePackage.vsct │ ├── FrmLauncher.Designer.cs │ ├── FrmLauncher.cs │ ├── FrmLauncher.resx │ ├── ILRuntimeDebuggerLauncher.csproj │ ├── ILRuntimeDebuggerLauncher.csproj.user │ ├── Key.snk │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── AttachToILRuntime.png │ └── AttachToILRuntimePackage.ico │ ├── VSPackage.resx │ ├── index.html │ ├── packages.config │ ├── source.extension.vsixmanifest │ └── stylesheet.css ├── Documents ├── CLRBinding │ └── ReadMe.md ├── CLRRedirection │ └── ReadMe.md ├── Delegates │ └── ReadMe.md ├── IL2CPP │ └── ReadMe.md ├── ILIntepreter │ └── ReadMe.md ├── Inheritance │ └── ReadMe.md ├── Optimization │ └── ReadMe.md ├── Reflections │ └── ReadMe.md └── StackFrame.txt ├── ILRuntime.sln ├── ILRuntime ├── CLR │ ├── Method │ │ ├── CLRMethod.cs │ │ ├── ExceptionHandler.cs │ │ ├── ILMethod.cs │ │ └── IMethod.cs │ ├── TypeSystem │ │ ├── CLRType.cs │ │ ├── ILGenericParameterType.cs │ │ ├── ILType.cs │ │ └── IType.cs │ └── Utils │ │ └── Extensions.cs ├── ILRuntime.csproj ├── Other │ ├── DelegateExportAttribute.cs │ └── NeedAdaptorAttribute.cs ├── Properties │ └── AssemblyInfo.cs ├── Reflection │ ├── Extensions.cs │ ├── ILRuntimeConstructorInfo.cs │ ├── ILRuntimeFieldInfo.cs │ ├── ILRuntimeMethodInfo.cs │ ├── ILRuntimeParameterInfo.cs │ ├── ILRuntimePropertyInfo.cs │ └── ILRuntimeType.cs └── Runtime │ ├── Adaptors │ └── CLRCrossBindingAdaptors.cs │ ├── CLRBinding │ └── BindingCodeGenerator.cs │ ├── Debugger │ ├── BreakPointContext.cs │ ├── BreakpointInfo.cs │ ├── DebugMessageType.cs │ ├── DebugService.cs │ ├── DebugSocket.cs │ ├── DebuggerServer │ │ └── DebuggerServer.cs │ ├── Protocol │ │ ├── CSBindBreakpoint.cs │ │ ├── CSDeleteBreakpoint.cs │ │ ├── CSExecute.cs │ │ ├── CSResolveVariable.cs │ │ ├── CSStep.cs │ │ ├── SCAttachResult.cs │ │ ├── SCBindBreakpointResult.cs │ │ ├── SCBreakpointHit.cs │ │ ├── SCModuleLoaded.cs │ │ ├── SCResolveVariableResult.cs │ │ ├── SCStepComplete.cs │ │ └── SCThreadStarted.cs │ ├── StackFrameInfo.cs │ ├── StepTypes.cs │ └── VariableInfo.cs │ ├── Enviorment │ ├── AppDomain.cs │ ├── CLRRedirections.cs │ ├── CrossBindingAdaptor.cs │ ├── DelegateManager.cs │ └── ILContext.cs │ ├── Extensions.cs │ ├── Intepreter │ ├── DelegateAdapter.cs │ ├── ILIntepreter.cs │ ├── ILRuntimeException.cs │ ├── ILTypeInstance.cs │ └── OpCodes │ │ ├── OpCode.cs │ │ └── OpCodeEnum.cs │ └── Stack │ ├── RuntimeStack.cs │ ├── StackFrame.cs │ └── StackObject.cs ├── ILRuntimeTest ├── Adapters │ ├── ClassInheritanceTestAdaptor.cs │ ├── TestClass2Adaptor.cs │ ├── TestClass3Adaptor.cs │ ├── TestClass4Adaptor.cs │ └── helper.cs ├── App.config ├── AutoGenerate │ ├── CLRBindings.cs │ ├── ILRuntimeTest_TestFramework_TestStruct_Binding.cs │ ├── System_Array_Binding.cs │ ├── System_Collections_Generic_Dictionary_2_ILTypeInstance_Int32_Binding.cs │ ├── System_Collections_Generic_Dictionary_2_String_Int32_Binding.cs │ ├── System_Console_Binding.cs │ ├── System_Int32_Binding.cs │ ├── System_Int64_Binding.cs │ ├── System_Object_Binding.cs │ ├── System_Single_Binding.cs │ ├── System_String_Binding.cs │ └── System_ValueType_Binding.cs ├── ILRuntimeTest.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TestBase │ ├── BaseTestUnit.cs │ ├── ITestable.cs │ ├── InstanceTestUnit.cs │ ├── StaticTestUnit.cs │ └── TestResultInfo.cs ├── TestFramework │ ├── ClassInheritanceTest.cs │ ├── DelegateTest.cs │ ├── TestClass2.cs │ └── TestClass3.cs ├── TestMainForm.Designer.cs ├── TestMainForm.cs └── TestMainForm.resx ├── LICENSE.TXT ├── Mono.Cecil.20 ├── Mono.Cecil.20.csproj └── MonoCecil │ ├── Mono.Cecil.Cil │ ├── Code.cs │ ├── CodeReader.cs │ ├── CodeWriter.cs │ ├── Document.cs │ ├── ExceptionHandler.cs │ ├── ILProcessor.cs │ ├── Instruction.cs │ ├── MethodBody.cs │ ├── OpCode.cs │ ├── OpCodes.cs │ ├── SequencePoint.cs │ ├── Symbols.cs │ ├── VariableDefinition.cs │ └── VariableReference.cs │ ├── Mono.Cecil.Metadata │ ├── BlobHeap.cs │ ├── Buffers.cs │ ├── CodedIndex.cs │ ├── ElementType.cs │ ├── GuidHeap.cs │ ├── Heap.cs │ ├── MetadataToken.cs │ ├── Row.cs │ ├── StringHeap.cs │ ├── TableHeap.cs │ ├── TokenType.cs │ ├── UserStringHeap.cs │ └── Utilities.cs │ ├── Mono.Cecil.PE │ ├── BinaryStreamReader.cs │ ├── BinaryStreamWriter.cs │ ├── ByteBuffer.cs │ ├── ByteBufferEqualityComparer.cs │ ├── DataDirectory.cs │ ├── Image.cs │ ├── ImageReader.cs │ ├── ImageWriter.cs │ ├── Section.cs │ └── TextMap.cs │ ├── Mono.Cecil │ ├── ArrayType.cs │ ├── AssemblyDefinition.cs │ ├── AssemblyFlags.cs │ ├── AssemblyHashAlgorithm.cs │ ├── AssemblyLinkedResource.cs │ ├── AssemblyNameDefinition.cs │ ├── AssemblyNameReference.cs │ ├── AssemblyReader.cs │ ├── AssemblyWriter.cs │ ├── BaseAssemblyResolver.cs │ ├── CallSite.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 │ ├── TypeAttributes.cs │ ├── TypeDefinition.cs │ ├── TypeDefinitionCollection.cs │ ├── TypeParser.cs │ ├── TypeReference.cs │ ├── TypeSpecification.cs │ ├── TypeSystem.cs │ └── VariantType.cs │ ├── Mono.Collections.Generic │ ├── Collection.cs │ └── ReadOnlyCollection.cs │ ├── Mono.Security.Cryptography │ ├── CryptoConvert.cs │ └── CryptoService.cs │ └── Mono │ ├── Actions.cs │ ├── Empty.cs │ └── Funcs.cs ├── Mono.Cecil.Mdb ├── Mono.Cecil.Mdb.csproj ├── Properties │ └── AssemblyInfo.cs └── mdb │ ├── Mono.Cecil.Mdb │ ├── MdbReader.cs │ └── MdbReaderProvider.cs │ └── Mono.CompilerServices.SymbolWriter │ ├── AnonymousScopeEntry.cs │ ├── CapturedScope.cs │ ├── CapturedVariable.cs │ ├── CodeBlockEntry.cs │ ├── CompileUnitEntry.cs │ ├── ICompileUnit.cs │ ├── IMethodDef.cs │ ├── ISourceFile.cs │ ├── LineNumberEntry.cs │ ├── LineNumberTable.cs │ ├── LocalVariableEntry.cs │ ├── MethodEntry.cs │ ├── MonoSymbolFile.cs │ ├── MonoSymbolFileException.cs │ ├── MonoSymbolWriter.cs │ ├── MyBinaryReader.cs │ ├── MyBinaryWriter.cs │ ├── NamespaceEntry.cs │ ├── NamespaceInfo.cs │ ├── OffsetTable.cs │ ├── ScopeVariable.cs │ ├── SourceFileEntry.cs │ ├── SourceMethodBuilder.cs │ ├── SourceMethodImpl.cs │ ├── SymbolDocumentWriterImpl.cs │ └── SymbolWriterImpl.cs ├── Mono.Cecil.Pdb ├── Mono.Cecil.Pdb.csproj ├── Properties │ └── AssemblyInfo.cs └── pdb │ ├── Microsoft.Cci.Pdb │ ├── BitAccess.cs │ ├── BitSet.cs │ ├── CvInfo.cs │ ├── DataStream.cs │ ├── DbiDbgHdr.cs │ ├── DbiHeader.cs │ ├── DbiModuleInfo.cs │ ├── DbiSecCon.cs │ ├── IntHashTable.cs │ ├── Interfaces.cs │ ├── MsfDirectory.cs │ ├── PdbConstant.cs │ ├── PdbDebugException.cs │ ├── PdbException.cs │ ├── PdbFile.cs │ ├── PdbFileHeader.cs │ ├── PdbFunction.cs │ ├── PdbLine.cs │ ├── PdbLines.cs │ ├── PdbReader.cs │ ├── PdbScope.cs │ ├── PdbSlot.cs │ ├── PdbSource.cs │ └── SourceLocationProvider.cs │ └── Mono.Cecil.Pdb │ ├── ISymUnmanagedDocumentWriter.cs │ ├── ISymUnmanagedWriter2.cs │ ├── ModuleMetadata.cs │ ├── PdbHelper.cs │ ├── PdbReader.cs │ ├── PdbWriter.cs │ ├── SymDocumentWriter.cs │ └── SymWriter.cs ├── ReadMe-EN.md ├── ReadMe.md ├── TestCases ├── DelegateInnerTest.cs ├── DelegateTest.cs ├── EnumTest.cs ├── InheritanceTest.cs ├── LightTester1.cs ├── LightTester2.cs ├── Properties │ └── AssemblyInfo.cs ├── ReflectionTest.cs ├── SimpleTest.cs ├── Structs.cs ├── Test01.cs ├── Test03.cs ├── Test05.cs └── TestCases.csproj └── packages ├── Microsoft.CodeAnalysis.Analyzers.1.1.0 ├── Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg ├── ThirdPartyNotices.rtf ├── analyzers │ └── dotnet │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.Analyzers.dll │ │ └── Microsoft.CodeAnalysis.CSharp.Analyzers.dll │ │ └── vb │ │ ├── Microsoft.CodeAnalysis.Analyzers.dll │ │ └── Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── Microsoft.CodeAnalysis.CSharp.1.3.2 ├── Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml ├── Microsoft.CodeAnalysis.Common.1.3.2 ├── Microsoft.CodeAnalysis.Common.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml ├── Microsoft.CodeAnalysis.Workspaces.Common.1.3.2 ├── Microsoft.CodeAnalysis.Workspaces.Common.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.Workspaces.Desktop.dll │ ├── Microsoft.CodeAnalysis.Workspaces.Desktop.xml │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml ├── Microsoft.Composition.1.0.27 ├── License-Stable.rtf ├── Microsoft.Composition.1.0.27.nupkg └── lib │ └── portable-net45+win8+wp8+wpa81 │ ├── System.Composition.AttributedModel.XML │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Convention.xml │ ├── System.Composition.Hosting.XML │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.XML │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.XML │ └── System.Composition.TypedParts.dll ├── Microsoft.VSSDK.BuildTools.14.3.25407 ├── Microsoft.VSSDK.BuildTools.14.3.25407.nupkg ├── build │ ├── Microsoft.VSSDK.BuildTools.props │ └── Microsoft.VSSDK.BuildTools.targets └── tools │ └── vssdk │ ├── Microsoft.VsSDK.Build.Tasks.dll │ ├── Microsoft.VsSDK.Common.props │ ├── Microsoft.VsSDK.Common.targets │ ├── Microsoft.VsSDK.Cpp.Overrides.targets │ ├── Microsoft.VsSDK.Cpp.targets │ ├── Microsoft.VsSDK.targets │ ├── ProjectItemsSchema.xml │ ├── inc │ ├── AppIDCmdUsed.vsct │ ├── EmulatorCmdUsed.vsct │ ├── KnownImageIds.vsct │ ├── Menus.vsct │ ├── MnuHelpIds.h │ ├── RazorCmdId.h │ ├── RazorCmdUsed.vsct │ ├── RazorGuids.h │ ├── SharedCmdDef.vsct │ ├── SharedCmdPlace.vsct │ ├── ShellCmdDef.vsct │ ├── ShellCmdPlace.vsct │ ├── VsDbgCmd.h │ ├── VsDbgCmdPlace.VSCT │ ├── VsDbgCmdUsed.VSCT │ ├── editids.h │ ├── sccmnid.h │ ├── sharedids.h │ ├── stdidcmd.h │ ├── venusids.h │ ├── venusmenu.vsct │ ├── virtkeys.h │ ├── vsdebugguids.h │ ├── vsshlids.h │ └── wbids.h │ └── schemas │ ├── PackageLanguagePackManifestSchema.xsd │ ├── PackageManifestSchema.Assets.xsd │ ├── PackageManifestSchema.Dependencies.xsd │ ├── PackageManifestSchema.Installation.xsd │ ├── PackageManifestSchema.Metadata.xsd │ ├── PackageManifestSchema.xsd │ └── VSIXManifestSchema.xsd ├── Microsoft.VisualStudio.Imaging.14.3.25407 ├── Microsoft.VisualStudio.Imaging.14.3.25407.nupkg └── lib │ └── net45 │ ├── Microsoft.VisualStudio.Imaging.dll │ └── microsoft.visualstudio.imaging.xml ├── Microsoft.VisualStudio.OLE.Interop.7.10.6070 ├── Microsoft.VisualStudio.OLE.Interop.7.10.6070.nupkg └── lib │ ├── Microsoft.VisualStudio.OLE.Interop.dll │ └── Microsoft.VisualStudio.OLE.Interop.xml ├── Microsoft.VisualStudio.Shell.14.0.14.3.25407 ├── Microsoft.VisualStudio.Shell.14.0.14.3.25407.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.14.0.dll │ └── Microsoft.VisualStudio.Shell.14.0.xml ├── Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319 ├── Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319.nupkg └── lib │ └── net40 │ ├── Microsoft.VisualStudio.Shell.Immutable.10.0.dll │ └── Microsoft.VisualStudio.Shell.Immutable.10.0.xml ├── Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727 ├── Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727.nupkg └── lib │ └── net45 │ ├── Microsoft.VisualStudio.Shell.Immutable.11.0.dll │ └── Microsoft.VisualStudio.Shell.Immutable.11.0.xml ├── Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003 ├── Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003.nupkg └── lib │ └── net45 │ ├── Microsoft.VisualStudio.Shell.Immutable.12.0.dll │ └── Microsoft.VisualStudio.Shell.Immutable.12.0.xml ├── Microsoft.VisualStudio.Shell.Immutable.14.0.14.3.25407 ├── Microsoft.VisualStudio.Shell.Immutable.14.0.14.3.25407.nupkg └── lib │ └── net45 │ ├── Microsoft.VisualStudio.Shell.Immutable.14.0.dll │ └── microsoft.visualstudio.shell.immutable.14.0.xml ├── Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319 ├── Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.10.0.dll │ └── Microsoft.VisualStudio.Shell.Interop.10.0.xml ├── Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030 ├── Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.11.0.dll │ └── Microsoft.VisualStudio.Shell.Interop.11.0.xml ├── Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110 ├── Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.12.0.dll │ └── Microsoft.VisualStudio.Shell.Interop.12.0.xml ├── Microsoft.VisualStudio.Shell.Interop.7.10.6071 ├── Microsoft.VisualStudio.Shell.Interop.7.10.6071.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.dll │ └── Microsoft.VisualStudio.Shell.Interop.xml ├── Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727 ├── Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.8.0.dll │ └── Microsoft.VisualStudio.Shell.Interop.8.0.xml ├── Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729 ├── Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729.nupkg └── lib │ ├── Microsoft.VisualStudio.Shell.Interop.9.0.dll │ └── Microsoft.VisualStudio.Shell.Interop.9.0.xml ├── Microsoft.VisualStudio.TextManager.Interop.7.10.6070 ├── Microsoft.VisualStudio.TextManager.Interop.7.10.6070.nupkg └── lib │ ├── Microsoft.VisualStudio.TextManager.Interop.dll │ └── Microsoft.VisualStudio.TextManager.Interop.xml ├── Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727 ├── Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727.nupkg └── lib │ ├── Microsoft.VisualStudio.TextManager.Interop.8.0.dll │ └── Microsoft.VisualStudio.TextManager.Interop.8.0.xml ├── Microsoft.VisualStudio.Threading.14.1.111 ├── Microsoft.VisualStudio.Threading.14.1.111.nupkg └── lib │ ├── dotnet │ ├── Microsoft.VisualStudio.Threading.dll │ └── Microsoft.VisualStudio.Threading.xml │ ├── net45 │ ├── Microsoft.VisualStudio.Threading.dll │ └── Microsoft.VisualStudio.Threading.xml │ └── portable-net45+win+wpa81 │ ├── Microsoft.VisualStudio.Threading.dll │ └── Microsoft.VisualStudio.Threading.xml ├── Microsoft.VisualStudio.Utilities.14.3.25407 ├── Microsoft.VisualStudio.Utilities.14.3.25407.nupkg └── lib │ └── net45 │ ├── Microsoft.VisualStudio.Utilities.dll │ └── microsoft.visualstudio.utilities.xml ├── Microsoft.VisualStudio.Validation.14.1.111 ├── Microsoft.VisualStudio.Validation.14.1.111.nupkg ├── README.txt ├── lib │ ├── dotnet │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ └── Microsoft.VisualStudio.Validation.xml │ ├── net45 │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ └── Microsoft.VisualStudio.Validation.xml │ └── portable-net45+win+wpa81+wp80 │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ └── Microsoft.VisualStudio.Validation.xml └── tools │ ├── 2013 │ ├── RequiresNotNull.snippet │ └── RequiresNotNullOrEmpty.snippet │ ├── 2015 │ ├── RequiresNotNull.snippet │ └── RequiresNotNullOrEmpty.snippet │ ├── install-snippets.cmd │ └── uninstall-snippets.cmd ├── System.Collections.4.0.0 ├── License.rtf ├── System.Collections.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Collections.Immutable.1.1.37 ├── System.Collections.Immutable.1.1.37.nupkg └── lib │ ├── dotnet │ ├── System.Collections.Immutable.dll │ └── System.Collections.Immutable.xml │ └── portable-net45+win8+wp8+wpa81 │ ├── System.Collections.Immutable.dll │ └── System.Collections.Immutable.xml ├── System.Diagnostics.Debug.4.0.0 ├── License.rtf ├── System.Diagnostics.Debug.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Globalization.4.0.0 ├── License.rtf ├── System.Globalization.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Linq.4.0.0 ├── System.Linq.4.0.0.nupkg ├── lib │ ├── dotnet │ │ └── System.Linq.dll │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Linq.dll │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ └── ref │ ├── dotnet │ ├── System.Linq.dll │ ├── System.Linq.xml │ ├── de │ │ └── System.Linq.xml │ ├── es │ │ └── System.Linq.xml │ ├── fr │ │ └── System.Linq.xml │ ├── it │ │ └── System.Linq.xml │ ├── ja │ │ └── System.Linq.xml │ ├── ko │ │ └── System.Linq.xml │ ├── ru │ │ └── System.Linq.xml │ ├── zh-hans │ │ └── System.Linq.xml │ └── zh-hant │ │ └── System.Linq.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Linq.dll │ └── System.Linq.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ └── wpa81 │ └── _._ ├── System.Reflection.Metadata.1.2.0 ├── System.Reflection.Metadata.1.2.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt └── lib │ ├── netstandard1.1 │ ├── System.Reflection.Metadata.dll │ └── System.Reflection.Metadata.xml │ └── portable-net45+win8 │ ├── System.Reflection.Metadata.dll │ └── System.Reflection.Metadata.xml ├── System.Resources.ResourceManager.4.0.0 ├── System.Resources.ResourceManager.4.0.0.nupkg ├── lib │ ├── DNXCore50 │ │ └── System.Resources.ResourceManager.dll │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Resources.ResourceManager.dll │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ ├── ref │ ├── dotnet │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.ResourceManager.xml │ │ ├── de │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── es │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── fr │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── it │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ja │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ko │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ru │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── zh-hans │ │ │ └── System.Resources.ResourceManager.xml │ │ └── zh-hant │ │ │ └── System.Resources.ResourceManager.xml │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ ├── System.Resources.ResourceManager.dll │ │ └── System.Resources.ResourceManager.xml │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ └── runtimes │ └── win8-aot │ └── lib │ └── netcore50 │ └── System.Resources.ResourceManager.dll ├── System.Runtime.4.0.0 ├── License.rtf ├── System.Runtime.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Runtime.Extensions.4.0.0 ├── License.rtf ├── System.Runtime.Extensions.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ └── System.Threading.4.0.0 ├── License.rtf ├── System.Threading.4.0.0.nupkg ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net45 │ └── _._ ├── win8 │ └── _._ ├── wp80 │ └── _._ ├── wpa81 │ └── _._ ├── xamarinios10 │ └── _._ └── xamarinmac20 │ └── _._ └── ref ├── MonoAndroid10 └── _._ ├── MonoTouch10 └── _._ ├── dotnet ├── System.Threading.dll ├── System.Threading.xml ├── de │ └── System.Threading.xml ├── es │ └── System.Threading.xml ├── fr │ └── System.Threading.xml ├── it │ └── System.Threading.xml ├── ja │ └── System.Threading.xml ├── ko │ └── System.Threading.xml ├── ru │ └── System.Threading.xml ├── zh-hans │ └── System.Threading.xml └── zh-hant │ └── System.Threading.xml ├── net45 └── _._ ├── netcore50 ├── System.Threading.dll ├── System.Threading.xml ├── de │ └── System.Threading.xml ├── es │ └── System.Threading.xml ├── fr │ └── System.Threading.xml ├── it │ └── System.Threading.xml ├── ja │ └── System.Threading.xml ├── ko │ └── System.Threading.xml ├── ru │ └── System.Threading.xml ├── zh-hans │ └── System.Threading.xml └── zh-hant │ └── System.Threading.xml ├── win8 └── _._ ├── wp80 └── _._ ├── wpa81 └── _._ ├── xamarinios10 └── _._ └── xamarinmac20 └── _._ /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | bin/ 3 | obj/ -------------------------------------------------------------------------------- /CodeGenerationTools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/App.config -------------------------------------------------------------------------------- /CodeGenerationTools/CodeGenerationTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/CodeGenerationTools.csproj -------------------------------------------------------------------------------- /CodeGenerationTools/CodeGenerationTools.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/CodeGenerationTools.csproj.DotSettings -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/AbstractMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/AbstractMethodGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/AdaptorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/AdaptorGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/AdaptorRegisterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/AdaptorRegisterGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/Base/GeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/Base/GeneratorBase.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/Base/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/Base/IGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/DelegateConveterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/DelegateConveterGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/DelegateRegisterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/DelegateRegisterGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/HelperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/HelperGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/InterfaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/InterfaceGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Generator/VirtualMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Generator/VirtualMethodGenerator.cs -------------------------------------------------------------------------------- /CodeGenerationTools/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/MainForm.Designer.cs -------------------------------------------------------------------------------- /CodeGenerationTools/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/MainForm.cs -------------------------------------------------------------------------------- /CodeGenerationTools/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/MainForm.resx -------------------------------------------------------------------------------- /CodeGenerationTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Program.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Properties/Resources.resx -------------------------------------------------------------------------------- /CodeGenerationTools/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Properties/Settings.settings -------------------------------------------------------------------------------- /CodeGenerationTools/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/ReadMe.md -------------------------------------------------------------------------------- /CodeGenerationTools/ReflectionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/ReflectionExt.cs -------------------------------------------------------------------------------- /CodeGenerationTools/Template/action_register.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/action_register.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/adaptor.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/adaptor.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/adaptor_interface.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/adaptor_interface.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/adaptor_register.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/adaptor_register.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/delegate_return.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/delegate_return.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/delegate_void.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/delegate_void.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/function_register.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/function_register.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/helper.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/helper.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/method_abstract_return.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/method_abstract_return.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/method_abstract_void.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/method_abstract_void.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/method_virtual_return.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/method_virtual_return.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/Template/method_virtual_void.tmpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/Template/method_virtual_void.tmpd -------------------------------------------------------------------------------- /CodeGenerationTools/pic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/pic_1.png -------------------------------------------------------------------------------- /CodeGenerationTools/pic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/pic_2.png -------------------------------------------------------------------------------- /CodeGenerationTools/pic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/pic_3.png -------------------------------------------------------------------------------- /CodeGenerationTools/pic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/CodeGenerationTools/pic_4.png -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7BoundBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7BoundBreakpoint.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7DocumentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7DocumentContext.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Engine.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Enums.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7ErrorBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7ErrorBreakpoint.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Events.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Expression.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Module.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7PendingBreakPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7PendingBreakPoint.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Port.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Port.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7PortSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7PortSupplier.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Process.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7ProgramNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7ProgramNode.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7ProgramProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7ProgramProvider.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7StackFrame.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/AD7Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/AD7Thread.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/Constants.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/DebuggedProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/DebuggedProcess.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/EngineCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/EngineCallback.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/AD7/ILProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/AD7/ILProperty.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/EngineConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/EngineConstants.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/EngineRegistration.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/EngineRegistration.pkgdef -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/ILRuntimeDebugEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/ILRuntimeDebugEngine.csproj -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/Utils/EngineUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/Utils/EngineUtils.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebugEngine/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebugEngine/packages.config -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntime.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntimePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntimePackage.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntimePackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/AttachToILRuntimePackage.vsct -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.Designer.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/FrmLauncher.resx -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/ILRuntimeDebuggerLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/ILRuntimeDebuggerLauncher.csproj -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/ILRuntimeDebuggerLauncher.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/ILRuntimeDebuggerLauncher.csproj.user -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/Key.snk -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/Resources/AttachToILRuntime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/Resources/AttachToILRuntime.png -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/Resources/AttachToILRuntimePackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/Resources/AttachToILRuntimePackage.ico -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/VSPackage.resx -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/index.html -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/packages.config -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Debugging/ILRuntimeDebuggerLauncher/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Debugging/ILRuntimeDebuggerLauncher/stylesheet.css -------------------------------------------------------------------------------- /Documents/CLRBinding/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/CLRBinding/ReadMe.md -------------------------------------------------------------------------------- /Documents/CLRRedirection/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/CLRRedirection/ReadMe.md -------------------------------------------------------------------------------- /Documents/Delegates/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/Delegates/ReadMe.md -------------------------------------------------------------------------------- /Documents/IL2CPP/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/IL2CPP/ReadMe.md -------------------------------------------------------------------------------- /Documents/ILIntepreter/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/ILIntepreter/ReadMe.md -------------------------------------------------------------------------------- /Documents/Inheritance/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/Inheritance/ReadMe.md -------------------------------------------------------------------------------- /Documents/Optimization/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/Optimization/ReadMe.md -------------------------------------------------------------------------------- /Documents/Reflections/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/Reflections/ReadMe.md -------------------------------------------------------------------------------- /Documents/StackFrame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Documents/StackFrame.txt -------------------------------------------------------------------------------- /ILRuntime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime.sln -------------------------------------------------------------------------------- /ILRuntime/CLR/Method/CLRMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/Method/CLRMethod.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/Method/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/Method/ExceptionHandler.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/Method/ILMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/Method/ILMethod.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/Method/IMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/Method/IMethod.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/TypeSystem/CLRType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/TypeSystem/CLRType.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/TypeSystem/ILGenericParameterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/TypeSystem/ILGenericParameterType.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/TypeSystem/ILType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/TypeSystem/ILType.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/TypeSystem/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/TypeSystem/IType.cs -------------------------------------------------------------------------------- /ILRuntime/CLR/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/CLR/Utils/Extensions.cs -------------------------------------------------------------------------------- /ILRuntime/ILRuntime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/ILRuntime.csproj -------------------------------------------------------------------------------- /ILRuntime/Other/DelegateExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Other/DelegateExportAttribute.cs -------------------------------------------------------------------------------- /ILRuntime/Other/NeedAdaptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Other/NeedAdaptorAttribute.cs -------------------------------------------------------------------------------- /ILRuntime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/Extensions.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimeConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimeConstructorInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimeFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimeFieldInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimeMethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimeMethodInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimeParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimeParameterInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimePropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimePropertyInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Reflection/ILRuntimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Reflection/ILRuntimeType.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Adaptors/CLRCrossBindingAdaptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Adaptors/CLRCrossBindingAdaptors.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/CLRBinding/BindingCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/CLRBinding/BindingCodeGenerator.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/BreakPointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/BreakPointContext.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/BreakpointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/BreakpointInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/DebugMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/DebugMessageType.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/DebugService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/DebugService.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/DebugSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/DebugSocket.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/DebuggerServer/DebuggerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/DebuggerServer/DebuggerServer.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/CSBindBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/CSBindBreakpoint.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/CSDeleteBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/CSDeleteBreakpoint.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/CSResolveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/CSResolveVariable.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/CSStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCAttachResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCAttachResult.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCBindBreakpointResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCBindBreakpointResult.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCBreakpointHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCBreakpointHit.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCModuleLoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCModuleLoaded.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCResolveVariableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCResolveVariableResult.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCStepComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCStepComplete.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/Protocol/SCThreadStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/Protocol/SCThreadStarted.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/StackFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/StackFrameInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/StepTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/StepTypes.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Debugger/VariableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Debugger/VariableInfo.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Enviorment/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Enviorment/AppDomain.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Enviorment/CLRRedirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Enviorment/CLRRedirections.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Enviorment/CrossBindingAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Enviorment/CrossBindingAdaptor.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Enviorment/DelegateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Enviorment/DelegateManager.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Enviorment/ILContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Enviorment/ILContext.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Extensions.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/DelegateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/DelegateAdapter.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/ILIntepreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/ILIntepreter.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/ILRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/ILRuntimeException.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/ILTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Intepreter/OpCodes/OpCodeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeEnum.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Stack/RuntimeStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Stack/RuntimeStack.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Stack/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Stack/StackFrame.cs -------------------------------------------------------------------------------- /ILRuntime/Runtime/Stack/StackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntime/Runtime/Stack/StackObject.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Adapters/ClassInheritanceTestAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Adapters/ClassInheritanceTestAdaptor.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Adapters/TestClass2Adaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Adapters/TestClass2Adaptor.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Adapters/TestClass3Adaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Adapters/TestClass3Adaptor.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Adapters/TestClass4Adaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Adapters/TestClass4Adaptor.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Adapters/helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Adapters/helper.cs -------------------------------------------------------------------------------- /ILRuntimeTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/App.config -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/CLRBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/CLRBindings.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/ILRuntimeTest_TestFramework_TestStruct_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/ILRuntimeTest_TestFramework_TestStruct_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Array_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Array_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Collections_Generic_Dictionary_2_ILTypeInstance_Int32_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Collections_Generic_Dictionary_2_ILTypeInstance_Int32_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Collections_Generic_Dictionary_2_String_Int32_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Collections_Generic_Dictionary_2_String_Int32_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Console_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Console_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Int32_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Int32_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Int64_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Int64_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Object_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Object_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_Single_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_Single_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_String_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_String_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/AutoGenerate/System_ValueType_Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/AutoGenerate/System_ValueType_Binding.cs -------------------------------------------------------------------------------- /ILRuntimeTest/ILRuntimeTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/ILRuntimeTest.csproj -------------------------------------------------------------------------------- /ILRuntimeTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Program.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Properties/Resources.resx -------------------------------------------------------------------------------- /ILRuntimeTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ILRuntimeTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/Properties/Settings.settings -------------------------------------------------------------------------------- /ILRuntimeTest/TestBase/BaseTestUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestBase/BaseTestUnit.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestBase/ITestable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestBase/ITestable.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestBase/InstanceTestUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestBase/InstanceTestUnit.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestBase/StaticTestUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestBase/StaticTestUnit.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestBase/TestResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestBase/TestResultInfo.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestFramework/ClassInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestFramework/ClassInheritanceTest.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestFramework/DelegateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestFramework/DelegateTest.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestFramework/TestClass2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestFramework/TestClass2.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestFramework/TestClass3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestFramework/TestClass3.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestMainForm.Designer.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestMainForm.cs -------------------------------------------------------------------------------- /ILRuntimeTest/TestMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ILRuntimeTest/TestMainForm.resx -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Mono.Cecil.20/Mono.Cecil.20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/Mono.Cecil.20.csproj -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/CodeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/CodeReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/CodeWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Document.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/ExceptionHandler.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/ILProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/ILProcessor.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Instruction.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/MethodBody.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/SequencePoint.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/VariableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/VariableDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/VariableReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Cil/VariableReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/BlobHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/BlobHeap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Buffers.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/CodedIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/CodedIndex.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/ElementType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/GuidHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/GuidHeap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Heap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/MetadataToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/MetadataToken.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Row.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/StringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/StringHeap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/TableHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/TableHeap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/TokenType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/UserStringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/UserStringHeap.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.Metadata/Utilities.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/BinaryStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/BinaryStreamReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/BinaryStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/BinaryStreamWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ByteBuffer.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ByteBufferEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ByteBufferEqualityComparer.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/DataDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/DataDirectory.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ImageReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/ImageWriter.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyFlags.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyHashAlgorithm.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyLinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyLinkedResource.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyNameDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyNameDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyNameReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyNameReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/AssemblyWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/BaseAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/BaseAssemblyResolver.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/CustomAttribute.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/DefaultAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/DefaultAssemblyResolver.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/EmbeddedResource.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/EventAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/EventAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/EventDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/EventDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/EventReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/EventReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ExportedType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/FieldReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/FileAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/FunctionPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/FunctionPointerType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericInstanceMethod.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericInstanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericInstanceType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericParameter.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericParameterAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/GenericParameterAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IConstantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IConstantProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ICustomAttributeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ICustomAttributeProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IGenericInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IGenericInstance.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IGenericParameterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IGenericParameterProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IMarshalInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IMarshalInfoProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IMemberDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IMemberDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IMetadataScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IMetadataScope.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IMetadataTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IMetadataTokenProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/IMethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/IMethodSignature.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/LinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/LinkedResource.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ManifestResourceAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ManifestResourceAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MemberDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MemberDefinitionCollection.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MemberReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MemberReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MetadataResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MetadataResolver.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MetadataSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MetadataSystem.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodCallingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodCallingConvention.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodImplAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodImplAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodReturnType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodSemanticsAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodSemanticsAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/MethodSpecification.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ModuleReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PInvokeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PInvokeAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterDefinitionCollection.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ParameterReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/PropertyReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/ReferenceType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/SecurityDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/SecurityDeclaration.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/SentinelType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TargetRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TargetRuntime.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeAttributes.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeDefinition.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeDefinitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeDefinitionCollection.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeReference.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeSpecification.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Collections.Generic/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Collections.Generic/Collection.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Collections.Generic/ReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Collections.Generic/ReadOnlyCollection.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Security.Cryptography/CryptoConvert.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono.Security.Cryptography/CryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono.Security.Cryptography/CryptoService.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono/Actions.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono/Empty.cs -------------------------------------------------------------------------------- /Mono.Cecil.20/MonoCecil/Mono/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.20/MonoCecil/Mono/Funcs.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/Mono.Cecil.Mdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/Mono.Cecil.Mdb.csproj -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.Cecil.Mdb/MdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.Cecil.Mdb/MdbReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.Cecil.Mdb/MdbReaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.Cecil.Mdb/MdbReaderProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/AnonymousScopeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/AnonymousScopeEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CapturedScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CapturedScope.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CapturedVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CapturedVariable.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CodeBlockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CodeBlockEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CompileUnitEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/CompileUnitEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ICompileUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ICompileUnit.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/IMethodDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/IMethodDef.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ISourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ISourceFile.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LineNumberEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LineNumberEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LineNumberTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LineNumberTable.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LocalVariableEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/LocalVariableEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MethodEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MethodEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolFile.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolFileException.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MyBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MyBinaryReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MyBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/MyBinaryWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/NamespaceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/NamespaceEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/NamespaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/NamespaceInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/OffsetTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/OffsetTable.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ScopeVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/ScopeVariable.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceFileEntry.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceMethodBuilder.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceMethodImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SourceMethodImpl.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SymbolDocumentWriterImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SymbolDocumentWriterImpl.cs -------------------------------------------------------------------------------- /Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SymbolWriterImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Mdb/mdb/Mono.CompilerServices.SymbolWriter/SymbolWriterImpl.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/Mono.Cecil.Pdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/Mono.Cecil.Pdb.csproj -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/BitAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/BitAccess.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/BitSet.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/CvInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/CvInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DataStream.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiDbgHdr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiDbgHdr.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiHeader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiModuleInfo.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiSecCon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/DbiSecCon.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/IntHashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/IntHashTable.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/Interfaces.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/MsfDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/MsfDirectory.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbConstant.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbDebugException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbDebugException.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbException.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFile.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFileHeader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbFunction.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbLine.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbLines.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbScope.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbSlot.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/PdbSource.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/SourceLocationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Microsoft.Cci.Pdb/SourceLocationProvider.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ISymUnmanagedDocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ISymUnmanagedDocumentWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ISymUnmanagedWriter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ISymUnmanagedWriter2.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ModuleMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/ModuleMetadata.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbHelper.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbReader.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/PdbWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/SymDocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/SymDocumentWriter.cs -------------------------------------------------------------------------------- /Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/SymWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/Mono.Cecil.Pdb/pdb/Mono.Cecil.Pdb/SymWriter.cs -------------------------------------------------------------------------------- /ReadMe-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ReadMe-EN.md -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/ReadMe.md -------------------------------------------------------------------------------- /TestCases/DelegateInnerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/DelegateInnerTest.cs -------------------------------------------------------------------------------- /TestCases/DelegateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/DelegateTest.cs -------------------------------------------------------------------------------- /TestCases/EnumTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/EnumTest.cs -------------------------------------------------------------------------------- /TestCases/InheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/InheritanceTest.cs -------------------------------------------------------------------------------- /TestCases/LightTester1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/LightTester1.cs -------------------------------------------------------------------------------- /TestCases/LightTester2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/LightTester2.cs -------------------------------------------------------------------------------- /TestCases/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestCases/ReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/ReflectionTest.cs -------------------------------------------------------------------------------- /TestCases/SimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/SimpleTest.cs -------------------------------------------------------------------------------- /TestCases/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/Structs.cs -------------------------------------------------------------------------------- /TestCases/Test01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/Test01.cs -------------------------------------------------------------------------------- /TestCases/Test03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/Test03.cs -------------------------------------------------------------------------------- /TestCases/Test05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/Test05.cs -------------------------------------------------------------------------------- /TestCases/TestCases.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/TestCases/TestCases.csproj -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/Microsoft.CodeAnalysis.Common.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/Microsoft.CodeAnalysis.Common.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.Composition.1.0.27/License-Stable.rtf -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/Microsoft.VSSDK.BuildTools.14.3.25407.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/Microsoft.VSSDK.BuildTools.14.3.25407.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/build/Microsoft.VSSDK.BuildTools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/build/Microsoft.VSSDK.BuildTools.props -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/build/Microsoft.VSSDK.BuildTools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/build/Microsoft.VSSDK.BuildTools.targets -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Build.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Common.props -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Common.targets -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Cpp.Overrides.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Cpp.Overrides.targets -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Cpp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.Cpp.targets -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/Microsoft.VsSDK.targets -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/ProjectItemsSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/ProjectItemsSchema.xml -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/AppIDCmdUsed.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/AppIDCmdUsed.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/EmulatorCmdUsed.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/EmulatorCmdUsed.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/KnownImageIds.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/KnownImageIds.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/Menus.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/Menus.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/MnuHelpIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/MnuHelpIds.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorCmdId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorCmdId.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorCmdUsed.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorCmdUsed.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorGuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/RazorGuids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/SharedCmdDef.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/SharedCmdDef.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/SharedCmdPlace.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/SharedCmdPlace.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/ShellCmdDef.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/ShellCmdDef.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/ShellCmdPlace.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/ShellCmdPlace.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmd.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmdPlace.VSCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmdPlace.VSCT -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmdUsed.VSCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/VsDbgCmdUsed.VSCT -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/editids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/editids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/sccmnid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/sccmnid.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/sharedids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/sharedids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/stdidcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/stdidcmd.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/venusids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/venusids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/venusmenu.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/venusmenu.vsct -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/virtkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/virtkeys.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/vsdebugguids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/vsdebugguids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/vsshlids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/vsshlids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/wbids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/inc/wbids.h -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/PackageManifestSchema.Assets.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/PackageManifestSchema.Assets.xsd -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/PackageManifestSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/PackageManifestSchema.xsd -------------------------------------------------------------------------------- /packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/VSIXManifestSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VSSDK.BuildTools.14.3.25407/tools/vssdk/schemas/VSIXManifestSchema.xsd -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Imaging.14.3.25407/Microsoft.VisualStudio.Imaging.14.3.25407.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Imaging.14.3.25407/Microsoft.VisualStudio.Imaging.14.3.25407.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Imaging.14.3.25407/lib/net45/Microsoft.VisualStudio.Imaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Imaging.14.3.25407/lib/net45/Microsoft.VisualStudio.Imaging.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Imaging.14.3.25407/lib/net45/microsoft.visualstudio.imaging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Imaging.14.3.25407/lib/net45/microsoft.visualstudio.imaging.xml -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.OLE.Interop.7.10.6070/lib/Microsoft.VisualStudio.OLE.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6070/lib/Microsoft.VisualStudio.OLE.Interop.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.OLE.Interop.7.10.6070/lib/Microsoft.VisualStudio.OLE.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6070/lib/Microsoft.VisualStudio.OLE.Interop.xml -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Shell.14.0.14.3.25407/lib/Microsoft.VisualStudio.Shell.14.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Shell.14.0.14.3.25407/lib/Microsoft.VisualStudio.Shell.14.0.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Shell.14.0.14.3.25407/lib/Microsoft.VisualStudio.Shell.14.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Shell.14.0.14.3.25407/lib/Microsoft.VisualStudio.Shell.14.0.xml -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.xml -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Threading.14.1.111/Microsoft.VisualStudio.Threading.14.1.111.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Threading.14.1.111/Microsoft.VisualStudio.Threading.14.1.111.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Threading.14.1.111/lib/dotnet/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Threading.14.1.111/lib/dotnet/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Threading.14.1.111/lib/net45/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Threading.14.1.111/lib/net45/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Threading.14.1.111/lib/net45/Microsoft.VisualStudio.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Threading.14.1.111/lib/net45/Microsoft.VisualStudio.Threading.xml -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/README.txt -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNull.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNull.snippet -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNullOrEmpty.snippet -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNull.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNull.snippet -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNullOrEmpty.snippet -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/install-snippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/install-snippets.cmd -------------------------------------------------------------------------------- /packages/Microsoft.VisualStudio.Validation.14.1.111/tools/uninstall-snippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/Microsoft.VisualStudio.Validation.14.1.111/tools/uninstall-snippets.cmd -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/System.Collections.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/System.Collections.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/System.Collections.dll -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/de/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/de/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/es/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/es/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/fr/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/fr/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/it/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/it/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ja/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ja/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ko/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ko/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ru/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ru/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/zh-hans/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/zh-hans/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/zh-hant/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/dotnet/zh-hant/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/System.Collections.dll -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/de/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/de/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/es/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/es/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/fr/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/fr/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/it/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/it/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ja/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ja/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ko/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ko/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ru/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ru/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/zh-hans/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/zh-hans/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/zh-hant/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.4.0.0/ref/netcore50/zh-hant/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/System.Collections.Immutable.1.1.37.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.Immutable.1.1.37/System.Collections.Immutable.1.1.37.nupkg -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/System.Diagnostics.Debug.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/System.Diagnostics.Debug.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/de/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/de/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/es/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/es/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/fr/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/fr/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/it/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/it/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ja/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ja/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ko/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ko/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ru/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ru/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hans/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hans/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hant/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hant/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/de/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/de/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/es/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/es/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/fr/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/fr/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/it/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/it/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ja/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ja/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ko/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ko/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ru/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ru/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/System.Globalization.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/System.Globalization.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.dll -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/de/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/de/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/es/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/es/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/fr/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/fr/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/it/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/it/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ja/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ja/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ko/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ko/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ru/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ru/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/zh-hans/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/zh-hans/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/zh-hant/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/zh-hant/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.dll -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/de/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/de/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/es/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/es/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/fr/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/fr/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/it/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/it/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ja/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ja/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ko/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ko/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ru/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ru/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/zh-hans/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/zh-hans/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/zh-hant/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/zh-hant/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/System.Linq.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/System.Linq.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/dotnet/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/lib/dotnet/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/netcore50/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/lib/netcore50/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/de/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/de/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/es/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/es/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/fr/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/fr/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/it/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/it/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ja/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ja/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ko/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ko/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ru/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ru/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/zh-hans/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/zh-hans/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/zh-hant/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/dotnet/zh-hant/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/netcore50/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/netcore50/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/netcore50/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Linq.4.0.0/ref/netcore50/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/System.Reflection.Metadata.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/System.Reflection.Metadata.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.xml -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/System.Resources.ResourceManager.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Resources.ResourceManager.4.0.0/System.Resources.ResourceManager.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/System.Runtime.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/System.Runtime.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/System.Runtime.Extensions.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/System.Runtime.Extensions.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/de/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/de/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/es/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/es/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/fr/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/fr/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/it/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/it/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ja/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ja/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ko/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ko/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ru/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ru/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hans/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hans/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hant/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hant/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/de/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/de/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/es/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/es/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/fr/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/fr/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/it/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/it/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ja/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ja/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ko/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ko/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ru/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ru/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/System.Threading.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/System.Threading.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/System.Threading.dll -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/de/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/de/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/es/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/es/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/fr/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/fr/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/it/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/it/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ja/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ja/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ko/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ko/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ru/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ru/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/zh-hans/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/zh-hans/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/zh-hant/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/dotnet/zh-hant/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/System.Threading.dll -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/de/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/de/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/es/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/es/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/fr/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/fr/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/it/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/it/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ja/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ja/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ko/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ko/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ru/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ru/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/zh-hans/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/zh-hans/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/zh-hant/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-42/ILRuntime/HEAD/packages/System.Threading.4.0.0/ref/netcore50/zh-hant/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------