├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Castle.Core.sln ├── Castle.Core.sln.DotSettings ├── LICENSE ├── README.md ├── appveyor.yml ├── docs ├── CONTRIBUTING.md ├── README.md ├── dictionaryadapter-customize-keys.md ├── dictionaryadapter.md ├── dynamicproxy-async-interception.md ├── dynamicproxy-by-ref-parameters.md ├── dynamicproxy-fine-grained-control.md ├── dynamicproxy-generation-hook-override-equals-gethashcode.md ├── dynamicproxy-generation-hook-pure-function.md ├── dynamicproxy-introduction.md ├── dynamicproxy-kinds-of-proxy-objects.md ├── dynamicproxy-leaking-this.md ├── dynamicproxy-optional-parameter-value-limitations.md ├── dynamicproxy-serializable-types.md ├── dynamicproxy-srp-applies-to-interceptors.md ├── dynamicproxy.md ├── images │ ├── castle-logo.png │ ├── matrix.jpg │ └── proxy-pipeline.png ├── logging.md └── markdownlint.rb ├── nuget.config ├── ref ├── Castle.Core-net462.cs ├── Castle.Core-net8.0.cs ├── Castle.Core-netstandard2.0.cs ├── Castle.Services.Logging.NLogIntegration-net462.cs ├── Castle.Services.Logging.NLogIntegration-net8.0.cs ├── Castle.Services.Logging.NLogIntegration-netstandard2.0.cs ├── Castle.Services.Logging.SerilogIntegration-net462.cs ├── Castle.Services.Logging.SerilogIntegration-net8.0.cs ├── Castle.Services.Logging.SerilogIntegration-netstandard2.0.cs ├── Castle.Services.Logging.log4netIntegration-net462.cs ├── Castle.Services.Logging.log4netIntegration-net8.0.cs └── Castle.Services.Logging.log4netIntegration-netstandard2.0.cs ├── src ├── Castle.Core.Tests.WeakNamed │ ├── App.config │ ├── Castle.Core.Tests.WeakNamed.csproj │ ├── DynamicProxy.Tests │ │ ├── BasicClassProxyTestCase.cs │ │ ├── ClassProxyWithTargetTestCase.cs │ │ └── SimpleTestCase.cs │ ├── InternalsVisibleTo.cs │ └── Program.cs ├── Castle.Core.Tests │ ├── BugAttribute.cs │ ├── Castle.Core.Tests.csproj │ ├── Components.DictionaryAdapter.Tests │ │ ├── AdaptingGenericDictionaryTestCase.cs │ │ ├── AdaptingNameValueCollectionsTestCase.cs │ │ ├── Address.cs │ │ ├── Color.cs │ │ ├── CreateHashtableDictionaryStrategy.cs │ │ ├── CustomAssert.cs │ │ ├── CustomGetter.cs │ │ ├── DictionaryAdapterFactoryTestCase.cs │ │ ├── DynamicDictionaryTests.cs │ │ ├── IAddress.cs │ │ ├── IBook.cs │ │ ├── IConversions.cs │ │ ├── IConversionsToString.cs │ │ ├── IEmptyTest.cs │ │ ├── IEnsureMetaDoesNotConflict.cs │ │ ├── IItemContainer.cs │ │ ├── IItemContainerWithComponent.cs │ │ ├── IMutableName.cs │ │ ├── IName.cs │ │ ├── IPerson.cs │ │ ├── IPersonWithDeniedInheritancePrefix.cs │ │ ├── IPersonWithMethod.cs │ │ ├── IPersonWithPrefix.cs │ │ ├── IPersonWithPrefixOverride.cs │ │ ├── IPersonWithPrefixOverrideFurtherOverride.cs │ │ ├── IPersonWithTypePrefixOverride.cs │ │ ├── IPersonWithoutPrefix.cs │ │ ├── IPhone.cs │ │ ├── IPhoneWithFetch.cs │ │ ├── IStringLists.cs │ │ ├── IUseBehaviorBuilder.cs │ │ ├── IdEqualityHashCodeStrategy.cs │ │ ├── InfrastructureStub.cs │ │ ├── KeyBehaviorBuilderAttribute.cs │ │ ├── MemberwiseEqualityHashCodeStrategyTestCase.cs │ │ ├── NameValueCollectionAdapterTests.cs │ │ ├── Phone.cs │ │ ├── PhoneConverter.cs │ │ ├── TestDictionaryValidator.cs │ │ ├── VirtualObjectTestCase.cs │ │ ├── Xml │ │ │ ├── Behaviors │ │ │ │ ├── ConflictBehaviorTestCase.cs │ │ │ │ ├── DefaultBehaviorTestCase.cs │ │ │ │ ├── ReferenceBehaviorTestCase.cs │ │ │ │ ├── XPathBehaviorTestCase.cs │ │ │ │ ├── XmlArrayBehaviorTestCase.cs │ │ │ │ ├── XmlAttributeBehaviorTestCase.cs │ │ │ │ ├── XmlElementBehaviorTestCase.cs │ │ │ │ ├── XmlIncludeBehaviorTestCase.cs │ │ │ │ ├── XmlRootBehaviorTestCase.cs │ │ │ │ └── XmlTypeBehaviorTestCase.cs │ │ │ ├── Collections │ │ │ │ ├── XmlNodeListTestCase.cs │ │ │ │ └── XmlNodeSetTestCase.cs │ │ │ ├── XmlAdapterAcceptanceTestCase.cs │ │ │ ├── XmlAdapterTestCase.cs │ │ │ ├── XmlApis │ │ │ │ ├── DummyXmlNode.cs │ │ │ │ ├── MockXPathFunction.cs │ │ │ │ ├── MockXPathVariable.cs │ │ │ │ ├── MockXmlIncludedTypeMap.cs │ │ │ │ ├── NamespaceSource.cs │ │ │ │ ├── SysXmlCursorTestCase.cs │ │ │ │ ├── SysXmlNodeTestCase.cs │ │ │ │ ├── XPathCompilerTestCase.cs │ │ │ │ ├── XPathCursorTestCase.cs │ │ │ │ ├── XPathMutableCursorTestCase.cs │ │ │ │ ├── XPathNodeTestCase.cs │ │ │ │ ├── XPathReadableCursorTestCase.cs │ │ │ │ └── XmlNodeTestCase.cs │ │ │ ├── XmlReferenceManagerTestCase.cs │ │ │ ├── XmlTypeSerializerCacheTestCase.cs │ │ │ └── XmlTypeSerializerTests.cs │ │ └── XmlStructureComparer.cs │ ├── Core.Tests │ │ ├── Configuration │ │ │ └── Xml │ │ │ │ └── XmlConfigurationDeserializerTests.cs │ │ ├── Internal │ │ │ ├── InterfaceAttributeUtilTestCase.cs │ │ │ └── WeakKeyDictionaryTestCase.cs │ │ ├── Logging │ │ │ ├── ConsoleLoggerTestCase.cs │ │ │ ├── DiagnosticsLoggerTestCase.cs │ │ │ ├── LevelFilteredLoggerTests.cs │ │ │ ├── StreamLoggerTests.cs │ │ │ └── TraceLoggerTests.cs │ │ ├── ReflectionBasedDictionaryAdapterTestCase.cs │ │ └── Resource │ │ │ ├── AssemblyResourceFactoryTestCase.cs │ │ │ ├── CustomUriTestCase.cs │ │ │ ├── FileResourceFactoryTestCase.cs │ │ │ ├── MoreRes │ │ │ ├── TestRes.Designer.cs │ │ │ ├── TestRes.resx │ │ │ └── file2.txt │ │ │ ├── UncResourceFactoryTestCase.cs │ │ │ └── file1.txt │ ├── DynamicProxy.Tests │ │ ├── AccessLevelTestCase.cs │ │ ├── AsyncInterceptorTestCase.cs │ │ ├── AttributesToAlwaysReplicateTestCase.cs │ │ ├── AttributesToAvoidReplicatingTestCase.cs │ │ ├── BasePEVerifyTestCase.cs │ │ ├── BaseTestCaseTestCase.cs │ │ ├── BasicClassProxyTestCase.cs │ │ ├── BasicInterfaceProxyTestCase.cs │ │ ├── BasicInterfaceProxyWithoutTargetTestCase.cs │ │ ├── BugsReported │ │ │ ├── Camera.cs │ │ │ ├── ConstraintViolationInDebuggerTestCase.cs │ │ │ ├── Core40.cs │ │ │ ├── DynProxy132.cs │ │ │ ├── DynProxy145_SynchronizationContext.cs │ │ │ ├── DynProxy159.cs │ │ │ ├── DynProxy46.cs │ │ │ ├── DynProxy88.cs │ │ │ └── GitHubIssue536.cs │ │ ├── BugsReportedTestCase.cs │ │ ├── CacheKeyTestCase.cs │ │ ├── CanDefineAdditionalCustomAttributes.cs │ │ ├── ChangeProxyTargetInterceptor.cs │ │ ├── ChangeProxyTargetTestCase.cs │ │ ├── ClassEmitterTestCase.cs │ │ ├── ClassProxyConstructorsTestCase.cs │ │ ├── ClassProxyWithTargetTestCase.cs │ │ ├── ClassWithAttributesTestCase.cs │ │ ├── Classes │ │ │ ├── AbstractClassWithMethod.cs │ │ │ ├── ClassCallingVirtualMethodFromCtor.cs │ │ │ ├── ClassOverridingEqualsAndGetHashCode.cs │ │ │ ├── ClassToSerialize.cs │ │ │ ├── ClassWithAsynchronousMethod.cs │ │ │ ├── ClassWithAttributesOnConstructorParameters.cs │ │ │ ├── ClassWithAttributesOnMethodParameters.cs │ │ │ ├── ClassWithCharRetType.cs │ │ │ ├── ClassWithConstructors.cs │ │ │ ├── ClassWithDefaultConstructor.cs │ │ │ ├── ClassWithExplicitInterface.cs │ │ │ ├── ClassWithIndexer.cs │ │ │ ├── ClassWithInterface.cs │ │ │ ├── ClassWithInternalDefaultConstructor.cs │ │ │ ├── ClassWithMethodsWithAllKindsOfOptionalParameters.cs │ │ │ ├── ClassWithPrivateProtectedConstructor.cs │ │ │ ├── ClassWithProtectedDefaultConstructor.cs │ │ │ ├── ClassWithProtectedGenericMethod.cs │ │ │ ├── ClassWithProtectedMethod.cs │ │ │ ├── ClassWithVariousConstructors.cs │ │ │ ├── ClassWithVirtualInterface.cs │ │ │ ├── ClassWith_Smart_Attribute.cs │ │ │ ├── Component2.cs │ │ │ ├── DiffAccessLevelOnProperties.cs │ │ │ ├── EmptyClass.cs │ │ │ ├── HasCtorWithIntAndParamsArgument.cs │ │ │ ├── HasCtorWithParamsArgument.cs │ │ │ ├── HasCtorWithParamsStrings.cs │ │ │ ├── HasFinalizeMethod.cs │ │ │ ├── HasFinalizer.cs │ │ │ ├── HasNestedNonInheritableAttribute.cs │ │ │ ├── HasNonInheritableAttribute.cs │ │ │ ├── HasTwoProtectedMethods.cs │ │ │ ├── HasVirtualStringAutoProperty.cs │ │ │ ├── IHasNonInheritableAttributeWithArray.cs │ │ │ ├── IHasNonInheritableAttributeWithArray2.cs │ │ │ ├── InheritableAttribute.cs │ │ │ ├── InheritsAbstractClassWithMethod.cs │ │ │ ├── MySerializableClass.cs │ │ │ ├── NestedNonInheritableAttribute.cs │ │ │ ├── NonInheritableAttribute.cs │ │ │ ├── NonInheritableAttributeWithPositionalArrayParameterAttribute.cs │ │ │ ├── NonInheritableWithArray2Attribute.cs │ │ │ ├── NonInheritableWithArrayAttribute.cs │ │ │ ├── NonPublicConstructorClass.cs │ │ │ ├── NonPublicMethodsClass.cs │ │ │ ├── ProtectedInternalConstructorClass.cs │ │ │ ├── RequiredAttribute.cs │ │ │ ├── ServiceClass.cs │ │ │ ├── SimpleClass.cs │ │ │ ├── VirtualClassWithAutoProperty.cs │ │ │ ├── VirtualClassWithMethod.cs │ │ │ ├── VirtualClassWithNoDefaultCtor.cs │ │ │ ├── VirtualClassWithProtectedGenericMethod.cs │ │ │ ├── VirtualClassWithProtectedMethod.cs │ │ │ ├── VirtualClassWithPublicField.cs │ │ │ ├── VirtuallyImplementsInterfaceWithEvent.cs │ │ │ └── VirtuallyImplementsInterfaceWithProperty.cs │ │ ├── ComInterfacesTests.cs │ │ ├── ComInteropTypes │ │ │ └── ADODB │ │ │ │ ├── Command.cs │ │ │ │ ├── Connection.cs │ │ │ │ ├── Enums.cs │ │ │ │ ├── Fields.cs │ │ │ │ ├── Parameter.cs │ │ │ │ ├── Parameters.cs │ │ │ │ ├── Properties.cs │ │ │ │ ├── README.md │ │ │ │ └── Recordset.cs │ │ ├── ConstructorWithAttributesOnParametersTestCase.cs │ │ ├── CovariantReturnsTestCase.cs │ │ ├── CrossAppDomainCaller.cs │ │ ├── CustomAttributeInfoTestCase.cs │ │ ├── CustomAttributesTestCase.cs │ │ ├── CustomModifiersTestCase.cs │ │ ├── DefaultInterfaceMembersTestCase.cs │ │ ├── DelegateMixinTestCase.cs │ │ ├── DelegateProxyTestCase.cs │ │ ├── DictionarySerializationTestCase.cs │ │ ├── Explicit │ │ │ ├── GenInterfaceExplicit.cs │ │ │ ├── GenericMethodExplicit.cs │ │ │ ├── SimpleInterfaceExplicit.cs │ │ │ ├── TwoInterfacesExplicit.cs │ │ │ └── WithRefOutExplicit.cs │ │ ├── ExplicitInterfaceTestCase.cs │ │ ├── ExplicitlyImplementedEventTestCase.cs │ │ ├── ExplicitlyImplementedMethodNamesTestCase.cs │ │ ├── ExplicitlyImplementedPropertyTestCase.cs │ │ ├── GenClasses │ │ │ ├── ClassWithGenArgs.cs │ │ │ ├── ClassWithIndexer.cs │ │ │ ├── ClassWithMethodWithArrayOfListOfT.cs │ │ │ ├── ClassWithMethodWithGenericOfGenericOfT.cs │ │ │ ├── ClassWithMethodWithReturnArrayOfListOfT.cs │ │ │ ├── GenClassNameClash.cs │ │ │ ├── GenClassWithConstraints.cs │ │ │ ├── GenClassWithExplicitImpl.cs │ │ │ ├── GenClassWithGenMethods.cs │ │ │ ├── GenClassWithGenMethodsConstrained.cs │ │ │ ├── GenClassWithGenReturn.cs │ │ │ ├── MethodWithArgumentBeingArrayOfGenericTypeOfT.cs │ │ │ └── OnlyGenMethodsClass.cs │ │ ├── GenInterfaces │ │ │ ├── GenExplicitImplementation.cs │ │ │ ├── GenInterface.cs │ │ │ ├── GenInterfaceHierarchy.cs │ │ │ ├── GenInterfaceWithGenArray.cs │ │ │ ├── GenInterfaceWithGenMethods.cs │ │ │ ├── GenInterfaceWithGenMethodsAndGenReturn.cs │ │ │ ├── GenInterfaceWithGenericTypes.cs │ │ │ ├── GenInterfaceWithMethodWithNestedGenericParameter.cs │ │ │ ├── GenInterfaceWithMethodWithNestedGenericParameterByRef.cs │ │ │ ├── GenInterfaceWithMethodWithNestedGenericReturn.cs │ │ │ ├── GenericMethodWhereOneGenParamInheritsTheOther.cs │ │ │ ├── IConstraint_Method1IsTypeStructAndMethod2.cs │ │ │ ├── IHaveGenericMethodWithEnumConstraint.cs │ │ │ ├── IHaveGenericMethodWithNewClassStructConstraints.cs │ │ │ └── OnlyGenMethodsInterface.cs │ │ ├── GenerationHookTestCase.cs │ │ ├── GenericClassProxyTestCase.cs │ │ ├── GenericConstraintsTestCase.cs │ │ ├── GenericInterfaceProxyTestCase.cs │ │ ├── GenericInterfaceWithGenericMethod.cs │ │ ├── GenericMethodsProxyTestCase.cs │ │ ├── GenericTestUtility.cs │ │ ├── InParamsTestCase.cs │ │ ├── InheritedInterfacesTestCase.cs │ │ ├── InterClasses │ │ │ ├── AlwaysThrowsServiceImpl.cs │ │ │ ├── ClassWithIndexer.cs │ │ │ ├── ClassWithMarkerInterface.cs │ │ │ ├── ClassWithMultiDimentionalArray.cs │ │ │ ├── IClassWithMultiDimentionalArray.cs │ │ │ ├── IExtendedService.cs │ │ │ ├── IInterfaceWithGenericMethodWithDependentConstraint.cs │ │ │ ├── IMyInterface2.cs │ │ │ ├── IService.cs │ │ │ ├── IService2.cs │ │ │ ├── InterfaceWithIndexer.cs │ │ │ ├── One.cs │ │ │ ├── OneAndEmpty.cs │ │ │ ├── OneTwo.cs │ │ │ ├── ServiceImpl.cs │ │ │ ├── Two.cs │ │ │ ├── WithCallbackSimple.cs │ │ │ ├── WithRefOut.cs │ │ │ └── WithRefOutEmpty.cs │ │ ├── InterceptionRetryTestCase.cs │ │ ├── InterceptorSelectorTargetTypeTestCase.cs │ │ ├── InterceptorSelectorTestCase.cs │ │ ├── Interceptors │ │ │ ├── AddTwoInterceptor.cs │ │ │ ├── AssertCanChangeTargetInterceptor.cs │ │ │ ├── AssertCannotChangeTargetInterceptor.cs │ │ │ ├── CallCountingInterceptor.cs │ │ │ ├── ChangeTargetInterceptor.cs │ │ │ ├── DoNothingInterceptor.cs │ │ │ ├── KeepDataInterceptor.cs │ │ │ ├── LogInvocationInterceptor.cs │ │ │ ├── ProceedNTimesInterceptor.cs │ │ │ ├── ProceedOnTypeInterceptor.cs │ │ │ ├── RequiredParamInterceptor.cs │ │ │ ├── SetArgumentValueInterceptor.cs │ │ │ ├── SetReturnValueInterceptor.cs │ │ │ ├── ThrowingInterceptor.cs │ │ │ ├── ThrowingInterceptorException.cs │ │ │ └── WithCallbackInterceptor.cs │ │ ├── InterceptorsMustReturnNonNullValueTypesTestCase.cs │ │ ├── InterfaceProxyBaseTypeTestCase.cs │ │ ├── InterfaceProxyWithTargetInterfaceAdditionalInterfacesTestCase.cs │ │ ├── InterfaceProxyWithTargetInterfaceTestCase.cs │ │ ├── Interfaces │ │ │ ├── IBase.cs │ │ │ ├── IDecimalOutParam.cs │ │ │ ├── IEmpty.cs │ │ │ ├── IFooWithIntPtr.cs │ │ │ ├── IFooWithOutIntPtr.cs │ │ │ ├── IFooWithOutUIntPtr.cs │ │ │ ├── IFooWithUIntPtr.cs │ │ │ ├── IGenericInterfaceWithGenericMethodWithCascadingConstraintOnAnyReferenceType.cs │ │ │ ├── IGenericInterfaceWithGenericMethodWithCascadingConstraintOnAnyTypeWithDefaultConstructor.cs │ │ │ ├── IGenericInterfaceWithGenericMethodWithCascadingConstraintOnClass.cs │ │ │ ├── IGenericInterfaceWithGenericMethodWithCascadingConstraintOnInterface.cs │ │ │ ├── IGenericWithEvent.cs │ │ │ ├── IGenericWithNonGenericMethod.cs │ │ │ ├── IGenericWithProperty.cs │ │ │ ├── IGenericWithRefOut.cs │ │ │ ├── IHaveIndexers.cs │ │ │ ├── IInterfaceWithAsynchronousMethod.cs │ │ │ ├── INullable.cs │ │ │ ├── IOne.cs │ │ │ ├── ISharedName.cs │ │ │ ├── ISimple.cs │ │ │ ├── ISub1.cs │ │ │ ├── ISub2.cs │ │ │ ├── ITwo.cs │ │ │ ├── IWithRefOut.cs │ │ │ ├── IdenticalInterfaces.cs │ │ │ └── InterfaceWithMethodsWithAllKindsOfOptionalParameters.cs │ │ ├── InvocationMethodInvocationTargetTestCase.cs │ │ ├── InvocationProceedTestCase.cs │ │ ├── InvocationTestCase.cs │ │ ├── InvocationTypeReuseTestCase.cs │ │ ├── InvocationTypesCachingTestCase.cs │ │ ├── LoggingTestCase.cs │ │ ├── MethodComparerTestCase.cs │ │ ├── MethodEquivalenceTestCase.cs │ │ ├── MethodsWithAttributesOnParametersTestCase.cs │ │ ├── MixinDataTestCase.cs │ │ ├── MixinTestCase.cs │ │ ├── Mixins │ │ │ ├── ClassImplementingIDerivedSImpleMixin.cs │ │ │ ├── ClassImplementingISimpleMixin.cs │ │ │ ├── ComplexMixin.cs │ │ │ ├── ConstructorArgumentsOrderWithMixinsTestCase.cs │ │ │ ├── IDerivedSimpleMixin.cs │ │ │ ├── OtherMixin.cs │ │ │ ├── OtherMixinImplementingISimpleMixin.cs │ │ │ ├── SimpleMixin.cs │ │ │ └── SortingIssueOnMixin.cs │ │ ├── ModuleScopeTestCase.cs │ │ ├── MultipleSavedAssembliesTestCase.cs │ │ ├── NonProxiedMethodsNoTargetTestCase.cs │ │ ├── NonProxiedMixinMethodsTestCase.cs │ │ ├── NonProxiedTargetMethodsTestCase.cs │ │ ├── OrderOfInterfacePrecedenceTestCase.cs │ │ ├── OutRefParamsTestCase.cs │ │ ├── ParameterDefaultValuesTestCase.cs │ │ ├── PersistentProxyBuilderTestCase.cs │ │ ├── ProxyGenerationOptionsTestCase.cs │ │ ├── ProxyKind.cs │ │ ├── ProxyNothingHook.cs │ │ ├── ProxySomeMethodsHook.cs │ │ ├── ProxyTargetAccessorHandlingTestCase.cs │ │ ├── ProxyTypeCachingTestCase.cs │ │ ├── ProxyTypeCachingWithDifferentHooksTestCase.cs │ │ ├── ProxyUtilTestCase.cs │ │ ├── Records │ │ │ ├── DerivedFromEmptyGenericRecord.cs │ │ │ ├── DerivedFromEmptyRecord.cs │ │ │ ├── EmptyGenericRecord.cs │ │ │ └── EmptyRecord.cs │ │ ├── RecordsTestCase.cs │ │ ├── RhinoMocksTestCase.cs │ │ ├── SerializableClassTestCase.cs │ │ ├── Serialization │ │ │ ├── BadSerializable.cs │ │ │ ├── C.cs │ │ │ ├── ClassWithDirectAndIndirectSelfReference.cs │ │ │ ├── ClassWithIndirectSelfReference.cs │ │ │ ├── ComplexHolder.cs │ │ │ ├── DelegateHolder.cs │ │ │ ├── EventHandlerClass.cs │ │ │ ├── IMixedInterface.cs │ │ │ ├── IndirectDelegateHolder.cs │ │ │ ├── MethodFilterHook.cs │ │ │ ├── SerializableExplicitImpl.cs │ │ │ ├── SerializableInterceptorSelector.cs │ │ │ └── SerializableMixin.cs │ │ ├── TypeUtilTestCase.cs │ │ ├── ValueTypeReferenceSemanticsTestCase.cs │ │ ├── WinFormsTestCase.cs │ │ └── XmlSerializationTestCase.cs │ ├── InternalsVisibleTo.cs │ ├── Program.cs │ ├── PublicApiTestCase.cs │ ├── Services.Logging.Tests │ │ ├── NLogIntegration │ │ │ └── NLogTests.cs │ │ ├── SerilogIntegration │ │ │ └── SerilogTests.cs │ │ └── log4netIntegration │ │ │ ├── Log4netFactoryTestCase.cs │ │ │ └── log4net.xml │ └── config │ │ ├── netcoreapp │ │ └── App.config │ │ └── netfx │ │ └── App.config ├── Castle.Core │ ├── Castle.Core.csproj │ ├── Compatibility │ │ └── NullStateStaticAnalysisAttributes.cs │ ├── Components.DictionaryAdapter │ │ ├── AbstractDictionaryAdapter.cs │ │ ├── AbstractDictionaryAdapterVisitor.cs │ │ ├── Attributes │ │ │ ├── ComponentAttribute.cs │ │ │ ├── DictionaryAdapterAttribute.cs │ │ │ ├── DictionaryBehaviorAttribute.cs │ │ │ ├── FetchAttribute.cs │ │ │ ├── GroupAttribute.cs │ │ │ ├── IfExistsAttribute.cs │ │ │ ├── KeyAttribute.cs │ │ │ ├── KeyPrefixAttribute.cs │ │ │ ├── KeySubstitutionAttribute.cs │ │ │ ├── MultiLevelEditAttribute.cs │ │ │ ├── NewGuidAttribute.cs │ │ │ ├── OnDemandAttribute.cs │ │ │ ├── ReferenceAttribute.cs │ │ │ ├── RemoveIfAttribute.cs │ │ │ ├── RemoveIfEmptyAttribute.cs │ │ │ ├── StringFormatAttribute.cs │ │ │ ├── StringListAttribute.cs │ │ │ ├── StringStorageAttribute.cs │ │ │ ├── StringValuesAttribute.cs │ │ │ ├── SuppressNotificationsAttribute.cs │ │ │ ├── TypeKeyPrefixAttribute.cs │ │ │ ├── VolatileAttribute.cs │ │ │ ├── XPathAttribute.cs │ │ │ ├── XPathFunctionAttribute.cs │ │ │ ├── XPathVariableAttribute.cs │ │ │ ├── XmlDefaultsAttribute.cs │ │ │ └── XmlNamespaceAttribute.cs │ │ ├── CascadingDictionaryAdapter.cs │ │ ├── DefaultPropertyGetter.cs │ │ ├── DictionaryAdapterBase.Coerce.cs │ │ ├── DictionaryAdapterBase.Copy.cs │ │ ├── DictionaryAdapterBase.Create.cs │ │ ├── DictionaryAdapterBase.Edit.cs │ │ ├── DictionaryAdapterBase.Notify.cs │ │ ├── DictionaryAdapterBase.Validate.cs │ │ ├── DictionaryAdapterBase.cs │ │ ├── DictionaryAdapterExtensions.cs │ │ ├── DictionaryAdapterFactory.cs │ │ ├── DictionaryAdapterInstance.cs │ │ ├── DictionaryAdapterMeta.cs │ │ ├── DictionaryValidateGroup.cs │ │ ├── DynamicDictionary.cs │ │ ├── GenericDictionaryAdapter.cs │ │ ├── IDictionaryAdapter.cs │ │ ├── IDictionaryAdapterFactory.cs │ │ ├── IDictionaryAdapterVisitor.cs │ │ ├── IDictionaryBehavior.cs │ │ ├── IDictionaryBehaviorBuilder.cs │ │ ├── IDictionaryCoerceStrategy.cs │ │ ├── IDictionaryCopyStrategy.cs │ │ ├── IDictionaryCreate.cs │ │ ├── IDictionaryCreateStrategy.cs │ │ ├── IDictionaryEdit.cs │ │ ├── IDictionaryEqualityHashCodeStrategy.cs │ │ ├── IDictionaryInitializer.cs │ │ ├── IDictionaryKeyBuilder.cs │ │ ├── IDictionaryMetaInitializer.cs │ │ ├── IDictionaryNotify.cs │ │ ├── IDictionaryPropertyGetter.cs │ │ ├── IDictionaryPropertySetter.cs │ │ ├── IDictionaryReferenceManager.cs │ │ ├── IDictionaryValidate.cs │ │ ├── IDictionaryValidator.cs │ │ ├── IPropertyDescriptorInitializer.cs │ │ ├── MemberwiseEqualityHashCodeStrategy.cs │ │ ├── NameValueCollectionAdapter.cs │ │ ├── PropertyChangedEventArgsEx.cs │ │ ├── PropertyChangingEventArgsEx.cs │ │ ├── PropertyDescriptor.cs │ │ ├── Util │ │ │ ├── BindingList.cs │ │ │ ├── BindingListInitializer.cs │ │ │ ├── DynamicValue.cs │ │ │ ├── DynamicValueDelegate.cs │ │ │ ├── EditableBindingList.cs │ │ │ ├── EditableList.cs │ │ │ ├── IBindingList.cs │ │ │ ├── IBindingListSource.cs │ │ │ ├── ICollectionAdapter.cs │ │ │ ├── ICollectionAdapterObserver.cs │ │ │ ├── ICollectionProjection.cs │ │ │ ├── ICondition.cs │ │ │ ├── IDynamicValue.cs │ │ │ ├── IValueInitializer.cs │ │ │ ├── IVirtual.cs │ │ │ ├── IVirtualSite.cs │ │ │ ├── IVirtualTarget.cs │ │ │ ├── ListProjection.cs │ │ │ ├── ListProjectionDebugView.cs │ │ │ ├── SetProjection.cs │ │ │ ├── VirtualObject.cs │ │ │ └── VirtualSite.cs │ │ └── Xml │ │ │ ├── Core │ │ │ ├── DefaultXmlReferenceFormat.cs │ │ │ ├── IXmlReferenceFormat.cs │ │ │ ├── XmlAdapter.cs │ │ │ ├── XmlMetadata.cs │ │ │ ├── XmlMetadataBehavior.cs │ │ │ └── XmlReferenceManager.cs │ │ │ └── Internal │ │ │ ├── Accessors │ │ │ ├── IXmlAccessor.cs │ │ │ ├── IXmlBehaviorSemantics.cs │ │ │ ├── IXmlCollectionAccessor.cs │ │ │ ├── IXmlPropertyAccessor.cs │ │ │ ├── XPathBehaviorAccessor.cs │ │ │ ├── XmlAccessor.cs │ │ │ ├── XmlAccessorFactory.cs │ │ │ ├── XmlArrayBehaviorAccessor.cs │ │ │ ├── XmlAttributeBehaviorAccessor.cs │ │ │ ├── XmlDefaultBehaviorAccessor.cs │ │ │ ├── XmlElementBehaviorAccessor.cs │ │ │ ├── XmlIgnoreBehaviorAccessor.cs │ │ │ ├── XmlNodeAccessor.cs │ │ │ └── XmlSelfAccessor.cs │ │ │ ├── Collections │ │ │ ├── XmlCollectionAdapter.cs │ │ │ ├── XmlCollectionItem.cs │ │ │ ├── XmlNodeList.cs │ │ │ └── XmlNodeSet.cs │ │ │ ├── Cursors │ │ │ ├── Base │ │ │ │ ├── CursorFlags.cs │ │ │ │ ├── IXmlContext.cs │ │ │ │ ├── IXmlCursor.cs │ │ │ │ ├── IXmlIterator.cs │ │ │ │ ├── IXmlNamespaceSource.cs │ │ │ │ ├── IXmlNode.cs │ │ │ │ ├── IXmlNodeSource.cs │ │ │ │ ├── XmlContext.cs │ │ │ │ ├── XmlContextBase.cs │ │ │ │ ├── XmlExtensions.cs │ │ │ │ ├── XmlName.cs │ │ │ │ ├── XmlNameComparer.cs │ │ │ │ ├── XmlNodeBase.cs │ │ │ │ ├── XmlPositionComparer.cs │ │ │ │ └── XmlSelfCursor.cs │ │ │ ├── SystemXml │ │ │ │ ├── SysXmlCursor.cs │ │ │ │ ├── SysXmlExtensions.cs │ │ │ │ ├── SysXmlNode.cs │ │ │ │ └── SysXmlSubtreeIterator.cs │ │ │ └── XPath │ │ │ │ ├── CompiledXPath.cs │ │ │ │ ├── CompiledXPathNode.cs │ │ │ │ ├── CompiledXPathStep.cs │ │ │ │ ├── XPathBufferedNodeIterator.cs │ │ │ │ ├── XPathCompiler.cs │ │ │ │ ├── XPathContext.cs │ │ │ │ ├── XPathExtensions.cs │ │ │ │ ├── XPathMutableCursor.cs │ │ │ │ ├── XPathNode.cs │ │ │ │ └── XPathReadOnlyCursor.cs │ │ │ ├── Namespaces │ │ │ ├── Wsdl.cs │ │ │ ├── XRef.cs │ │ │ ├── Xmlns.cs │ │ │ ├── Xsd.cs │ │ │ └── Xsi.cs │ │ │ ├── Serializers │ │ │ ├── XmlArraySerializer.cs │ │ │ ├── XmlCollectionSerializer.cs │ │ │ ├── XmlComponentSerializer.cs │ │ │ ├── XmlCustomSerializer.cs │ │ │ ├── XmlDefaultSerializer.cs │ │ │ ├── XmlDynamicSerializer.cs │ │ │ ├── XmlEnumerationSerializer.cs │ │ │ ├── XmlListSerializer.cs │ │ │ ├── XmlSetSerializer.cs │ │ │ ├── XmlSimpleSerializer.cs │ │ │ ├── XmlStringSerializer.cs │ │ │ ├── XmlTypeKind.cs │ │ │ ├── XmlTypeSerializer.cs │ │ │ ├── XmlTypeSerializerCache.cs │ │ │ └── XmlXmlNodeSerializer.cs │ │ │ ├── Types │ │ │ ├── IXmlIdentity.cs │ │ │ ├── IXmlIncludedType.cs │ │ │ ├── IXmlIncludedTypeMap.cs │ │ │ ├── IXmlKnownType.cs │ │ │ ├── IXmlKnownTypeMap.cs │ │ │ ├── XmlIncludedType.cs │ │ │ ├── XmlIncludedTypeSet.cs │ │ │ ├── XmlKnownType.cs │ │ │ └── XmlKnownTypeSet.cs │ │ │ └── Utilities │ │ │ ├── DictionaryAdapterExtensions.cs │ │ │ ├── Error.cs │ │ │ ├── IConfigurable.cs │ │ │ ├── IRealizable.cs │ │ │ ├── SingletonDispenser.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── Try.cs │ │ │ ├── TypeExtensions.cs │ │ │ ├── XmlSubtreeReader.cs │ │ │ └── XmlSubtreeWriter.cs │ ├── Core │ │ ├── Configuration │ │ │ ├── AbstractConfiguration.cs │ │ │ ├── ConfigurationAttributeCollection.cs │ │ │ ├── ConfigurationCollection.cs │ │ │ ├── IConfiguration.cs │ │ │ ├── MutableConfiguration.cs │ │ │ └── Xml │ │ │ │ └── XmlConfigurationDeserializer.cs │ │ ├── IServiceEnabledComponent.cs │ │ ├── IServiceProviderEx.cs │ │ ├── IServiceProviderExAccessor.cs │ │ ├── Internal │ │ │ ├── AttributesUtil.cs │ │ │ ├── InterfaceAttributeUtil.cs │ │ │ ├── InternalsVisible.cs │ │ │ ├── SynchronizedDictionary.cs │ │ │ ├── TypeExtensions.cs │ │ │ ├── WeakKey.cs │ │ │ ├── WeakKeyComparer.cs │ │ │ └── WeakKeyDictionary.cs │ │ ├── Logging │ │ │ ├── AbstractExtendedLoggerFactory.cs │ │ │ ├── AbstractLoggerFactory.cs │ │ │ ├── ConsoleFactory.cs │ │ │ ├── ConsoleLogger.cs │ │ │ ├── DiagnosticsLogger.cs │ │ │ ├── DiagnosticsLoggerFactory.cs │ │ │ ├── IContextProperties.cs │ │ │ ├── IContextStack.cs │ │ │ ├── IContextStacks.cs │ │ │ ├── IExtendedLogger.cs │ │ │ ├── IExtendedLoggerFactory.cs │ │ │ ├── ILogger.cs │ │ │ ├── ILoggerFactory.cs │ │ │ ├── LevelFilteredLogger.cs │ │ │ ├── LoggerException.cs │ │ │ ├── LoggerLevel.cs │ │ │ ├── NullLogFactory.cs │ │ │ ├── NullLogger.cs │ │ │ ├── StreamLogger.cs │ │ │ ├── StreamLoggerFactory.cs │ │ │ ├── TraceLogger.cs │ │ │ └── TraceLoggerFactory.cs │ │ ├── ProxyServices.cs │ │ ├── ReferenceEqualityComparer.cs │ │ ├── ReflectionBasedDictionaryAdapter.cs │ │ ├── Resource │ │ │ ├── AbstractResource.cs │ │ │ ├── AbstractStreamResource.cs │ │ │ ├── AssemblyBundleResource.cs │ │ │ ├── AssemblyResource.cs │ │ │ ├── AssemblyResourceFactory.cs │ │ │ ├── ConfigResource.cs │ │ │ ├── ConfigResourceFactory.cs │ │ │ ├── CustomUri.cs │ │ │ ├── FileResource.cs │ │ │ ├── FileResourceFactory.cs │ │ │ ├── IResource.cs │ │ │ ├── IResourceFactory.cs │ │ │ ├── ResourceException.cs │ │ │ ├── StaticContentResource.cs │ │ │ ├── UncResource.cs │ │ │ └── UncResourceFactory.cs │ │ ├── Smtp │ │ │ ├── DefaultSmtpSender.cs │ │ │ └── IEmailSender.cs │ │ └── StringObjectDictionaryAdapter.cs │ ├── DynamicProxy │ │ ├── AbstractInvocation.cs │ │ ├── AllMethodsHook.cs │ │ ├── Contributors │ │ │ ├── ClassMembersCollector.cs │ │ │ ├── ClassProxySerializableContributor.cs │ │ │ ├── ClassProxyTargetContributor.cs │ │ │ ├── ClassProxyWithTargetTargetContributor.cs │ │ │ ├── CompositeTypeContributor.cs │ │ │ ├── DelegateTypeMembersCollector.cs │ │ │ ├── Delegates.cs │ │ │ ├── FieldReferenceComparer.cs │ │ │ ├── IInvocationCreationContributor.cs │ │ │ ├── IMembersCollectorSink.cs │ │ │ ├── ITypeContributor.cs │ │ │ ├── InterfaceMembersCollector.cs │ │ │ ├── InterfaceMembersOnClassCollector.cs │ │ │ ├── InterfaceMembersWithDefaultImplementationCollector.cs │ │ │ ├── InterfaceProxySerializableContributor.cs │ │ │ ├── InterfaceProxyTargetContributor.cs │ │ │ ├── InterfaceProxyWithOptionalTargetContributor.cs │ │ │ ├── InterfaceProxyWithTargetInterfaceTargetContributor.cs │ │ │ ├── InterfaceProxyWithoutTargetContributor.cs │ │ │ ├── InvocationWithDelegateContributor.cs │ │ │ ├── InvocationWithGenericDelegateContributor.cs │ │ │ ├── MembersCollector.cs │ │ │ ├── MixinContributor.cs │ │ │ ├── NonInheritableAttributesContributor.cs │ │ │ ├── ProxyTargetAccessorContributor.cs │ │ │ ├── SerializableContributor.cs │ │ │ └── WrappedClassMembersCollector.cs │ │ ├── CustomAttributeInfo.cs │ │ ├── DefaultProxyBuilder.cs │ │ ├── DynProxy.snk │ │ ├── DynamicProxyException.cs │ │ ├── ExceptionMessageBuilder.cs │ │ ├── Generators │ │ │ ├── AttributesToAlwaysReplicate.cs │ │ │ ├── AttributesToAvoidReplicating.cs │ │ │ ├── BaseClassProxyGenerator.cs │ │ │ ├── BaseInterfaceProxyGenerator.cs │ │ │ ├── BaseProxyGenerator.cs │ │ │ ├── CacheKey.cs │ │ │ ├── ClassProxyGenerator.cs │ │ │ ├── ClassProxyWithTargetGenerator.cs │ │ │ ├── CompositionInvocationTypeGenerator.cs │ │ │ ├── DelegateTypeGenerator.cs │ │ │ ├── Emitters │ │ │ │ ├── AbstractTypeEmitter.cs │ │ │ │ ├── ArgumentsUtil.cs │ │ │ │ ├── ClassEmitter.cs │ │ │ │ ├── CodeBuilder.cs │ │ │ │ ├── ConstructorEmitter.cs │ │ │ │ ├── EventEmitter.cs │ │ │ │ ├── GenericUtil.cs │ │ │ │ ├── IMemberEmitter.cs │ │ │ │ ├── LdcOpCodesDictionary.cs │ │ │ │ ├── LdindOpCodesDictionary.cs │ │ │ │ ├── MethodEmitter.cs │ │ │ │ ├── NestedClassEmitter.cs │ │ │ │ ├── OpCodeUtil.cs │ │ │ │ ├── PropertyEmitter.cs │ │ │ │ ├── SimpleAST │ │ │ │ │ ├── ArgumentReference.cs │ │ │ │ │ ├── AsTypeReference.cs │ │ │ │ │ ├── AssignArgumentStatement.cs │ │ │ │ │ ├── AssignArrayStatement.cs │ │ │ │ │ ├── AssignStatement.cs │ │ │ │ │ ├── BlockStatement.cs │ │ │ │ │ ├── ByRefReference.cs │ │ │ │ │ ├── ConstructorInvocationStatement.cs │ │ │ │ │ ├── ConvertExpression.cs │ │ │ │ │ ├── DefaultValueExpression.cs │ │ │ │ │ ├── EndExceptionBlockStatement.cs │ │ │ │ │ ├── FieldReference.cs │ │ │ │ │ ├── FinallyStatement.cs │ │ │ │ │ ├── IExpression.cs │ │ │ │ │ ├── IExpressionOrStatement.cs │ │ │ │ │ ├── IStatement.cs │ │ │ │ │ ├── IfNullExpression.cs │ │ │ │ │ ├── IndirectReference.cs │ │ │ │ │ ├── LiteralBoolExpression.cs │ │ │ │ │ ├── LiteralIntExpression.cs │ │ │ │ │ ├── LiteralStringExpression.cs │ │ │ │ │ ├── LoadRefArrayElementExpression.cs │ │ │ │ │ ├── LocalReference.cs │ │ │ │ │ ├── MethodInvocationExpression.cs │ │ │ │ │ ├── MethodTokenExpression.cs │ │ │ │ │ ├── NewArrayExpression.cs │ │ │ │ │ ├── NewInstanceExpression.cs │ │ │ │ │ ├── NullCoalescingOperatorExpression.cs │ │ │ │ │ ├── NullExpression.cs │ │ │ │ │ ├── Reference.cs │ │ │ │ │ ├── ReferencesToObjectArrayExpression.cs │ │ │ │ │ ├── ReturnStatement.cs │ │ │ │ │ ├── SelfReference.cs │ │ │ │ │ ├── ThrowStatement.cs │ │ │ │ │ ├── TryStatement.cs │ │ │ │ │ ├── TypeReference.cs │ │ │ │ │ └── TypeTokenExpression.cs │ │ │ │ ├── StindOpCodesDictionary.cs │ │ │ │ ├── StrongNameUtil.cs │ │ │ │ └── TypeConstructorEmitter.cs │ │ │ ├── ForwardingMethodGenerator.cs │ │ │ ├── GeneratorUtil.cs │ │ │ ├── IGenerator.cs │ │ │ ├── INamingScope.cs │ │ │ ├── InheritanceInvocationTypeGenerator.cs │ │ │ ├── InterfaceProxyWithTargetGenerator.cs │ │ │ ├── InterfaceProxyWithTargetInterfaceGenerator.cs │ │ │ ├── InterfaceProxyWithoutTargetGenerator.cs │ │ │ ├── InvocationTypeGenerator.cs │ │ │ ├── MetaEvent.cs │ │ │ ├── MetaMethod.cs │ │ │ ├── MetaProperty.cs │ │ │ ├── MetaType.cs │ │ │ ├── MetaTypeElement.cs │ │ │ ├── MetaTypeElementCollection.cs │ │ │ ├── MethodGenerator.cs │ │ │ ├── MethodSignatureComparer.cs │ │ │ ├── MethodWithInvocationGenerator.cs │ │ │ ├── MinimalisticMethodGenerator.cs │ │ │ ├── NamingScope.cs │ │ │ └── OptionallyForwardingMethodGenerator.cs │ │ ├── IChangeProxyTarget.cs │ │ ├── IInterceptor.cs │ │ ├── IInterceptorSelector.cs │ │ ├── IInvocation.cs │ │ ├── IInvocationProceedInfo.cs │ │ ├── IProxyBuilder.cs │ │ ├── IProxyGenerationHook.cs │ │ ├── IProxyGenerator.cs │ │ ├── IProxyTargetAccessor.cs │ │ ├── Internal │ │ │ ├── AttributeUtil.cs │ │ │ ├── CompositionInvocation.cs │ │ │ ├── InheritanceInvocation.cs │ │ │ ├── InheritanceInvocationWithoutTarget.cs │ │ │ ├── InterfaceMethodWithoutTargetInvocation.cs │ │ │ ├── InvocationHelper.cs │ │ │ └── TypeUtil.cs │ │ ├── MixinData.cs │ │ ├── ModuleScope.cs │ │ ├── PersistentProxyBuilder.cs │ │ ├── ProxyGenerationOptions.cs │ │ ├── ProxyGenerator.cs │ │ ├── ProxyUtil.cs │ │ ├── Serialization │ │ │ ├── CacheMappingsAttribute.cs │ │ │ ├── ProxyObjectReference.cs │ │ │ └── ProxyTypeConstants.cs │ │ ├── StandardInterceptor.cs │ │ └── Tokens │ │ │ ├── DelegateMethods.cs │ │ │ ├── FormatterServicesMethods.cs │ │ │ ├── InterceptorSelectorMethods.cs │ │ │ ├── InvocationMethods.cs │ │ │ ├── MethodBaseMethods.cs │ │ │ ├── SerializationInfoMethods.cs │ │ │ ├── TypeMethods.cs │ │ │ └── TypeUtilMethods.cs │ └── Properties │ │ └── InternalsVisibleToTests.cs ├── Castle.Services.Logging.NLogIntegration │ ├── Castle.Services.Logging.NLogIntegration.csproj │ ├── ExtendedNLogFactory.cs │ ├── ExtendedNLogLogger.cs │ ├── GlobalContextProperties.cs │ ├── NLogFactory.cs │ ├── NLogLogger.cs │ ├── ThreadContextProperties.cs │ ├── ThreadContextStack.cs │ └── ThreadContextStacks.cs ├── Castle.Services.Logging.SerilogIntegration │ ├── Castle.Services.Logging.SerilogIntegration.csproj │ ├── SerilogFactory.cs │ └── SerilogLogger.cs └── Castle.Services.Logging.log4netIntegration │ ├── Castle.Services.Logging.log4netIntegration.csproj │ ├── ExtendedLog4netFactory.cs │ ├── ExtendedLog4netLogger.cs │ ├── GlobalContextProperties.cs │ ├── Log4netFactory.cs │ ├── Log4netLogger.cs │ ├── ThreadContextProperties.cs │ ├── ThreadContextStack.cs │ └── ThreadContextStacks.cs └── tools └── Explicit.NuGet.Versions ├── Explicit.NuGet.Versions.csproj ├── Explicit.NuGet.Versions.sln └── Program.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Castle.Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/Castle.Core.sln -------------------------------------------------------------------------------- /Castle.Core.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/Castle.Core.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/dictionaryadapter-customize-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dictionaryadapter-customize-keys.md -------------------------------------------------------------------------------- /docs/dictionaryadapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dictionaryadapter.md -------------------------------------------------------------------------------- /docs/dynamicproxy-async-interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-async-interception.md -------------------------------------------------------------------------------- /docs/dynamicproxy-by-ref-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-by-ref-parameters.md -------------------------------------------------------------------------------- /docs/dynamicproxy-fine-grained-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-fine-grained-control.md -------------------------------------------------------------------------------- /docs/dynamicproxy-generation-hook-override-equals-gethashcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-generation-hook-override-equals-gethashcode.md -------------------------------------------------------------------------------- /docs/dynamicproxy-generation-hook-pure-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-generation-hook-pure-function.md -------------------------------------------------------------------------------- /docs/dynamicproxy-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-introduction.md -------------------------------------------------------------------------------- /docs/dynamicproxy-kinds-of-proxy-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-kinds-of-proxy-objects.md -------------------------------------------------------------------------------- /docs/dynamicproxy-leaking-this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-leaking-this.md -------------------------------------------------------------------------------- /docs/dynamicproxy-optional-parameter-value-limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-optional-parameter-value-limitations.md -------------------------------------------------------------------------------- /docs/dynamicproxy-serializable-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-serializable-types.md -------------------------------------------------------------------------------- /docs/dynamicproxy-srp-applies-to-interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy-srp-applies-to-interceptors.md -------------------------------------------------------------------------------- /docs/dynamicproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/dynamicproxy.md -------------------------------------------------------------------------------- /docs/images/castle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/images/castle-logo.png -------------------------------------------------------------------------------- /docs/images/matrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/images/matrix.jpg -------------------------------------------------------------------------------- /docs/images/proxy-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/images/proxy-pipeline.png -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/markdownlint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/docs/markdownlint.rb -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/nuget.config -------------------------------------------------------------------------------- /ref/Castle.Core-net462.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Core-net462.cs -------------------------------------------------------------------------------- /ref/Castle.Core-net8.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Core-net8.0.cs -------------------------------------------------------------------------------- /ref/Castle.Core-netstandard2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Core-netstandard2.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.NLogIntegration-net462.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.NLogIntegration-net462.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.NLogIntegration-net8.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.NLogIntegration-net8.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.NLogIntegration-netstandard2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.NLogIntegration-netstandard2.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.SerilogIntegration-net462.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.SerilogIntegration-net462.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.SerilogIntegration-net8.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.SerilogIntegration-net8.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.SerilogIntegration-netstandard2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.SerilogIntegration-netstandard2.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.log4netIntegration-net462.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.log4netIntegration-net462.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.log4netIntegration-net8.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.log4netIntegration-net8.0.cs -------------------------------------------------------------------------------- /ref/Castle.Services.Logging.log4netIntegration-netstandard2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/ref/Castle.Services.Logging.log4netIntegration-netstandard2.0.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/App.config -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/Castle.Core.Tests.WeakNamed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/Castle.Core.Tests.WeakNamed.csproj -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/BasicClassProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/BasicClassProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/ClassProxyWithTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/ClassProxyWithTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/SimpleTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/DynamicProxy.Tests/SimpleTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests.WeakNamed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests.WeakNamed/Program.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/BugAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/BugAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Castle.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Castle.Core.Tests.csproj -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Address.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Color.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/CustomAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/CustomAssert.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/CustomGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/CustomGetter.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/DynamicDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/DynamicDictionaryTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IAddress.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IBook.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IConversions.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IConversionsToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IConversionsToString.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IEmptyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IEmptyTest.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IEnsureMetaDoesNotConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IEnsureMetaDoesNotConflict.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IItemContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IItemContainer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IItemContainerWithComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IItemContainerWithComponent.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IMutableName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IMutableName.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IName.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPerson.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithPrefix.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithPrefixOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithPrefixOverride.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithoutPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPersonWithoutPrefix.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPhone.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPhoneWithFetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IPhoneWithFetch.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IStringLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IStringLists.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IUseBehaviorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IUseBehaviorBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IdEqualityHashCodeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/IdEqualityHashCodeStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/InfrastructureStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/InfrastructureStub.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/KeyBehaviorBuilderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/KeyBehaviorBuilderAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Phone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Phone.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/PhoneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/PhoneConverter.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/TestDictionaryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/TestDictionaryValidator.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/VirtualObjectTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/VirtualObjectTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlAdapterTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlAdapterTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/DummyXmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/DummyXmlNode.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/NamespaceSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/NamespaceSource.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/XmlNodeTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlApis/XmlNodeTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlTypeSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/Xml/XmlTypeSerializerTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/XmlStructureComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Components.DictionaryAdapter.Tests/XmlStructureComparer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Configuration/Xml/XmlConfigurationDeserializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Configuration/Xml/XmlConfigurationDeserializerTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Internal/InterfaceAttributeUtilTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Internal/InterfaceAttributeUtilTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Internal/WeakKeyDictionaryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Internal/WeakKeyDictionaryTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Logging/ConsoleLoggerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Logging/ConsoleLoggerTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Logging/DiagnosticsLoggerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Logging/DiagnosticsLoggerTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Logging/LevelFilteredLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Logging/LevelFilteredLoggerTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Logging/StreamLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Logging/StreamLoggerTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Logging/TraceLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Logging/TraceLoggerTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/ReflectionBasedDictionaryAdapterTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/ReflectionBasedDictionaryAdapterTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/AssemblyResourceFactoryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/AssemblyResourceFactoryTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/CustomUriTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/CustomUriTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/FileResourceFactoryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/FileResourceFactoryTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/MoreRes/TestRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/MoreRes/TestRes.Designer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/MoreRes/TestRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/MoreRes/TestRes.resx -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/MoreRes/file2.txt: -------------------------------------------------------------------------------- 1 | Another thing -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/UncResourceFactoryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Core.Tests/Resource/UncResourceFactoryTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Core.Tests/Resource/file1.txt: -------------------------------------------------------------------------------- 1 | Something -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/AccessLevelTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/AccessLevelTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/AsyncInterceptorTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/AsyncInterceptorTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/AttributesToAlwaysReplicateTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/AttributesToAlwaysReplicateTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/AttributesToAvoidReplicatingTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/AttributesToAvoidReplicatingTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BasePEVerifyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BasePEVerifyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BaseTestCaseTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BaseTestCaseTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BasicClassProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BasicClassProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BasicInterfaceProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BasicInterfaceProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BasicInterfaceProxyWithoutTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BasicInterfaceProxyWithoutTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/Camera.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/Core40.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/Core40.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy132.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy132.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy159.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy159.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy46.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy46.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy88.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/DynProxy88.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/GitHubIssue536.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/GitHubIssue536.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/BugsReportedTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/BugsReportedTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CacheKeyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CacheKeyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CanDefineAdditionalCustomAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CanDefineAdditionalCustomAttributes.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ChangeProxyTargetInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ChangeProxyTargetInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ChangeProxyTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ChangeProxyTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ClassEmitterTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ClassEmitterTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ClassProxyConstructorsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ClassProxyConstructorsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ClassProxyWithTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ClassProxyWithTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ClassWithAttributesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ClassWithAttributesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/AbstractClassWithMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/AbstractClassWithMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassCallingVirtualMethodFromCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassCallingVirtualMethodFromCtor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassOverridingEqualsAndGetHashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassOverridingEqualsAndGetHashCode.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassToSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassToSerialize.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithAsynchronousMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithAsynchronousMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithCharRetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithCharRetType.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithConstructors.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithDefaultConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithDefaultConstructor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithExplicitInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithExplicitInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithIndexer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithInternalDefaultConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithInternalDefaultConstructor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithProtectedGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithProtectedGenericMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithProtectedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithProtectedMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithVariousConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithVariousConstructors.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithVirtualInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWithVirtualInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWith_Smart_Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ClassWith_Smart_Attribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/Component2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/Component2.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/DiffAccessLevelOnProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/DiffAccessLevelOnProperties.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/EmptyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/EmptyClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithIntAndParamsArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithIntAndParamsArgument.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithParamsArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithParamsArgument.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithParamsStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasCtorWithParamsStrings.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasFinalizeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasFinalizeMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasFinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasFinalizer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasNestedNonInheritableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasNestedNonInheritableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasNonInheritableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasNonInheritableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasTwoProtectedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasTwoProtectedMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasVirtualStringAutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasVirtualStringAutoProperty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/InheritableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/InheritableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/InheritsAbstractClassWithMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/InheritsAbstractClassWithMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/MySerializableClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/MySerializableClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NestedNonInheritableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NestedNonInheritableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableWithArray2Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableWithArray2Attribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableWithArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonInheritableWithArrayAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonPublicConstructorClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonPublicConstructorClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonPublicMethodsClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/NonPublicMethodsClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ProtectedInternalConstructorClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ProtectedInternalConstructorClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/RequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/RequiredAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ServiceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/ServiceClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/SimpleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/SimpleClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithAutoProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithAutoProperty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithNoDefaultCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithNoDefaultCtor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithProtectedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithProtectedMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithPublicField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Classes/VirtualClassWithPublicField.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInterfacesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInterfacesTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Command.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Connection.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Enums.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Fields.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Parameter.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Parameters.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Properties.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/README.md -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Recordset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ComInteropTypes/ADODB/Recordset.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CovariantReturnsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CovariantReturnsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CrossAppDomainCaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CrossAppDomainCaller.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CustomAttributeInfoTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CustomAttributeInfoTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CustomAttributesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CustomAttributesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/CustomModifiersTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/CustomModifiersTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/DefaultInterfaceMembersTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/DefaultInterfaceMembersTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/DelegateMixinTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/DelegateMixinTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/DelegateProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/DelegateProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/DictionarySerializationTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/DictionarySerializationTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/GenInterfaceExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/GenInterfaceExplicit.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/GenericMethodExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/GenericMethodExplicit.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/SimpleInterfaceExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/SimpleInterfaceExplicit.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/TwoInterfacesExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/TwoInterfacesExplicit.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/WithRefOutExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Explicit/WithRefOutExplicit.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitInterfaceTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitInterfaceTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedEventTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedEventTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedMethodNamesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedMethodNamesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedPropertyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ExplicitlyImplementedPropertyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/ClassWithGenArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/ClassWithGenArgs.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/ClassWithIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/ClassWithIndexer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassNameClash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassNameClash.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithConstraints.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithExplicitImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithExplicitImpl.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithGenMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithGenMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithGenReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/GenClassWithGenReturn.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/OnlyGenMethodsClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenClasses/OnlyGenMethodsClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenExplicitImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenExplicitImplementation.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceHierarchy.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenArray.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenericTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/GenInterfaceWithGenericTypes.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/OnlyGenMethodsInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenInterfaces/OnlyGenMethodsInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenerationHookTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenerationHookTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericClassProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericClassProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericConstraintsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericConstraintsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericInterfaceProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericInterfaceProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericInterfaceWithGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericInterfaceWithGenericMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericMethodsProxyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericMethodsProxyTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/GenericTestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/GenericTestUtility.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InParamsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InParamsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InheritedInterfacesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InheritedInterfacesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/AlwaysThrowsServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/AlwaysThrowsServiceImpl.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ClassWithIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ClassWithIndexer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ClassWithMarkerInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ClassWithMarkerInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IExtendedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IExtendedService.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IMyInterface2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IMyInterface2.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IService.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IService2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/IService2.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/InterfaceWithIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/InterfaceWithIndexer.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/One.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/One.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/OneAndEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/OneAndEmpty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/OneTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/OneTwo.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/ServiceImpl.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/Two.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/Two.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithCallbackSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithCallbackSimple.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithRefOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithRefOut.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithRefOutEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterClasses/WithRefOutEmpty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterceptionRetryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterceptionRetryTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterceptorSelectorTargetTypeTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterceptorSelectorTargetTypeTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterceptorSelectorTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterceptorSelectorTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/AddTwoInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/AddTwoInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/CallCountingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/CallCountingInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ChangeTargetInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ChangeTargetInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/DoNothingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/DoNothingInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/KeepDataInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/KeepDataInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/LogInvocationInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/LogInvocationInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ProceedNTimesInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ProceedNTimesInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ProceedOnTypeInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ProceedOnTypeInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/RequiredParamInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/RequiredParamInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/SetArgumentValueInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/SetArgumentValueInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/SetReturnValueInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/SetReturnValueInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ThrowingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/ThrowingInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/WithCallbackInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interceptors/WithCallbackInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InterfaceProxyBaseTypeTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InterfaceProxyBaseTypeTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IBase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IDecimalOutParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IDecimalOutParam.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IEmpty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithIntPtr.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithOutIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithOutIntPtr.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithOutUIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithOutUIntPtr.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithUIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IFooWithUIntPtr.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithEvent.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithNonGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithNonGenericMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithProperty.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithRefOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IGenericWithRefOut.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IHaveIndexers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IHaveIndexers.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/INullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/INullable.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IOne.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISharedName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISharedName.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISimple.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISub1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISub1.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISub2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ISub2.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ITwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/ITwo.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IWithRefOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IWithRefOut.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IdenticalInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Interfaces/IdenticalInterfaces.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InvocationMethodInvocationTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InvocationMethodInvocationTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InvocationProceedTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InvocationProceedTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTypeReuseTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTypeReuseTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTypesCachingTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/InvocationTypesCachingTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/LoggingTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/LoggingTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/MethodComparerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/MethodComparerTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/MethodEquivalenceTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/MethodEquivalenceTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/MixinDataTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/MixinDataTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/MixinTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/MixinTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/ClassImplementingISimpleMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/ClassImplementingISimpleMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/ComplexMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/ComplexMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/IDerivedSimpleMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/IDerivedSimpleMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/OtherMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/OtherMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/SimpleMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/SimpleMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/SortingIssueOnMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Mixins/SortingIssueOnMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ModuleScopeTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ModuleScopeTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/MultipleSavedAssembliesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/MultipleSavedAssembliesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedMethodsNoTargetTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedMethodsNoTargetTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedMixinMethodsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedMixinMethodsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedTargetMethodsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/NonProxiedTargetMethodsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/OrderOfInterfacePrecedenceTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/OrderOfInterfacePrecedenceTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/OutRefParamsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/OutRefParamsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ParameterDefaultValuesTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ParameterDefaultValuesTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/PersistentProxyBuilderTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/PersistentProxyBuilderTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyGenerationOptionsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyGenerationOptionsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyKind.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyNothingHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyNothingHook.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxySomeMethodsHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxySomeMethodsHook.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyTargetAccessorHandlingTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyTargetAccessorHandlingTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyTypeCachingTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyTypeCachingTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ProxyUtilTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ProxyUtilTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Records/DerivedFromEmptyGenericRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Records/DerivedFromEmptyGenericRecord.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Records/DerivedFromEmptyRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Records/DerivedFromEmptyRecord.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Records/EmptyGenericRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Records/EmptyGenericRecord.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Records/EmptyRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Records/EmptyRecord.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/RecordsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/RecordsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/RhinoMocksTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/RhinoMocksTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/SerializableClassTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/SerializableClassTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/BadSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/BadSerializable.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/C.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/ComplexHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/ComplexHolder.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/DelegateHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/DelegateHolder.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/EventHandlerClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/EventHandlerClass.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/IMixedInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/IMixedInterface.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/IndirectDelegateHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/IndirectDelegateHolder.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/MethodFilterHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/MethodFilterHook.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/SerializableExplicitImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/SerializableExplicitImpl.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/SerializableMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/Serialization/SerializableMixin.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/TypeUtilTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/TypeUtilTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/ValueTypeReferenceSemanticsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/ValueTypeReferenceSemanticsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/WinFormsTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/WinFormsTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/DynamicProxy.Tests/XmlSerializationTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/DynamicProxy.Tests/XmlSerializationTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Program.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/PublicApiTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/PublicApiTestCase.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Services.Logging.Tests/NLogIntegration/NLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Services.Logging.Tests/NLogIntegration/NLogTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Services.Logging.Tests/SerilogIntegration/SerilogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Services.Logging.Tests/SerilogIntegration/SerilogTests.cs -------------------------------------------------------------------------------- /src/Castle.Core.Tests/Services.Logging.Tests/log4netIntegration/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/Services.Logging.Tests/log4netIntegration/log4net.xml -------------------------------------------------------------------------------- /src/Castle.Core.Tests/config/netcoreapp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/config/netcoreapp/App.config -------------------------------------------------------------------------------- /src/Castle.Core.Tests/config/netfx/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core.Tests/config/netfx/App.config -------------------------------------------------------------------------------- /src/Castle.Core/Castle.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Castle.Core.csproj -------------------------------------------------------------------------------- /src/Castle.Core/Compatibility/NullStateStaticAnalysisAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Compatibility/NullStateStaticAnalysisAttributes.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/AbstractDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/AbstractDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/AbstractDictionaryAdapterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/AbstractDictionaryAdapterVisitor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/ComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/ComponentAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/FetchAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/FetchAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/GroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/GroupAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/IfExistsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/IfExistsAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/KeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/KeyAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/KeyPrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/KeyPrefixAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/KeySubstitutionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/KeySubstitutionAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/MultiLevelEditAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/MultiLevelEditAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/NewGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/NewGuidAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/OnDemandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/OnDemandAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/ReferenceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/ReferenceAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/RemoveIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/RemoveIfAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/RemoveIfEmptyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/RemoveIfEmptyAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/StringFormatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/StringFormatAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/StringListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/StringListAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/StringStorageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/StringStorageAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/StringValuesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/StringValuesAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/TypeKeyPrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/TypeKeyPrefixAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/VolatileAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/VolatileAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathFunctionAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathVariableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/XPathVariableAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/XmlDefaultsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/XmlDefaultsAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Attributes/XmlNamespaceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Attributes/XmlNamespaceAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/CascadingDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/CascadingDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DefaultPropertyGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DefaultPropertyGetter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Coerce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Coerce.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Copy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Create.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Edit.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Notify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Notify.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Validate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.Validate.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterBase.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterExtensions.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterInstance.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryAdapterMeta.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DictionaryValidateGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DictionaryValidateGroup.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/DynamicDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/DynamicDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/GenericDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/GenericDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapterFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryAdapterVisitor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryBehavior.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryBehaviorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryBehaviorBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryCoerceStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryCoerceStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryCopyStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryCopyStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryCreate.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryCreateStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryCreateStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryEdit.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryEqualityHashCodeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryEqualityHashCodeStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryInitializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryKeyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryKeyBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryMetaInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryMetaInitializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryNotify.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryPropertyGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryPropertyGetter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryPropertySetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryPropertySetter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryReferenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryReferenceManager.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryValidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryValidate.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IDictionaryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IDictionaryValidator.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/IPropertyDescriptorInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/IPropertyDescriptorInitializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/MemberwiseEqualityHashCodeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/MemberwiseEqualityHashCodeStrategy.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/NameValueCollectionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/NameValueCollectionAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/PropertyChangedEventArgsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/PropertyChangedEventArgsEx.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/PropertyChangingEventArgsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/PropertyChangingEventArgsEx.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/PropertyDescriptor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/BindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/BindingList.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/BindingListInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/BindingListInitializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/DynamicValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/DynamicValue.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/DynamicValueDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/DynamicValueDelegate.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/EditableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/EditableBindingList.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/EditableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/EditableList.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IBindingList.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IBindingListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IBindingListSource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionAdapterObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionAdapterObserver.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ICollectionProjection.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ICondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ICondition.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IDynamicValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IDynamicValue.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IValueInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IValueInitializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IVirtual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IVirtual.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IVirtualSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IVirtualSite.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/IVirtualTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/IVirtualTarget.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ListProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ListProjection.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/ListProjectionDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/ListProjectionDebugView.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/SetProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/SetProjection.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/VirtualObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/VirtualObject.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Util/VirtualSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Util/VirtualSite.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/DefaultXmlReferenceFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/DefaultXmlReferenceFormat.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/IXmlReferenceFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/IXmlReferenceFormat.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlMetadata.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlMetadataBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlMetadataBehavior.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlReferenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Core/XmlReferenceManager.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Accessors/IXmlAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Accessors/IXmlAccessor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Accessors/XmlAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Accessors/XmlAccessor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Collections/XmlNodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Collections/XmlNodeList.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Collections/XmlNodeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Collections/XmlNodeSet.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/IXmlCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/IXmlCursor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/IXmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/IXmlNode.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/XmlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/XmlContext.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/XmlName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/Base/XmlName.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/XPath/XPathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Cursors/XPath/XPathNode.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Wsdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Wsdl.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/XRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/XRef.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xmlns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xmlns.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xsd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xsd.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xsi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Namespaces/Xsi.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Serializers/XmlTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Serializers/XmlTypeKind.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlIdentity.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlIncludedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlIncludedType.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlKnownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlKnownType.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlKnownTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/IXmlKnownTypeMap.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlIncludedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlIncludedType.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlKnownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlKnownType.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlKnownTypeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Types/XmlKnownTypeSet.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/Error.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/IConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/IConfigurable.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/IRealizable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/IRealizable.cs -------------------------------------------------------------------------------- /src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/Try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Components.DictionaryAdapter/Xml/Internal/Utilities/Try.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/AbstractConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/AbstractConfiguration.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/ConfigurationAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/ConfigurationAttributeCollection.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/ConfigurationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/ConfigurationCollection.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/IConfiguration.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/MutableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/MutableConfiguration.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Configuration/Xml/XmlConfigurationDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Configuration/Xml/XmlConfigurationDeserializer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/IServiceEnabledComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/IServiceEnabledComponent.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/IServiceProviderEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/IServiceProviderEx.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/IServiceProviderExAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/IServiceProviderExAccessor.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/AttributesUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/AttributesUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/InterfaceAttributeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/InterfaceAttributeUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/InternalsVisible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/InternalsVisible.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/SynchronizedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/SynchronizedDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/WeakKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/WeakKey.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/WeakKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/WeakKeyComparer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Internal/WeakKeyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Internal/WeakKeyDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/AbstractExtendedLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/AbstractExtendedLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/AbstractLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/AbstractLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/ConsoleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/ConsoleFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/DiagnosticsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/DiagnosticsLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/DiagnosticsLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/DiagnosticsLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/IContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/IContextProperties.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/IContextStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/IContextStack.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/IContextStacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/IContextStacks.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/IExtendedLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/IExtendedLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/IExtendedLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/IExtendedLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/ILoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/ILoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/LevelFilteredLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/LevelFilteredLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/LoggerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/LoggerException.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/LoggerLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/LoggerLevel.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/NullLogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/NullLogFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/StreamLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/StreamLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/StreamLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/StreamLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/TraceLogger.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Logging/TraceLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Logging/TraceLoggerFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/ProxyServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/ProxyServices.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/ReflectionBasedDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/ReflectionBasedDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/AbstractResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/AbstractResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/AbstractStreamResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/AbstractStreamResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/AssemblyBundleResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/AssemblyBundleResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/AssemblyResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/AssemblyResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/AssemblyResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/AssemblyResourceFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/ConfigResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/ConfigResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/ConfigResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/ConfigResourceFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/CustomUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/CustomUri.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/FileResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/FileResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/FileResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/FileResourceFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/IResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/IResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/IResourceFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/ResourceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/ResourceException.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/StaticContentResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/StaticContentResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/UncResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/UncResource.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Resource/UncResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Resource/UncResourceFactory.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Smtp/DefaultSmtpSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Smtp/DefaultSmtpSender.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/Smtp/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/Smtp/IEmailSender.cs -------------------------------------------------------------------------------- /src/Castle.Core/Core/StringObjectDictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Core/StringObjectDictionaryAdapter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/AbstractInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/AbstractInvocation.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/AllMethodsHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/AllMethodsHook.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ClassMembersCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ClassMembersCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ClassProxySerializableContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ClassProxySerializableContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ClassProxyTargetContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ClassProxyTargetContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ClassProxyWithTargetTargetContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ClassProxyWithTargetTargetContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/CompositeTypeContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/CompositeTypeContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/DelegateTypeMembersCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/DelegateTypeMembersCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/Delegates.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/FieldReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/FieldReferenceComparer.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/IInvocationCreationContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/IInvocationCreationContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/IMembersCollectorSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/IMembersCollectorSink.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ITypeContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ITypeContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InterfaceMembersCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InterfaceMembersCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InterfaceMembersOnClassCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InterfaceMembersOnClassCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InterfaceProxySerializableContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InterfaceProxySerializableContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InterfaceProxyTargetContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InterfaceProxyTargetContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InterfaceProxyWithoutTargetContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InterfaceProxyWithoutTargetContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/InvocationWithDelegateContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/InvocationWithDelegateContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/MembersCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/MembersCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/MixinContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/MixinContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/NonInheritableAttributesContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/NonInheritableAttributesContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/ProxyTargetAccessorContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/ProxyTargetAccessorContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/SerializableContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/SerializableContributor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Contributors/WrappedClassMembersCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Contributors/WrappedClassMembersCollector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/CustomAttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/CustomAttributeInfo.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/DefaultProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/DefaultProxyBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/DynProxy.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/DynProxy.snk -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/DynamicProxyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/DynamicProxyException.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/ExceptionMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/ExceptionMessageBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/AttributesToAlwaysReplicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/AttributesToAlwaysReplicate.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/AttributesToAvoidReplicating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/AttributesToAvoidReplicating.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/BaseClassProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/BaseClassProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/BaseInterfaceProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/BaseInterfaceProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/BaseProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/BaseProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/CacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/CacheKey.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/ClassProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/ClassProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/ClassProxyWithTargetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/ClassProxyWithTargetGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/CompositionInvocationTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/CompositionInvocationTypeGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/DelegateTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/DelegateTypeGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/AbstractTypeEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/AbstractTypeEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/ArgumentsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/ArgumentsUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/ClassEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/ClassEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/CodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/CodeBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/ConstructorEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/ConstructorEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/EventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/EventEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/GenericUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/GenericUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/IMemberEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/IMemberEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/LdcOpCodesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/LdcOpCodesDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/LdindOpCodesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/LdindOpCodesDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/MethodEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/MethodEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/NestedClassEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/NestedClassEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/OpCodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/OpCodeUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/PropertyEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/PropertyEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ArgumentReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ArgumentReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AsTypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AsTypeReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AssignArrayStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AssignArrayStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AssignStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/AssignStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/BlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/BlockStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ByRefReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ByRefReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ConvertExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ConvertExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/DefaultValueExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/DefaultValueExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/FieldReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/FinallyStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/FinallyStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IExpressionOrStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IExpressionOrStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IfNullExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IfNullExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IndirectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/IndirectReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LiteralBoolExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LiteralBoolExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LiteralIntExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LiteralIntExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LocalReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/LocalReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/MethodTokenExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/MethodTokenExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NewArrayExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NewArrayExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NewInstanceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NewInstanceExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NullExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/NullExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/Reference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ReturnStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ReturnStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/SelfReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/SelfReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ThrowStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/ThrowStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TryStatement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TypeReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TypeTokenExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST/TypeTokenExpression.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/StindOpCodesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/StindOpCodesDictionary.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/StrongNameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/StrongNameUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/Emitters/TypeConstructorEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/Emitters/TypeConstructorEmitter.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/ForwardingMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/ForwardingMethodGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/GeneratorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/GeneratorUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/IGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/INamingScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/INamingScope.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/InheritanceInvocationTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/InheritanceInvocationTypeGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/InterfaceProxyWithTargetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/InterfaceProxyWithTargetGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/InterfaceProxyWithoutTargetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/InterfaceProxyWithoutTargetGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/InvocationTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/InvocationTypeGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaEvent.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaMethod.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaProperty.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaType.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaTypeElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaTypeElement.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MetaTypeElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MetaTypeElementCollection.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MethodGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MethodSignatureComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MethodSignatureComparer.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MethodWithInvocationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MethodWithInvocationGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/MinimalisticMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/MinimalisticMethodGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/NamingScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/NamingScope.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Generators/OptionallyForwardingMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Generators/OptionallyForwardingMethodGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IChangeProxyTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IChangeProxyTarget.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IInterceptorSelector.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IInvocation.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IInvocationProceedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IInvocationProceedInfo.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IProxyBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IProxyGenerationHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IProxyGenerationHook.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/IProxyTargetAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/IProxyTargetAccessor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/AttributeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/AttributeUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/CompositionInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/CompositionInvocation.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/InheritanceInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/InheritanceInvocation.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/InheritanceInvocationWithoutTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/InheritanceInvocationWithoutTarget.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/InterfaceMethodWithoutTargetInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/InterfaceMethodWithoutTargetInvocation.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/InvocationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/InvocationHelper.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Internal/TypeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Internal/TypeUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/MixinData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/MixinData.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/ModuleScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/ModuleScope.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/PersistentProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/PersistentProxyBuilder.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/ProxyGenerationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/ProxyGenerationOptions.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/ProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/ProxyGenerator.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/ProxyUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/ProxyUtil.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Serialization/CacheMappingsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Serialization/CacheMappingsAttribute.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Serialization/ProxyObjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Serialization/ProxyObjectReference.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Serialization/ProxyTypeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Serialization/ProxyTypeConstants.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/StandardInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/StandardInterceptor.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/DelegateMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/DelegateMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/FormatterServicesMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/FormatterServicesMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/InterceptorSelectorMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/InterceptorSelectorMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/InvocationMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/InvocationMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/MethodBaseMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/MethodBaseMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/SerializationInfoMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/SerializationInfoMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/TypeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/TypeMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/DynamicProxy/Tokens/TypeUtilMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/DynamicProxy/Tokens/TypeUtilMethods.cs -------------------------------------------------------------------------------- /src/Castle.Core/Properties/InternalsVisibleToTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Core/Properties/InternalsVisibleToTests.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/ExtendedNLogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/ExtendedNLogFactory.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/ExtendedNLogLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/ExtendedNLogLogger.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/GlobalContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/GlobalContextProperties.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/NLogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/NLogFactory.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/NLogLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/NLogLogger.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/ThreadContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/ThreadContextProperties.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/ThreadContextStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/ThreadContextStack.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.NLogIntegration/ThreadContextStacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.NLogIntegration/ThreadContextStacks.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.SerilogIntegration/SerilogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.SerilogIntegration/SerilogFactory.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.SerilogIntegration/SerilogLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.SerilogIntegration/SerilogLogger.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/ExtendedLog4netFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/ExtendedLog4netFactory.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/ExtendedLog4netLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/ExtendedLog4netLogger.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/GlobalContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/GlobalContextProperties.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/Log4netFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/Log4netFactory.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/Log4netLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/Log4netLogger.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/ThreadContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/ThreadContextProperties.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/ThreadContextStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/ThreadContextStack.cs -------------------------------------------------------------------------------- /src/Castle.Services.Logging.log4netIntegration/ThreadContextStacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/src/Castle.Services.Logging.log4netIntegration/ThreadContextStacks.cs -------------------------------------------------------------------------------- /tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.csproj -------------------------------------------------------------------------------- /tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.sln -------------------------------------------------------------------------------- /tools/Explicit.NuGet.Versions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castleproject/Core/HEAD/tools/Explicit.NuGet.Versions/Program.cs --------------------------------------------------------------------------------