-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added net472 to redirect Mono.Cecil.GenericParameterConstraint Updated MonoMod.RuntimeDetour to be the same as Harmony v2.2.2
- Loading branch information
Showing
8 changed files
with
96 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#if NETFRAMEWORK | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.Code))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ConstantDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.CustomDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.CustomDebugInformationKind))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.DebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.Document))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.DocumentHashAlgorithm))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.DocumentLanguage))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.DocumentLanguageVendor))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.DocumentType))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ExceptionHandler))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ExceptionHandlerType))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.FlowControl))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ILProcessor))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImageDebugDirectory))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImageDebugHeader))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImageDebugHeaderEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImageDebugType))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImportDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImportTarget))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ImportTargetKind))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.Instruction))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.InstructionOffset))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ISymbolReader))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ISymbolReaderProvider))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ISymbolWriter))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ISymbolWriterProvider))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.MethodBody))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.MethodDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.OpCode))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.OpCodeType))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.OperandType))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.ScopeDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.SequencePoint))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.StackBehaviour))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.SymbolsNotFoundException))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.SymbolsNotMatchingException))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.VariableAttributes))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.VariableDebugInformation))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.VariableDefinition))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Cil.VariableReference))] | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,5 @@ | ||
#if NETFRAMEWORK | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.MonoSymbolFileException))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.ISourceFile))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.ICompileUnit))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.IMethodDef))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.MonoSymbolFile))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.OffsetTable))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.LineNumberEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.CodeBlockEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.LocalVariableEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.CapturedVariable))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.CapturedScope))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.ScopeVariable))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.AnonymousScopeEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.CompileUnitEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.SourceFileEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.LineNumberTable))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.MethodEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.NamespaceEntry))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.MonoSymbolWriter))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.SourceMethodBuilder))] | ||
[assembly: TypeForwardedTo(typeof(Mono.CompilerServices.SymbolWriter.SymbolWriterImpl))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Mdb.MdbReaderProvider))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Mdb.MdbReader))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Mdb.MdbWriterProvider))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Mdb.MdbWriter))] | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
#if NETFRAMEWORK | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.DocCommentId))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.IILVisitor))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.ILParser))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.MethodBodyRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.MethodDefinitionRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.ModuleDefinitionRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.ParameterReferenceRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.SecurityDeclarationRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.TypeDefinitionRocks))] | ||
[assembly: TypeForwardedTo(typeof(Mono.Cecil.Rocks.TypeReferenceRocks))] | ||
#endif |
Oops, something went wrong.