├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── merge-dependabot.yml ├── .gitignore ├── Directory.Build.props ├── License.txt ├── MethodDecorator.Fody.PnP.Tests ├── AssemblyExtensions.cs ├── MethodDecorator.Fody.PnP.Tests.csproj ├── SimpleTestBase.cs ├── TestConfig.cs ├── WeaverHelperWrapper.cs ├── WhenDecoratingFixed.cs ├── WhenDecoratingPartial.cs └── WhenDecoratingWithParameters.cs ├── MethodDecorator.Fody.Tests ├── AssemblyExtensions.cs ├── ClassTestsBase.cs ├── DecoratingConstructors.cs ├── Method.cs ├── MethodDecorator.Fody.Tests.csproj ├── SimpleTestBase.cs ├── StaticMembersDynamicWrapper.cs ├── TestConfig.cs ├── TestsBase.cs ├── WeaverHelperWrapper.cs ├── WhenAsync.cs ├── WhenDecoratedByDerivedMatchingAssembly.cs ├── WhenDecoratedByDerivedMatchingModule.cs ├── WhenDecoratedByDerivedMatchingModuleTypeExclude.cs ├── WhenDecoratedByNoInit.cs ├── WhenDecoratedInderectlly.cs ├── WhenDecoratingAbstractMethods.cs ├── WhenDecoratingByDerivedFromInterface.cs ├── WhenDecoratingByDerivedInterceptor.cs ├── WhenDecoratingByExternalInterceptor.cs ├── WhenDecoratingExtensionMethods.cs ├── WhenDecoratingGenericMethods.cs ├── WhenDecoratingGenericTypes.cs ├── WhenDecoratingMethodsWithReturnValues.cs ├── WhenDecoratingPropertyMethods.cs ├── WhenDecoratingVoidMethod.cs ├── WhenInterceptingNestedTypes.cs ├── WhenMatchingByCommaSeparated.cs └── WhenMatchingByRegex.cs ├── MethodDecorator.Fody.sln ├── MethodDecorator.Fody ├── ILProcessorExtensions.cs ├── IlHelper.cs ├── MethodDecorator.Fody.csproj ├── MethodEditContext.cs ├── MethodProcessor.cs ├── ModuleWeaver.cs ├── ReferenceFinder.cs └── TypeReferenceExtensions.cs ├── MethodDecorator ├── IAspectMatchingRule.cs ├── IMethodDecorator.cs ├── IPartialDecorator.cs ├── MethodDecorator.csproj ├── MethodDecoratorAttributeBase.cs └── key.snk ├── TestAssemblies ├── AnotherAssemblyAttributeContainer │ ├── AnotherAssemblyAttributeContainer.csproj │ ├── ExternalInterceptionAssemblyLevelAttribute.cs │ └── ExternalInterceptorAttribute.cs ├── SimpleTest.PnP │ ├── AspectMatchingAttributeBase.cs │ ├── AssemblyInfo.cs │ ├── InterceptedClass.cs │ ├── InterceptedMethods.cs │ ├── InterceptorAlterRetvalAttribute.cs │ ├── InterceptorBypassAttribute.cs │ ├── InterceptorBypassReturnAttribute.cs │ ├── InterceptorEntryAttribute.cs │ ├── InterceptorExceptionAttribute.cs │ ├── InterceptorExit1Attribute.cs │ ├── InterceptorExit1ExceptionAttribute.cs │ ├── InterceptorExitAttribute.cs │ ├── InterceptorInit1Attribute.cs │ ├── InterceptorInit2Attribute.cs │ ├── InterceptorInit3Attribute.cs │ ├── InterceptorWithParamsAttribute.cs │ ├── InterceptorWithPriorityAttribute.cs │ ├── Method.cs │ ├── SimpleTest.PnP.csproj │ └── TestRecords.cs └── SimpleTest │ ├── AssemblyInfo.cs │ ├── AsyncClass.cs │ ├── Attributes │ ├── DerivedDecoratorAttribute.cs │ ├── DerivedFromInterfaceDecoratorAttribute.cs │ ├── DerivedMatchingDecoratorAttribute.cs │ ├── InterceptorAttribute.cs │ ├── InterceptorDerivedFromAbstractBaseClassAttribute.cs │ ├── IntersectMethodsMarkedByAttribute.cs │ ├── MatchingDecoratorAttribute.cs │ ├── MethodDecoratorAttribute.cs │ └── NoInitMethodDecoratorAttribute.cs │ ├── DerivedMatchingAssembly.cs │ ├── DerivedMatchingModule.cs │ ├── DerivedMatchingModuleTypeExclude.cs │ ├── GenericMethod.cs │ ├── GenericType.cs │ ├── InterceptingAbstractMethods.cs │ ├── InterceptingConstructors.cs │ ├── InterceptingExtensionMethods.cs │ ├── InterceptingMethodsWithReturnValues.cs │ ├── InterceptingNestedTypes.cs │ ├── InterceptingPropertyMethods.cs │ ├── InterceptingVoidMethods.cs │ ├── MarkedFromAnotherAssembly.cs │ ├── MarkedFromTheDerivedDecorator.cs │ ├── MarkedFromTheDerivedInterface.cs │ ├── MarkedWithInderectAttribute.cs │ ├── MarkedWithNoInit.cs │ ├── MatchingByRegex.cs │ ├── MatchingCommaSeparated.cs │ ├── Method.cs │ ├── Sample.cs │ ├── SimpleTest.csproj │ └── TestRecords.cs ├── appveyor.yml ├── global.json ├── package_icon.png └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/License.txt -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/AssemblyExtensions.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/MethodDecorator.Fody.PnP.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/MethodDecorator.Fody.PnP.Tests.csproj -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/SimpleTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/SimpleTestBase.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/TestConfig.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/WeaverHelperWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/WeaverHelperWrapper.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/WhenDecoratingFixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/WhenDecoratingFixed.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/WhenDecoratingPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/WhenDecoratingPartial.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.PnP.Tests/WhenDecoratingWithParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.PnP.Tests/WhenDecoratingWithParameters.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/AssemblyExtensions.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/ClassTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/ClassTestsBase.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/DecoratingConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/DecoratingConstructors.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/Method.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/MethodDecorator.Fody.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/MethodDecorator.Fody.Tests.csproj -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/SimpleTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/SimpleTestBase.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/StaticMembersDynamicWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/StaticMembersDynamicWrapper.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/TestConfig.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/TestsBase.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WeaverHelperWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WeaverHelperWrapper.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenAsync.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingAssembly.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingModule.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingModuleTypeExclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratedByDerivedMatchingModuleTypeExclude.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratedByNoInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratedByNoInit.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratedInderectlly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratedInderectlly.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingAbstractMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingAbstractMethods.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingByDerivedFromInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingByDerivedFromInterface.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingByDerivedInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingByDerivedInterceptor.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingByExternalInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingByExternalInterceptor.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingExtensionMethods.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingGenericMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingGenericMethods.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingGenericTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingGenericTypes.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingMethodsWithReturnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingMethodsWithReturnValues.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingPropertyMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingPropertyMethods.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenDecoratingVoidMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenDecoratingVoidMethod.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenInterceptingNestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenInterceptingNestedTypes.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenMatchingByCommaSeparated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenMatchingByCommaSeparated.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.Tests/WhenMatchingByRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.Tests/WhenMatchingByRegex.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody.sln -------------------------------------------------------------------------------- /MethodDecorator.Fody/ILProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/ILProcessorExtensions.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/IlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/IlHelper.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/MethodDecorator.Fody.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/MethodDecorator.Fody.csproj -------------------------------------------------------------------------------- /MethodDecorator.Fody/MethodEditContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/MethodEditContext.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/MethodProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/MethodProcessor.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/ModuleWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/ModuleWeaver.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/ReferenceFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/ReferenceFinder.cs -------------------------------------------------------------------------------- /MethodDecorator.Fody/TypeReferenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator.Fody/TypeReferenceExtensions.cs -------------------------------------------------------------------------------- /MethodDecorator/IAspectMatchingRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/IAspectMatchingRule.cs -------------------------------------------------------------------------------- /MethodDecorator/IMethodDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/IMethodDecorator.cs -------------------------------------------------------------------------------- /MethodDecorator/IPartialDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/IPartialDecorator.cs -------------------------------------------------------------------------------- /MethodDecorator/MethodDecorator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/MethodDecorator.csproj -------------------------------------------------------------------------------- /MethodDecorator/MethodDecoratorAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/MethodDecoratorAttributeBase.cs -------------------------------------------------------------------------------- /MethodDecorator/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/MethodDecorator/key.snk -------------------------------------------------------------------------------- /TestAssemblies/AnotherAssemblyAttributeContainer/AnotherAssemblyAttributeContainer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/AnotherAssemblyAttributeContainer/AnotherAssemblyAttributeContainer.csproj -------------------------------------------------------------------------------- /TestAssemblies/AnotherAssemblyAttributeContainer/ExternalInterceptionAssemblyLevelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/AnotherAssemblyAttributeContainer/ExternalInterceptionAssemblyLevelAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/AnotherAssemblyAttributeContainer/ExternalInterceptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/AnotherAssemblyAttributeContainer/ExternalInterceptorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/AspectMatchingAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/AspectMatchingAttributeBase.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: SimpleTest.PnP.InterceptorWithParams] -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptedClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptedClass.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptedMethods.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorAlterRetvalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorAlterRetvalAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorBypassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorBypassAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorBypassReturnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorBypassReturnAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorEntryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorEntryAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorExceptionAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorExit1Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorExit1Attribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorExit1ExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorExit1ExceptionAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorExitAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorExitAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorInit1Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorInit1Attribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorInit2Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorInit2Attribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorInit3Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorInit3Attribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorWithParamsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorWithParamsAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/InterceptorWithPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/InterceptorWithPriorityAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/Method.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/SimpleTest.PnP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/SimpleTest.PnP.csproj -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest.PnP/TestRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest.PnP/TestRecords.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/AsyncClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/AsyncClass.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/DerivedDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/DerivedDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/DerivedFromInterfaceDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/DerivedFromInterfaceDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/DerivedMatchingDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/DerivedMatchingDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/InterceptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/InterceptorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/InterceptorDerivedFromAbstractBaseClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/InterceptorDerivedFromAbstractBaseClassAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/IntersectMethodsMarkedByAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/IntersectMethodsMarkedByAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/MatchingDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/MatchingDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/MethodDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/MethodDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Attributes/NoInitMethodDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Attributes/NoInitMethodDecoratorAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/DerivedMatchingAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/DerivedMatchingAssembly.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/DerivedMatchingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/DerivedMatchingModule.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/DerivedMatchingModuleTypeExclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/DerivedMatchingModuleTypeExclude.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/GenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/GenericMethod.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/GenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/GenericType.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingAbstractMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingAbstractMethods.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingConstructors.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingExtensionMethods.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingMethodsWithReturnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingMethodsWithReturnValues.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingNestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingNestedTypes.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingPropertyMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingPropertyMethods.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/InterceptingVoidMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/InterceptingVoidMethods.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MarkedFromAnotherAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MarkedFromAnotherAssembly.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MarkedFromTheDerivedDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MarkedFromTheDerivedDecorator.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MarkedFromTheDerivedInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MarkedFromTheDerivedInterface.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MarkedWithInderectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MarkedWithInderectAttribute.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MarkedWithNoInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MarkedWithNoInit.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MatchingByRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MatchingByRegex.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/MatchingCommaSeparated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/MatchingCommaSeparated.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Method.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/Sample.cs -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/SimpleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/SimpleTest.csproj -------------------------------------------------------------------------------- /TestAssemblies/SimpleTest/TestRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/TestAssemblies/SimpleTest/TestRecords.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/global.json -------------------------------------------------------------------------------- /package_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/package_icon.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fody/MethodDecorator/HEAD/readme.md --------------------------------------------------------------------------------