├── .gitignore ├── LinFu.License.txt ├── LinFu.build ├── LinFu.snk ├── examples ├── LinFu.AOP.Samples │ ├── LinFu.AOP.MethodInterceptionSample │ │ ├── LinFu.AOP.MethodInterceptionSample.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── LinFu.AOP.MethodInterceptionSample.vshost.exe │ │ │ │ └── LinFu.AOP.MethodInterceptionSample.vshost.exe.manifest │ │ └── obj │ │ │ ├── Debug │ │ │ └── LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt │ │ │ └── Release │ │ │ ├── LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt │ │ │ └── ResolveAssemblyReference.cache │ ├── LinFu.AOP.Samples.5.1.ReSharper.user │ ├── LinFu.AOP.Samples.sln │ ├── LinFu.AOP.Samples.suo │ ├── SampleLibrary │ │ ├── BankAccount.cs │ │ ├── Employee.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SampleLibrary.csproj │ │ ├── bin │ │ │ └── Release │ │ │ │ ├── LinFu.Core.dll │ │ │ │ ├── LinFu.Core.pdb │ │ │ │ ├── LinFu.Core.xml │ │ │ │ ├── SampleLibrary.dll │ │ │ │ └── SampleLibrary.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── SampleLibrary.csproj.FileListAbsolute.txt │ │ │ └── Release │ │ │ ├── ResolveAssemblyReference.cache │ │ │ ├── SampleLibrary.csproj.FileListAbsolute.txt │ │ │ ├── SampleLibrary.dll │ │ │ └── SampleLibrary.pdb │ ├── _ReSharper.LinFu.AOP.Samples │ │ ├── BuildScriptCache │ │ │ ├── .crc │ │ │ └── .version │ │ ├── ModuleIds.xml │ │ ├── NamedArguments │ │ │ ├── .crc │ │ │ └── .version │ │ ├── PdbInfo │ │ │ ├── 51951637a634e74c10082f4829f0a650155b9361 │ │ │ ├── 52f461740365ec3bf2c8a0b81b63d5d55fb22e72 │ │ │ └── fa3770c9fcb368bd5538907e4f3eada09a826f09 │ │ ├── ProjectModel │ │ │ └── ProjectModel.dat │ │ ├── Resources │ │ │ ├── .crc │ │ │ └── .version │ │ ├── SymbolCache.bin │ │ ├── TagPrefixes │ │ │ ├── .crc │ │ │ └── .version │ │ ├── TodoCache │ │ │ ├── .crc │ │ │ └── .version │ │ ├── WebsiteFileReferences │ │ │ ├── .crc │ │ │ └── .version │ │ └── WordIndex │ │ │ ├── .crc │ │ │ └── .version │ └── lib │ │ ├── LinFu.Core.dll │ │ ├── LinFu.Core.pdb │ │ └── LinFu.Core.xml └── ioc │ ├── CarLibrary4 │ ├── Car.cs │ ├── CarLibrary4.csproj │ ├── DeadEngine.cs │ ├── IEngine.cs │ ├── IPerson.cs │ ├── IVehicle.cs │ ├── OldEngine.cs │ ├── Person.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ConstructorInjection │ ├── CarLibrary3 │ │ ├── Car.cs │ │ ├── CarLibrary3.csproj │ │ ├── DeadEngine.cs │ │ ├── IEngine.cs │ │ ├── IPerson.cs │ │ ├── IVehicle.cs │ │ ├── Person.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorInjectionUsingFluentInterfaces.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── DependencyInjectionSample │ ├── CarLibrary │ │ ├── Car.cs │ │ ├── CarLibrary.csproj │ │ ├── IEngine.cs │ │ ├── IPerson.cs │ │ ├── IVehicle.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── DependencyInjectionSample.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── Extensibility │ ├── Extensibility.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SamplePlugin │ │ ├── ExamplePlugin.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SamplePlugin.csproj │ ├── LinFu.IoC.Examples.sln │ ├── PropertyInjectionSample │ ├── CarLibrary2 │ │ ├── Car.cs │ │ ├── CarLibrary2.csproj │ │ ├── DeadEngine.cs │ │ ├── IEngine.cs │ │ ├── IPerson.cs │ │ ├── IVehicle.cs │ │ ├── Person.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── PropertyInjectionSample.csproj │ ├── PropertyInjectionUsingFluentInterfaces │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── PropertyInjectionUsingFluentInterfaces.csproj │ └── bin │ ├── LinFu.Core.dll │ └── LinFu.Core.xml ├── go.bat ├── lib ├── MbUnit.Framework.dll ├── Microsoft.Practices.ServiceLocation.XML ├── Microsoft.Practices.ServiceLocation.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.dll ├── Moq.dll └── nunit.framework.dll ├── src ├── CommonAssemblyInfo.cs ├── CommonServiceLocator │ ├── CommonServiceLocator.LinFuAdapter.Tests │ │ ├── AdvancedLogger.cs │ │ ├── CommonServiceLocator.LinFuAdapter.Tests.csproj │ │ ├── Components │ │ │ ├── AdvancedLogger.cs │ │ │ ├── ILogger.cs │ │ │ └── SimpleLogger.cs │ │ ├── ILogger.cs │ │ ├── LinFuServiceLocatorTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ServiceLocatorTestCase.cs │ │ └── SimpleLogger.cs │ ├── CommonServiceLocator.LinFuAdapter.sln │ ├── CommonServiceLocator.LinFuAdapter │ │ ├── CommonServiceLocator.LinFuAdapter.csproj │ │ ├── LinFuServiceLocator.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ └── lib │ │ ├── LinqBridge.dll │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── Readme.txt │ │ └── nunit.framework.dll ├── ILMerge.MSBuild ├── LinFu.AOP.ILMerge.MSBuild ├── LinFu.AOP.Interfaces │ ├── ActivationContext.cs │ ├── ActivatorExtensions.cs │ ├── AroundInvokeMethodCallRegistry.cs │ ├── AroundMethodBodyRegistry.cs │ ├── BaseMethodReplacementProvider.cs │ ├── BootStrapRegistry.cs │ ├── BootstrapException.cs │ ├── CallCounter.cs │ ├── CompositeAroundInvoke.cs │ ├── Counter.cs │ ├── CountingInterceptor.cs │ ├── ExceptionHandlerRegistry.cs │ ├── FieldInterceptionContext.cs │ ├── FieldInterceptorRegistry.cs │ ├── IActivationContext.cs │ ├── IActivator.cs │ ├── IActivatorHost.cs │ ├── IAfterInvoke.cs │ ├── IAroundInvoke.cs │ ├── IAroundInvokeHost.cs │ ├── IAroundInvokeProvider.cs │ ├── IBeforeInvoke.cs │ ├── IBootStrappedComponent.cs │ ├── ICallCounter.cs │ ├── IExceptionHandler.cs │ ├── IExceptionHandlerInfo.cs │ ├── IFieldInterceptionContext.cs │ ├── IFieldInterceptionHost.cs │ ├── IFieldInterceptor.cs │ ├── IInterceptor.cs │ ├── IInvocationInfo.cs │ ├── IInvokeWrapper.cs │ ├── IMethodReplacementHost.cs │ ├── IMethodReplacementProvider.cs │ ├── IModifiableType.cs │ ├── IReflectionStructureVisitable.cs │ ├── IReflectionVisitable.cs │ ├── ITypeActivationContext.cs │ ├── ITypeActivator.cs │ ├── IVisitable.cs │ ├── LinFu.AOP.Interfaces.csproj │ ├── MethodBodyReplacementProviderRegistry.cs │ ├── MethodCallReplacementProviderRegistry.cs │ ├── MultithreadedCallCounter.cs │ ├── SimpleMethodReplacementProvider.cs │ ├── SingleThreadedCallCounter.cs │ ├── TypeActivationContext.cs │ └── TypeActivatorRegistry.cs ├── LinFu.AOP.Tasks │ ├── LinFu.AOP.Tasks.csproj │ ├── PostWeaveTask.cs │ └── packages.config ├── LinFu.AOP │ ├── AssemblyDefinitionExtensions.cs │ ├── BaseMethodRewriter.cs │ ├── BaseReflectionVisitor.cs │ ├── CatchAllThrownExceptions.cs │ ├── Emitters │ │ ├── AddMethodReplacementImplementation.cs │ │ ├── AddOriginalInstructions.cs │ │ ├── EmitAfterInvoke.cs │ │ ├── EmitBeforeInvoke.cs │ │ ├── GetAroundInvokeProvider.cs │ │ ├── GetClassMethodReplacementProvider.cs │ │ ├── GetInterceptionDisabled.cs │ │ ├── GetMethodReplacementProvider.cs │ │ ├── GetSurroundingClassImplementation.cs │ │ ├── GetSurroundingImplementationInstance.cs │ │ ├── InvokeMethodReplacement.cs │ │ ├── SaveReturnValue.cs │ │ └── SurroundMethodBody.cs │ ├── ExceptionHandlerInfo.cs │ ├── Extensions │ │ ├── CecilVisitorExtensions.cs │ │ ├── ExceptionHandlerInterceptionExtensions.cs │ │ ├── FieldInterceptionExtensions.cs │ │ ├── InvocationInfoExtensions.cs │ │ ├── MethodBodyInterceptionExtensions.cs │ │ ├── MethodCallInterceptionExtensions.cs │ │ ├── MethodDefinitionExtensions.cs │ │ ├── MethodRewriterExtensions.cs │ │ ├── NewOperatorInterceptionExtensions.cs │ │ └── TypeDefinitionExtensions.cs │ ├── Factories │ │ ├── AddInvocationInfoActionFactory.cs │ │ ├── AssemblyWeaverActionFactory.cs │ │ └── TypeWeaverActionFactory.cs │ ├── FieldFilterAdapter.cs │ ├── FieldInterception │ │ ├── ImplementFieldInterceptionHostWeaver.cs │ │ └── InterceptFieldAccess.cs │ ├── IgnoredInstancesRegistry.cs │ ├── ImplementMethodReplacementHost.cs │ ├── ImplementModifiableType.cs │ ├── InstructionProvider.cs │ ├── InstructionSwapper.cs │ ├── Interfaces │ │ ├── IAroundMethodWeaver.cs │ │ ├── IEmitInvocationInfo.cs │ │ ├── IFieldFilter.cs │ │ ├── IHostWeaver.cs │ │ ├── IInstructionEmitter.cs │ │ ├── IInstructionProvider.cs │ │ ├── IMethodBodyRewriter.cs │ │ ├── IMethodBodyRewriterParameters.cs │ │ ├── IMethodCallFilter.cs │ │ ├── IMethodFilter.cs │ │ ├── IMethodRewriter.cs │ │ ├── IMethodWeaver.cs │ │ ├── IModuleWeaver.cs │ │ ├── INewInstanceFilter.cs │ │ ├── INewObjectWeaver.cs │ │ ├── IPdbLoader.cs │ │ ├── ISurroundMethodBody.cs │ │ ├── ITypeFilter.cs │ │ ├── ITypeWeaver.cs │ │ ├── IVerifier.cs │ │ └── IWeaver.cs │ ├── InvocationInfo.cs │ ├── InvocationInfoEmitter.cs │ ├── LinFu.AOP.Cecil.csproj │ ├── Loaders │ │ ├── AssemblyLoaderWithPdbSupport.cs │ │ ├── JITWeaver.cs │ │ └── PdbLoader.cs │ ├── MethodBodyInterception │ │ ├── InterceptAndSurroundMethodBody.cs │ │ ├── InterceptMethodBody.cs │ │ └── MethodBodyRewriterParameters.cs │ ├── MethodCallFilterAdapter.cs │ ├── MethodCallInterception │ │ └── InterceptMethodCalls.cs │ ├── MethodRewriter.cs │ ├── MethodWeaver.cs │ ├── MethodWeaverVisitor.cs │ ├── NewInstanceInterceptionAdapter.cs │ ├── NewOperatorInterception │ │ ├── ImplementActivatorHostWeaver.cs │ │ ├── InterceptNewCalls.cs │ │ └── RedirectNewInstancesToActivator.cs │ ├── TypeWeaverVisitor.cs │ └── packages.config ├── LinFu.Finders │ ├── Criteria.cs │ ├── FinderExtensions.cs │ ├── FuzzyItem.cs │ ├── Interfaces │ │ ├── CriteriaType.cs │ │ ├── ICriteria.cs │ │ └── IFuzzyItem.cs │ ├── LinFu.Finders.csproj │ └── PredicateExtensions.cs ├── LinFu.IoC.Common │ ├── FactoryAttribute.cs │ ├── IContainer.cs │ ├── IFactory.cs │ ├── IFactoryRequest.cs │ ├── IInitialize.cs │ ├── IPostProcessor.cs │ ├── IPreprocessor.cs │ ├── IServiceContainer.cs │ ├── IServiceInfo.cs │ ├── IServiceRequest.cs │ ├── IServiceRequestResult.cs │ ├── ImplementsAttribute.cs │ ├── LifecycleType.cs │ ├── LinFu.IoC.Common.csproj │ ├── LinFu.snk │ └── Properties │ │ └── AssemblyInfo.cs ├── LinFu.IoC.ILMerge.MSBuild ├── LinFu.IoC │ ├── BaseFactoryStorage.cs │ ├── CompositePostProcessor.cs │ ├── CompositePreProcessor.cs │ ├── Configuration │ │ ├── ActionDelegates.cs │ │ ├── Attributes │ │ │ ├── InjectAttribute.cs │ │ │ ├── PostProcessorAttribute.cs │ │ │ └── PreprocessorAttribute.cs │ │ ├── BaseMethodBuilder.cs │ │ ├── BaseMethodInvoke.cs │ │ ├── ConstructorInvoke.cs │ │ ├── ConstructorMethodBuilder.cs │ │ ├── ContainerActivationContext.cs │ │ ├── DefaultActivator.cs │ │ ├── Extensions │ │ │ ├── FluentExtensions.cs │ │ │ └── ResolutionExtensions.cs │ │ ├── FactoryBuilder.cs │ │ ├── FluentInterfaces │ │ │ ├── ActionContext.cs │ │ │ ├── ActionPostProcessor.cs │ │ │ ├── BaseContext.cs │ │ │ ├── GenerateFactory.cs │ │ │ ├── InjectionContext.cs │ │ │ ├── PropertyInjectionLambda.cs │ │ │ └── UsingLambda.cs │ │ ├── InMemoryAssemblyLoader.cs │ │ ├── Initializer.cs │ │ ├── InitializerOfT.cs │ │ ├── InitializerPlugin.cs │ │ ├── Injectors │ │ │ ├── AttributedFieldInjectionFilter.cs │ │ │ ├── AttributedMethodInjectionFilter.cs │ │ │ ├── AttributedPropertyInjectionFilter.cs │ │ │ ├── AutoFieldInjector.cs │ │ │ ├── AutoMemberInjector.cs │ │ │ ├── AutoMethodInjector.cs │ │ │ ├── AutoPropertyInjector.cs │ │ │ ├── BaseMemberInjectionFilter.cs │ │ │ ├── CustomFactoryInjector.cs │ │ │ ├── NullMemberInjectionFilter.cs │ │ │ └── PropertyInjectionFilter.cs │ │ ├── Interfaces │ │ │ ├── IActivator.cs │ │ │ ├── IArgumentResolver.cs │ │ │ ├── IContainerActivationContext.cs │ │ │ ├── IContainerLoader.cs │ │ │ ├── IContainerPlugin.cs │ │ │ ├── IFactoryBuilder.cs │ │ │ ├── IGenerateFactory.cs │ │ │ ├── IMemberResolver.cs │ │ │ ├── IMethodBuilder.cs │ │ │ ├── IMethodFinder.cs │ │ │ ├── IMethodFinderContext.cs │ │ │ ├── IMethodFinderWithContainer.cs │ │ │ ├── IMethodInjectionFilter.cs │ │ │ ├── IMethodInvoke.cs │ │ │ ├── INamedType.cs │ │ │ ├── IPropertyInjectionLambda.cs │ │ │ ├── IPropertySetter.cs │ │ │ ├── ITypeLoader.cs │ │ │ └── IUsingLambda.cs │ │ ├── Loaders │ │ │ ├── AssemblyContainerLoader.cs │ │ │ ├── FactoryAttributeLoader.cs │ │ │ ├── ImplementsAttributeLoader.cs │ │ │ ├── Loader.cs │ │ │ ├── PostProcessorLoader.cs │ │ │ └── PreprocessorLoader.cs │ │ ├── MethodBuilder.cs │ │ ├── MethodFinderContext.cs │ │ ├── MethodInvoke.cs │ │ ├── NamedType.cs │ │ ├── PropertySetter.cs │ │ ├── RecursiveDependencyException.cs │ │ ├── ReflectionMethodBuilder.cs │ │ ├── Resolvers │ │ │ ├── ArgumentResolver.cs │ │ │ ├── ConstructorArgumentResolver.cs │ │ │ ├── ConstructorResolver.cs │ │ │ ├── MemberResolver.cs │ │ │ ├── MethodFinder.cs │ │ │ └── MethodFinderFromContainer.cs │ │ ├── ServiceInstance.cs │ │ ├── TypeCounter.cs │ │ └── interfaces │ │ │ └── IConstructorArgumentResolver.cs │ ├── ContainerExtensions.cs │ ├── CreatorFromInstance.cs │ ├── DefaultCreator.cs │ ├── DefaultGetServiceBehavior.cs │ ├── Factories │ │ ├── BaseFactory.cs │ │ ├── DelegateFactory.cs │ │ ├── FactoryAdapter.cs │ │ ├── FunctorFactory.cs │ │ ├── FunctorFactoryOfT.cs │ │ ├── InstanceFactory.cs │ │ ├── LazyFactory.cs │ │ ├── LazyFactoryOfT.cs │ │ ├── OncePerRequestFactory.cs │ │ ├── OncePerThreadFactory.cs │ │ └── SingletonFactory.cs │ ├── FactoryExtensions.cs │ ├── FactoryRequest.cs │ ├── FactoryStorage.cs │ ├── FactoryStorageExtensions.cs │ ├── Interceptors │ │ ├── AroundInvokeAdapter.cs │ │ ├── BaseInterceptor.cs │ │ ├── InterceptorAttributeLoader.cs │ │ ├── InterceptsAttribute.cs │ │ ├── InvocationInfoInterceptor.cs │ │ ├── LazyInterceptor.cs │ │ ├── ProxyContainerPlugin.cs │ │ ├── ProxyInjector.cs │ │ └── Redirector.cs │ ├── Interfaces │ │ ├── ICreateInstance.cs │ │ ├── IFactoryOfT.cs │ │ ├── IFactoryStorage.cs │ │ ├── IGetService.cs │ │ ├── IScope.cs │ │ └── IServiceInstance.cs │ ├── LinFu.IoC.csproj │ ├── NamedServiceNotFoundException.cs │ ├── Reflection │ │ └── LateBoundExtensions.cs │ ├── Scope.cs │ ├── ServiceContainer.cs │ ├── ServiceInfo.cs │ ├── ServiceNotFoundException.cs │ ├── ServiceRequest.cs │ └── ServiceRequestResult.cs ├── LinFu.Proxy.Extensions │ ├── LinFu.Proxy.Extensions.csproj │ ├── ObjectExtensions.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LinFu.Proxy.Interfaces │ ├── CallAdapter.cs │ ├── FunctorAsInterceptor.cs │ ├── IExtractInterfaces.cs │ ├── IMethodBodyEmitter.cs │ ├── IMethodBuilder.cs │ ├── IMethodPicker.cs │ ├── IProxy.cs │ ├── IProxyBuilder.cs │ ├── IProxyCache.cs │ ├── IProxyFactory.cs │ ├── IProxyMethodBuilder.cs │ ├── LinFu.Proxy.Interfaces.csproj │ ├── ProxyFactoryExtensions.cs │ └── packages.config ├── LinFu.Proxy │ ├── InterfaceExtractor.cs │ ├── LinFu.Proxy.csproj │ ├── MethodBodyEmitter.cs │ ├── MethodPicker.cs │ ├── ProxyBuilder.cs │ ├── ProxyCache.cs │ ├── ProxyCacheEntry.cs │ ├── ProxyFactory.cs │ ├── ProxyFactoryExtensions.cs │ ├── ProxyImplementor.cs │ ├── ProxyMethodBuilder.cs │ ├── ProxyObjectReference.cs │ ├── SerializableProxyBuilder.cs │ └── packages.config ├── LinFu.Reflection.Emit │ ├── AssemblyDefinitionExtensions.cs │ ├── CilWorkerExtensions.cs │ ├── ILProcessorExtensions.cs │ ├── Interfaces │ │ └── ITypeBuilder.cs │ ├── LinFu.Reflection.Emit.csproj │ ├── MethodDefinitionExtensions.cs │ ├── ModuleDefinitionExtensions.cs │ ├── ParameterDefinitionExtensions.cs │ ├── TypeDefinitionExtensions.cs │ └── packages.config ├── LinFu.Reflection │ ├── AssemblyActionLoader.cs │ ├── AssemblyLoader.cs │ ├── AssemblyTargetLoader.cs │ ├── BasePluginLoader.cs │ ├── CollectionExtensions.cs │ ├── DefaultDirectoryLister.cs │ ├── Interfaces │ │ ├── IActionLoader.cs │ │ ├── IAssemblyLoader.cs │ │ ├── IAssemblyTargetLoader.cs │ │ ├── IDirectoryListing.cs │ │ ├── IInitialize.cs │ │ ├── ILoader.cs │ │ ├── ILoaderPlugin.cs │ │ └── ITypeExtractor.cs │ ├── LinFu.Reflection.csproj │ ├── LinFu.snk │ ├── ListLoader.cs │ ├── Loader.cs │ ├── LoaderPluginAttribute.cs │ ├── PluginLoader.cs │ ├── Plugins │ │ ├── BaseLoaderPlugin.cs │ │ └── BaseTargetLoaderPlugin.cs │ ├── Runtime.cs │ └── TypeExtractor.cs ├── LinFu.sln ├── PostWeaver.ILMerge.MSBuild ├── PostWeaver │ ├── PostWeaver.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── SampleFileWatcherLibrary │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SampleFileWatcherLibrary.csproj │ └── SampleFileWatcherServiceClassAddedAtRuntime.cs ├── SampleLibrary │ ├── AOP │ │ ├── SampleAroundInvoke.cs │ │ ├── SampleAroundInvokeProvider.cs │ │ ├── SampleBootstrapComponent.cs │ │ ├── SampleClassWithByRefMethod.cs │ │ ├── SampleClassWithMethodHavingOutParameters.cs │ │ ├── SampleClassWithNewInstanceCall.cs │ │ ├── SampleClassWithNonVirtualMethod.cs │ │ ├── SampleClassWithReadOnlyField.cs │ │ ├── SampleClassWithThirdPartyMethodCall.cs │ │ ├── SampleInterceptor.cs │ │ ├── SampleMethodReplacement.cs │ │ ├── SampleMethodReplacementProvider.cs │ │ ├── SampleServiceImplementation.cs │ │ ├── SampleStaticClassWithStaticMethod.cs │ │ └── SampleTypeActivator.cs │ ├── FirstOncePerRequestService.cs │ ├── FirstSingletonService.cs │ ├── IInjectionTarget.cs │ ├── IOC │ │ ├── BugFixes │ │ │ ├── IMyService.cs │ │ │ ├── MyClass.cs │ │ │ ├── MyFactory.cs │ │ │ └── MyService.cs │ │ ├── FirstOncePerRequestService.cs │ │ ├── FirstSingletonService.cs │ │ ├── IInjectionTarget.cs │ │ ├── ISampleGenericService.cs │ │ ├── ISampleInterceptedInterface.cs │ │ ├── ISampleService.cs │ │ ├── ISampleServiceOfT.cs │ │ ├── ISampleServiceWithGenericMethods.cs │ │ ├── ISampleWrappedInterface.cs │ │ ├── ITargetHolder.cs │ │ ├── SampleAroundInvokeInterceptorClass.cs │ │ ├── SampleClass.cs │ │ ├── SampleClassWithAdditionalArgument.cs │ │ ├── SampleClassWithArrayPropertyDependency.cs │ │ ├── SampleClassWithFactoryDependency.cs │ │ ├── SampleClassWithGenericMethod.cs │ │ ├── SampleClassWithInjectionField.cs │ │ ├── SampleClassWithInjectionMethod.cs │ │ ├── SampleClassWithInjectionProperties.cs │ │ ├── SampleClassWithMultipleConstructors.cs │ │ ├── SampleClassWithMultipleNonServiceArgumentConstructors.cs │ │ ├── SampleClassWithNamedParameters.cs │ │ ├── SampleClassWithNonServiceArgument.cs │ │ ├── SampleClassWithServiceArrayAsConstructorArgument.cs │ │ ├── SampleClassWithServiceEnumerableAsConstructorArgument.cs │ │ ├── SampleClassWithSingleArgumentConstructor.cs │ │ ├── SampleClassWithUnmarkedInjectionProperties.cs │ │ ├── SampleDuckTypeImplementation.cs │ │ ├── SampleEnum.cs │ │ ├── SampleFactory.cs │ │ ├── SampleFactoryWithConstructorArguments.cs │ │ ├── SampleGenericClassWithOpenGenericImplementation.cs │ │ ├── SampleGenericClassWithSpecificGenericTypeImplementation.cs │ │ ├── SampleGenericImplementation.cs │ │ ├── SampleInterceptorClass.cs │ │ ├── SampleInternalService.cs │ │ ├── SampleLazyService.cs │ │ ├── SampleOpenGenericFactory.cs │ │ ├── SamplePostProcessor.cs │ │ ├── SamplePreprocessor.cs │ │ ├── SampleRecursiveTestComponent1.cs │ │ ├── SampleRecursiveTestComponent2.cs │ │ ├── SampleServiceOfT.cs │ │ ├── SampleStronglyTypedFactory.cs │ │ ├── SampleStronglyTypedFactoryWithNamedService.cs │ │ ├── SecondOncePerRequestService.cs │ │ └── SecondSingletonService.cs │ ├── ISampleGenericService.cs │ ├── ISampleService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Proxy │ │ ├── ClassWithGenericMethod.cs │ │ ├── ClassWithGenericTypeDefinitionReturnType.cs │ │ ├── ClassWithMethodReturnTypeFromGenericTypeArguments.cs │ │ ├── ClassWithMethodReturnValueFromTypeArgument.cs │ │ ├── ClassWithNestedOpenGenericParameters.cs │ │ ├── ClassWithOpenGenericParameters.cs │ │ ├── ClassWithParametersFromGenericMethodTypeArguments.cs │ │ ├── ClassWithParametersFromHostGenericTypeArguments.cs │ │ ├── ClassWithVirtualByRefMethod.cs │ │ ├── ClassWithVirtualMethodWithOutParameter.cs │ │ ├── DerivedClassWithVirtualByRefMethod.cs │ │ ├── SampleClassWithPropertyInitializedInCtor.cs │ │ └── SerializableInterceptor.cs │ ├── SampleClass.cs │ ├── SampleFactory.cs │ ├── SampleGenericImplementation.cs │ ├── SampleLibrary.csproj │ ├── SampleOpenGenericFactory.cs │ ├── SamplePostProcessor.cs │ └── SampleStronglyTypedFactory.cs ├── SampleStronglyNamedLibrary │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SampleHelloClass.cs │ ├── SampleKey.snk │ └── SampleStronglyNamedLibrary.csproj └── UnitTests │ ├── AOP │ ├── BootStrappingTests.cs │ ├── FieldInterceptionTests.cs │ ├── MethodBodyInterceptionTests.cs │ ├── NewOperatorInterceptionTests.cs │ ├── ParameterDefinitionExtensionTests.cs │ └── ThirdPartyMethodCallInterceptionTests.cs │ ├── App.config │ ├── AssemblyInfo.cs │ ├── BaseTestFixture.cs │ ├── EnumerableExtensions.cs │ ├── Finders │ ├── FinderTests.cs │ └── MethodFinderTests.cs │ ├── IOC │ ├── Configuration │ │ ├── AssemblyContainerLoaderTests.cs │ │ ├── ConfigurationTests.cs │ │ ├── InitializerTests.cs │ │ ├── LoaderAttributeTests.cs │ │ ├── NamedOncePerRequestSampleService.cs │ │ ├── NamedOncePerThreadSampleService.cs │ │ ├── NamedSingletonSampleService.cs │ │ ├── OncePerRequestSampleService.cs │ │ ├── OncePerThreadSampleService.cs │ │ └── SingletonSampleService.cs │ ├── Factories │ │ └── FactoryTests.cs │ ├── FactoryStorageTests.cs │ ├── FieldInjectionTests.cs │ ├── FileWatcherTests.cs │ ├── FluentExtensionTests.Implementation.cs │ ├── FluentExtensionTests.cs │ ├── FluentPropertyInjectionTests.cs │ ├── InversionOfControlTests.cs │ ├── MethodInjectionTests.cs │ ├── PropertyInjectionTests.cs │ ├── ResolutionTests.cs │ └── ScopeTests.cs │ ├── Proxy │ ├── InterfaceExtractorTests.cs │ ├── LazyObjectTests.cs │ ├── MockInterceptor.cs │ ├── ProxyFactoryTests.cs │ └── ProxySerializationTests.cs │ ├── Reflection │ ├── BasePEVerifyTestCase.cs │ ├── DuckTypingTests.cs │ ├── LateBindingTests.cs │ └── ReflectionEmitTests.cs │ ├── Tools │ ├── ITest.cs │ └── PEVerifier.cs │ ├── UnitTests.csproj │ └── packages.config └── tools ├── MbUnit ├── MbUnit.Cons.exe ├── MbUnit.Cons.exe.config ├── MbUnit.Framework.dll ├── MbUnit.GUI.exe ├── MbUnit.GUI.exe.config ├── QuickGraph.Algorithms.dll ├── QuickGraph.dll ├── Refly.dll └── TestFu.dll ├── NCover ├── CoverLib.dll ├── Coverage.xsl ├── MSVCP71.dll ├── MSVCP80.dll ├── MSVCR71.dll ├── MSVCR80.dll ├── NCover.Console.exe ├── NCover.Console.exe.config ├── NCover.Framework.dll ├── NCoverFAQ.html └── ncover.exe ├── nant ├── CollectionGen.dll ├── GenerateNAntSchema.build ├── ILMerge.NAnt.Tasks.dll ├── Interop.MsmMergeTypeLib.dll ├── Interop.StarTeam.dll ├── Interop.WindowsInstaller.dll ├── MSITaskErrors.mst ├── MSITaskTemplate.msi ├── MSMTaskErrors.mst ├── MSMTaskTemplate.msm ├── NAnt.CompressionTasks.dll ├── NAnt.CompressionTasks.xml ├── NAnt.Contrib.Tasks.dll ├── NAnt.Contrib.Tasks.xml ├── NAnt.Core.dll ├── NAnt.Core.xml ├── NAnt.DotNetTasks.dll ├── NAnt.DotNetTasks.xml ├── NAnt.MSNetTasks.dll ├── NAnt.MSNetTasks.xml ├── NAnt.NUnit.dll ├── NAnt.NUnit.xml ├── NAnt.NUnit1Tasks.dll ├── NAnt.NUnit1Tasks.xml ├── NAnt.NUnit2Tasks.dll ├── NAnt.NUnit2Tasks.xml ├── NAnt.SourceControlTasks.dll ├── NAnt.SourceControlTasks.xml ├── NAnt.VSNetTasks.dll ├── NAnt.VSNetTasks.xml ├── NAnt.VisualCppTasks.dll ├── NAnt.VisualCppTasks.xml ├── NAnt.Win32Tasks.dll ├── NAnt.Win32Tasks.xml ├── NAnt.exe ├── NAnt.exe.config ├── NAnt.xml ├── NDoc.Documenter.NAnt.dll ├── SLiNgshoT.Core.dll ├── SLiNgshoT.exe ├── SourceSafe.Interop.dll ├── extensions │ └── common │ │ └── 2.0 │ │ ├── NAnt.MSBuild.dll │ │ └── NAnt.MSBuild.xml ├── lib │ ├── ICSharpCode.SharpCvsLib.Console.dll │ ├── ICSharpCode.SharpCvsLib.dll │ ├── ICSharpCode.SharpZipLib.dll │ ├── NUnitCore.dll │ ├── mono │ │ ├── 1.0 │ │ │ ├── NDoc.Core.dll │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.framework.dll │ │ │ └── nunit.util.dll │ │ └── 2.0 │ │ │ ├── NDoc.Core.dll │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.framework.dll │ │ │ └── nunit.util.dll │ └── net │ │ ├── 1.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ │ ├── 1.1 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ │ └── 2.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll ├── license.html ├── log4net.dll └── scvs.exe └── nunit ├── NUnitTests.config ├── NUnitTests.nunit ├── TestResult.xml ├── clr.bat ├── license.html ├── mock-assembly.dll ├── mock-assembly.dll.config ├── nonamespace-assembly.dll ├── notestfixtures-assembly.dll ├── nunit-console-runner.dll ├── nunit-console.exe ├── nunit-console.exe.config ├── nunit-console.tests.dll ├── nunit-gui-runner.dll ├── nunit-gui.exe ├── nunit-gui.exe.config ├── nunit-gui.tests.dll ├── nunit-server.exe ├── nunit-server.tests.dll ├── nunit-test-server.dll ├── nunit.core.dll ├── nunit.core.extensions.dll ├── nunit.extensions.tests.dll ├── nunit.framework.dll ├── nunit.framework.tests.dll ├── nunit.mocks.dll ├── nunit.mocks.tests.dll ├── nunit.uikit.dll ├── nunit.uikit.tests.dll ├── nunit.util.dll ├── nunit.util.tests.dll ├── test-utilities.dll └── timing-tests.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/.gitignore -------------------------------------------------------------------------------- /LinFu.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/LinFu.License.txt -------------------------------------------------------------------------------- /LinFu.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/LinFu.build -------------------------------------------------------------------------------- /LinFu.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/LinFu.snk -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/LinFu.AOP.MethodInterceptionSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/LinFu.AOP.MethodInterceptionSample.csproj -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/Program.cs -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/bin/Debug/LinFu.AOP.MethodInterceptionSample.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/bin/Debug/LinFu.AOP.MethodInterceptionSample.vshost.exe -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/bin/Debug/LinFu.AOP.MethodInterceptionSample.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/bin/Debug/LinFu.AOP.MethodInterceptionSample.vshost.exe.manifest -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Debug/LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Debug/LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Release/LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Release/LinFu.AOP.MethodInterceptionSample.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.MethodInterceptionSample/obj/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.Samples.5.1.ReSharper.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.Samples.5.1.ReSharper.user -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.Samples.sln -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/LinFu.AOP.Samples.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/LinFu.AOP.Samples.suo -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/BankAccount.cs -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/Employee.cs -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/SampleLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/SampleLibrary.csproj -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.dll -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.pdb -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/LinFu.Core.xml -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/SampleLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/SampleLibrary.dll -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/SampleLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/bin/Release/SampleLibrary.pdb -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/obj/Debug/SampleLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/obj/Debug/SampleLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.dll -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/SampleLibrary/obj/Release/SampleLibrary.pdb -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/BuildScriptCache/.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/BuildScriptCache/.crc -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/BuildScriptCache/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/ModuleIds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/ModuleIds.xml -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/NamedArguments/.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/NamedArguments/.crc -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/NamedArguments/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/51951637a634e74c10082f4829f0a650155b9361: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/51951637a634e74c10082f4829f0a650155b9361 -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/52f461740365ec3bf2c8a0b81b63d5d55fb22e72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/52f461740365ec3bf2c8a0b81b63d5d55fb22e72 -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/fa3770c9fcb368bd5538907e4f3eada09a826f09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/PdbInfo/fa3770c9fcb368bd5538907e4f3eada09a826f09 -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/ProjectModel/ProjectModel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/ProjectModel/ProjectModel.dat -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/Resources/.crc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/Resources/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/SymbolCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/SymbolCache.bin -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/TagPrefixes/.crc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/TagPrefixes/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/TodoCache/.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/TodoCache/.crc -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/TodoCache/.version: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/WebsiteFileReferences/.crc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/WebsiteFileReferences/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/WordIndex/.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/WordIndex/.crc -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/_ReSharper.LinFu.AOP.Samples/WordIndex/.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/lib/LinFu.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/lib/LinFu.Core.dll -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/lib/LinFu.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/lib/LinFu.Core.pdb -------------------------------------------------------------------------------- /examples/LinFu.AOP.Samples/lib/LinFu.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/LinFu.AOP.Samples/lib/LinFu.Core.xml -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/Car.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/CarLibrary4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/CarLibrary4.csproj -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/DeadEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/DeadEngine.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/IEngine.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/IPerson.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/IVehicle.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/OldEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/OldEngine.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/Person.cs -------------------------------------------------------------------------------- /examples/ioc/CarLibrary4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/CarLibrary4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/Car.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/CarLibrary3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/CarLibrary3.csproj -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/DeadEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/DeadEngine.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/IEngine.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/IPerson.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/IVehicle.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/Person.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/CarLibrary3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/CarLibrary3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/ConstructorInjectionUsingFluentInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/ConstructorInjectionUsingFluentInterfaces.csproj -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/Program.cs -------------------------------------------------------------------------------- /examples/ioc/ConstructorInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/ConstructorInjection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/Car.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/CarLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/CarLibrary.csproj -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/IEngine.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/IPerson.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/IVehicle.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/CarLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/CarLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/DependencyInjectionSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/DependencyInjectionSample.csproj -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/Program.cs -------------------------------------------------------------------------------- /examples/ioc/DependencyInjectionSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/DependencyInjectionSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/Extensibility/Extensibility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/Extensibility.csproj -------------------------------------------------------------------------------- /examples/ioc/Extensibility/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/Program.cs -------------------------------------------------------------------------------- /examples/ioc/Extensibility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/Extensibility/SamplePlugin/ExamplePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/SamplePlugin/ExamplePlugin.cs -------------------------------------------------------------------------------- /examples/ioc/Extensibility/SamplePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/SamplePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/Extensibility/SamplePlugin/SamplePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/Extensibility/SamplePlugin/SamplePlugin.csproj -------------------------------------------------------------------------------- /examples/ioc/LinFu.IoC.Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/LinFu.IoC.Examples.sln -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/Car.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/CarLibrary2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/CarLibrary2.csproj -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/DeadEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/DeadEngine.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/IEngine.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/IPerson.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/IVehicle.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/Person.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/CarLibrary2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/CarLibrary2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/Program.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionSample/PropertyInjectionSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionSample/PropertyInjectionSample.csproj -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionUsingFluentInterfaces/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionUsingFluentInterfaces/Program.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionUsingFluentInterfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionUsingFluentInterfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/ioc/PropertyInjectionUsingFluentInterfaces/PropertyInjectionUsingFluentInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/PropertyInjectionUsingFluentInterfaces/PropertyInjectionUsingFluentInterfaces.csproj -------------------------------------------------------------------------------- /examples/ioc/bin/LinFu.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/bin/LinFu.Core.dll -------------------------------------------------------------------------------- /examples/ioc/bin/LinFu.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/examples/ioc/bin/LinFu.Core.xml -------------------------------------------------------------------------------- /go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/go.bat -------------------------------------------------------------------------------- /lib/MbUnit.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/MbUnit.Framework.dll -------------------------------------------------------------------------------- /lib/Microsoft.Practices.ServiceLocation.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/Microsoft.Practices.ServiceLocation.XML -------------------------------------------------------------------------------- /lib/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /lib/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /lib/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/Mono.Cecil.dll -------------------------------------------------------------------------------- /lib/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/Moq.dll -------------------------------------------------------------------------------- /lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/AdvancedLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/AdvancedLogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/CommonServiceLocator.LinFuAdapter.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/CommonServiceLocator.LinFuAdapter.Tests.csproj -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/AdvancedLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/AdvancedLogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/ILogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/SimpleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/SimpleLogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/ILogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/LinFuServiceLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/LinFuServiceLocatorTests.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/ServiceLocatorTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/ServiceLocatorTestCase.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/SimpleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/SimpleLogger.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.sln -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/CommonServiceLocator.LinFuAdapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/CommonServiceLocator.LinFuAdapter.csproj -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/LinFuServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/LinFuServiceLocator.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter/app.config -------------------------------------------------------------------------------- /src/CommonServiceLocator/lib/LinqBridge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/lib/LinqBridge.dll -------------------------------------------------------------------------------- /src/CommonServiceLocator/lib/Microsoft.Practices.ServiceLocation.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/lib/Microsoft.Practices.ServiceLocation.XML -------------------------------------------------------------------------------- /src/CommonServiceLocator/lib/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/lib/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/CommonServiceLocator/lib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/lib/Readme.txt -------------------------------------------------------------------------------- /src/CommonServiceLocator/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/CommonServiceLocator/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/ILMerge.MSBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/ILMerge.MSBuild -------------------------------------------------------------------------------- /src/LinFu.AOP.ILMerge.MSBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.ILMerge.MSBuild -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ActivatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ActivatorExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/AroundInvokeMethodCallRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/AroundInvokeMethodCallRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/AroundMethodBodyRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/AroundMethodBodyRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/BaseMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/BaseMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/BootStrapRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/BootStrapRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/BootstrapException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/BootstrapException.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/CallCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/CallCounter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/CompositeAroundInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/CompositeAroundInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/Counter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/CountingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/CountingInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ExceptionHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ExceptionHandlerRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/FieldInterceptionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/FieldInterceptionContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/FieldInterceptorRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/FieldInterceptorRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IActivator.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IActivatorHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IActivatorHost.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IAfterInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IAfterInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IAroundInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IAroundInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IAroundInvokeHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IAroundInvokeHost.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IAroundInvokeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IAroundInvokeProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IBeforeInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IBeforeInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IBootStrappedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IBootStrappedComponent.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ICallCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ICallCounter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IExceptionHandler.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IExceptionHandlerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IExceptionHandlerInfo.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IFieldInterceptionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IFieldInterceptionContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IFieldInterceptionHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IFieldInterceptionHost.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IFieldInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IFieldInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IInvocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IInvocationInfo.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IInvokeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IInvokeWrapper.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IMethodReplacementHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IMethodReplacementHost.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IModifiableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IModifiableType.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IReflectionStructureVisitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IReflectionStructureVisitable.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IReflectionVisitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IReflectionVisitable.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ITypeActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ITypeActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/ITypeActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/ITypeActivator.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/IVisitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/IVisitable.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/LinFu.AOP.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/LinFu.AOP.Interfaces.csproj -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/MethodBodyReplacementProviderRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/MethodBodyReplacementProviderRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/MethodCallReplacementProviderRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/MethodCallReplacementProviderRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/MultithreadedCallCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/MultithreadedCallCounter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/SimpleMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/SimpleMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/SingleThreadedCallCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/SingleThreadedCallCounter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/TypeActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/TypeActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Interfaces/TypeActivatorRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Interfaces/TypeActivatorRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Tasks/LinFu.AOP.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Tasks/LinFu.AOP.Tasks.csproj -------------------------------------------------------------------------------- /src/LinFu.AOP.Tasks/PostWeaveTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Tasks/PostWeaveTask.cs -------------------------------------------------------------------------------- /src/LinFu.AOP.Tasks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP.Tasks/packages.config -------------------------------------------------------------------------------- /src/LinFu.AOP/AssemblyDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/AssemblyDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/BaseMethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/BaseMethodRewriter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/BaseReflectionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/BaseReflectionVisitor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/CatchAllThrownExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/CatchAllThrownExceptions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/AddMethodReplacementImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/AddMethodReplacementImplementation.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/AddOriginalInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/AddOriginalInstructions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/EmitAfterInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/EmitAfterInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/EmitBeforeInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/EmitBeforeInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetAroundInvokeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetAroundInvokeProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetClassMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetClassMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetInterceptionDisabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetInterceptionDisabled.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetSurroundingClassImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetSurroundingClassImplementation.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/GetSurroundingImplementationInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/GetSurroundingImplementationInstance.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/InvokeMethodReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/InvokeMethodReplacement.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/SaveReturnValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/SaveReturnValue.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Emitters/SurroundMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Emitters/SurroundMethodBody.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/ExceptionHandlerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/ExceptionHandlerInfo.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/CecilVisitorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/CecilVisitorExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/ExceptionHandlerInterceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/ExceptionHandlerInterceptionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/FieldInterceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/FieldInterceptionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/InvocationInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/InvocationInfoExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/MethodBodyInterceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/MethodBodyInterceptionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/MethodCallInterceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/MethodCallInterceptionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/MethodDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/MethodDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/MethodRewriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/MethodRewriterExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/NewOperatorInterceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/NewOperatorInterceptionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Extensions/TypeDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Extensions/TypeDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Factories/AddInvocationInfoActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Factories/AddInvocationInfoActionFactory.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Factories/AssemblyWeaverActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Factories/AssemblyWeaverActionFactory.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Factories/TypeWeaverActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Factories/TypeWeaverActionFactory.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/FieldFilterAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/FieldFilterAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/FieldInterception/ImplementFieldInterceptionHostWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/FieldInterception/ImplementFieldInterceptionHostWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/FieldInterception/InterceptFieldAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/FieldInterception/InterceptFieldAccess.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/IgnoredInstancesRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/IgnoredInstancesRegistry.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/ImplementMethodReplacementHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/ImplementMethodReplacementHost.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/ImplementModifiableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/ImplementModifiableType.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/InstructionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/InstructionProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/InstructionSwapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/InstructionSwapper.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IAroundMethodWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IAroundMethodWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IEmitInvocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IEmitInvocationInfo.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IFieldFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IFieldFilter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IHostWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IHostWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IInstructionEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IInstructionEmitter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IInstructionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IInstructionProvider.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodBodyRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodBodyRewriter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodBodyRewriterParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodBodyRewriterParameters.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodCallFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodCallFilter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodFilter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodRewriter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IMethodWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IMethodWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IModuleWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IModuleWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/INewInstanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/INewInstanceFilter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/INewObjectWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/INewObjectWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IPdbLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IPdbLoader.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/ISurroundMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/ISurroundMethodBody.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/ITypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/ITypeFilter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/ITypeWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/ITypeWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IVerifier.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Interfaces/IWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Interfaces/IWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/InvocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/InvocationInfo.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/InvocationInfoEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/InvocationInfoEmitter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/LinFu.AOP.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/LinFu.AOP.Cecil.csproj -------------------------------------------------------------------------------- /src/LinFu.AOP/Loaders/AssemblyLoaderWithPdbSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Loaders/AssemblyLoaderWithPdbSupport.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Loaders/JITWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Loaders/JITWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/Loaders/PdbLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/Loaders/PdbLoader.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodBodyInterception/InterceptAndSurroundMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodBodyInterception/InterceptAndSurroundMethodBody.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodBodyInterception/InterceptMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodBodyInterception/InterceptMethodBody.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodBodyInterception/MethodBodyRewriterParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodBodyInterception/MethodBodyRewriterParameters.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodCallFilterAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodCallFilterAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodCallInterception/InterceptMethodCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodCallInterception/InterceptMethodCalls.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodRewriter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/MethodWeaverVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/MethodWeaverVisitor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/NewInstanceInterceptionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/NewInstanceInterceptionAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/NewOperatorInterception/ImplementActivatorHostWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/NewOperatorInterception/ImplementActivatorHostWeaver.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/NewOperatorInterception/InterceptNewCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/NewOperatorInterception/InterceptNewCalls.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/NewOperatorInterception/RedirectNewInstancesToActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/NewOperatorInterception/RedirectNewInstancesToActivator.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/TypeWeaverVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/TypeWeaverVisitor.cs -------------------------------------------------------------------------------- /src/LinFu.AOP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.AOP/packages.config -------------------------------------------------------------------------------- /src/LinFu.Finders/Criteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/Criteria.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/FinderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/FinderExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/FuzzyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/FuzzyItem.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/Interfaces/CriteriaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/Interfaces/CriteriaType.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/Interfaces/ICriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/Interfaces/ICriteria.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/Interfaces/IFuzzyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/Interfaces/IFuzzyItem.cs -------------------------------------------------------------------------------- /src/LinFu.Finders/LinFu.Finders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/LinFu.Finders.csproj -------------------------------------------------------------------------------- /src/LinFu.Finders/PredicateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Finders/PredicateExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/FactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/FactoryAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IContainer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IFactoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IFactoryRequest.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IInitialize.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IPostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IPostProcessor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IPreprocessor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IServiceContainer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IServiceInfo.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IServiceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IServiceRequest.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/IServiceRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/IServiceRequestResult.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/ImplementsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/ImplementsAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/LifecycleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/LifecycleType.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/LinFu.IoC.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/LinFu.IoC.Common.csproj -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/LinFu.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/LinFu.snk -------------------------------------------------------------------------------- /src/LinFu.IoC.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LinFu.IoC.ILMerge.MSBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC.ILMerge.MSBuild -------------------------------------------------------------------------------- /src/LinFu.IoC/BaseFactoryStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/BaseFactoryStorage.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/CompositePostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/CompositePostProcessor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/CompositePreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/CompositePreProcessor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ActionDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ActionDelegates.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Attributes/InjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Attributes/InjectAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Attributes/PostProcessorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Attributes/PostProcessorAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Attributes/PreprocessorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Attributes/PreprocessorAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/BaseMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/BaseMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/BaseMethodInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/BaseMethodInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ConstructorInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ConstructorInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ConstructorMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ConstructorMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ContainerActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ContainerActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/DefaultActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/DefaultActivator.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Extensions/FluentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Extensions/FluentExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Extensions/ResolutionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Extensions/ResolutionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FactoryBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/ActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/ActionContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/ActionPostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/ActionPostProcessor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/BaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/BaseContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/GenerateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/GenerateFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/InjectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/InjectionContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/PropertyInjectionLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/PropertyInjectionLambda.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/FluentInterfaces/UsingLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/FluentInterfaces/UsingLambda.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/InMemoryAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/InMemoryAssemblyLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Initializer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/InitializerOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/InitializerOfT.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/InitializerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/InitializerPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AttributedFieldInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AttributedFieldInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AttributedMethodInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AttributedMethodInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AttributedPropertyInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AttributedPropertyInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AutoFieldInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AutoFieldInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AutoMemberInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AutoMemberInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AutoMethodInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AutoMethodInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/AutoPropertyInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/AutoPropertyInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/BaseMemberInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/BaseMemberInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/CustomFactoryInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/CustomFactoryInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/NullMemberInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/NullMemberInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Injectors/PropertyInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Injectors/PropertyInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IActivator.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IArgumentResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IArgumentResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IContainerActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IContainerActivationContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IContainerLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IContainerLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IContainerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IContainerPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IFactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IFactoryBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IGenerateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IGenerateFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMemberResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMemberResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodFinder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodFinderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodFinderContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodFinderWithContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodFinderWithContainer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodInjectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodInjectionFilter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IMethodInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IMethodInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/INamedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/INamedType.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IPropertyInjectionLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IPropertyInjectionLambda.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IPropertySetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IPropertySetter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/ITypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/ITypeLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Interfaces/IUsingLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Interfaces/IUsingLambda.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/AssemblyContainerLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/AssemblyContainerLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/FactoryAttributeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/FactoryAttributeLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/ImplementsAttributeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/ImplementsAttributeLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/Loader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/PostProcessorLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/PostProcessorLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Loaders/PreprocessorLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Loaders/PreprocessorLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/MethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/MethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/MethodFinderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/MethodFinderContext.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/MethodInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/MethodInvoke.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/NamedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/NamedType.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/PropertySetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/PropertySetter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/RecursiveDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/RecursiveDependencyException.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ReflectionMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ReflectionMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/ArgumentResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/ArgumentResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/ConstructorArgumentResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/ConstructorArgumentResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/ConstructorResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/ConstructorResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/MemberResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/MemberResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/MethodFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/MethodFinder.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/Resolvers/MethodFinderFromContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/Resolvers/MethodFinderFromContainer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/ServiceInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/ServiceInstance.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/TypeCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/TypeCounter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Configuration/interfaces/IConstructorArgumentResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Configuration/interfaces/IConstructorArgumentResolver.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ContainerExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/CreatorFromInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/CreatorFromInstance.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/DefaultCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/DefaultCreator.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/DefaultGetServiceBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/DefaultGetServiceBehavior.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/BaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/BaseFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/DelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/DelegateFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/FactoryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/FactoryAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/FunctorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/FunctorFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/FunctorFactoryOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/FunctorFactoryOfT.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/InstanceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/InstanceFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/LazyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/LazyFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/LazyFactoryOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/LazyFactoryOfT.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/OncePerRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/OncePerRequestFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/OncePerThreadFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/OncePerThreadFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Factories/SingletonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Factories/SingletonFactory.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/FactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/FactoryExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/FactoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/FactoryRequest.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/FactoryStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/FactoryStorage.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/FactoryStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/FactoryStorageExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/AroundInvokeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/AroundInvokeAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/BaseInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/BaseInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/InterceptorAttributeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/InterceptorAttributeLoader.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/InterceptsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/InterceptsAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/InvocationInfoInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/InvocationInfoInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/LazyInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/LazyInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/ProxyContainerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/ProxyContainerPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/ProxyInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/ProxyInjector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interceptors/Redirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interceptors/Redirector.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/ICreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/ICreateInstance.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/IFactoryOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/IFactoryOfT.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/IFactoryStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/IFactoryStorage.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/IGetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/IGetService.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/IScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/IScope.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Interfaces/IServiceInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Interfaces/IServiceInstance.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/LinFu.IoC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/LinFu.IoC.csproj -------------------------------------------------------------------------------- /src/LinFu.IoC/NamedServiceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/NamedServiceNotFoundException.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Reflection/LateBoundExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Reflection/LateBoundExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/Scope.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ServiceContainer.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ServiceInfo.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ServiceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ServiceNotFoundException.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ServiceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ServiceRequest.cs -------------------------------------------------------------------------------- /src/LinFu.IoC/ServiceRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.IoC/ServiceRequestResult.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Extensions/LinFu.Proxy.Extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Extensions/LinFu.Proxy.Extensions.csproj -------------------------------------------------------------------------------- /src/LinFu.Proxy.Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Extensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Extensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/CallAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/CallAdapter.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/FunctorAsInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/FunctorAsInterceptor.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IExtractInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IExtractInterfaces.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IMethodBodyEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IMethodBodyEmitter.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IMethodPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IMethodPicker.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IProxy.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IProxyBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IProxyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IProxyCache.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IProxyFactory.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/IProxyMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/IProxyMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/LinFu.Proxy.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/LinFu.Proxy.Interfaces.csproj -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/ProxyFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/ProxyFactoryExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy.Interfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy.Interfaces/packages.config -------------------------------------------------------------------------------- /src/LinFu.Proxy/InterfaceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/InterfaceExtractor.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/LinFu.Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/LinFu.Proxy.csproj -------------------------------------------------------------------------------- /src/LinFu.Proxy/MethodBodyEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/MethodBodyEmitter.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/MethodPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/MethodPicker.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyCache.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyCacheEntry.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyFactory.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyFactoryExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyImplementor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyImplementor.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyMethodBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/ProxyObjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/ProxyObjectReference.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/SerializableProxyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/SerializableProxyBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Proxy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Proxy/packages.config -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/AssemblyDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/AssemblyDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/CilWorkerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/CilWorkerExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/ILProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/ILProcessorExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/Interfaces/ITypeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/Interfaces/ITypeBuilder.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/LinFu.Reflection.Emit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/LinFu.Reflection.Emit.csproj -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/MethodDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/MethodDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/ModuleDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/ModuleDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/ParameterDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/ParameterDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/TypeDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/TypeDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection.Emit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection.Emit/packages.config -------------------------------------------------------------------------------- /src/LinFu.Reflection/AssemblyActionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/AssemblyActionLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/AssemblyTargetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/AssemblyTargetLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/BasePluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/BasePluginLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/DefaultDirectoryLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/DefaultDirectoryLister.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/IActionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/IActionLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/IAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/IAssemblyLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/IAssemblyTargetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/IAssemblyTargetLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/IDirectoryListing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/IDirectoryListing.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/IInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/IInitialize.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/ILoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/ILoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/ILoaderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/ILoaderPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Interfaces/ITypeExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Interfaces/ITypeExtractor.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/LinFu.Reflection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/LinFu.Reflection.csproj -------------------------------------------------------------------------------- /src/LinFu.Reflection/LinFu.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/LinFu.snk -------------------------------------------------------------------------------- /src/LinFu.Reflection/ListLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/ListLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Loader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/LoaderPluginAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/LoaderPluginAttribute.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/PluginLoader.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Plugins/BaseLoaderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Plugins/BaseLoaderPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Plugins/BaseTargetLoaderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Plugins/BaseTargetLoaderPlugin.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/Runtime.cs -------------------------------------------------------------------------------- /src/LinFu.Reflection/TypeExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.Reflection/TypeExtractor.cs -------------------------------------------------------------------------------- /src/LinFu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/LinFu.sln -------------------------------------------------------------------------------- /src/PostWeaver.ILMerge.MSBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver.ILMerge.MSBuild -------------------------------------------------------------------------------- /src/PostWeaver/PostWeaver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver/PostWeaver.csproj -------------------------------------------------------------------------------- /src/PostWeaver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver/Program.cs -------------------------------------------------------------------------------- /src/PostWeaver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PostWeaver/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver/app.config -------------------------------------------------------------------------------- /src/PostWeaver/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/PostWeaver/packages.config -------------------------------------------------------------------------------- /src/SampleFileWatcherLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleFileWatcherLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SampleFileWatcherLibrary/SampleFileWatcherLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleFileWatcherLibrary/SampleFileWatcherLibrary.csproj -------------------------------------------------------------------------------- /src/SampleFileWatcherLibrary/SampleFileWatcherServiceClassAddedAtRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleFileWatcherLibrary/SampleFileWatcherServiceClassAddedAtRuntime.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleAroundInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleAroundInvoke.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleAroundInvokeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleAroundInvokeProvider.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleBootstrapComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleBootstrapComponent.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithByRefMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithByRefMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithMethodHavingOutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithMethodHavingOutParameters.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithNewInstanceCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithNewInstanceCall.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithNonVirtualMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithNonVirtualMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithReadOnlyField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithReadOnlyField.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleClassWithThirdPartyMethodCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleClassWithThirdPartyMethodCall.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleInterceptor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleMethodReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleMethodReplacement.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleMethodReplacementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleMethodReplacementProvider.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleServiceImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleServiceImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleStaticClassWithStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleStaticClassWithStaticMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/AOP/SampleTypeActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/AOP/SampleTypeActivator.cs -------------------------------------------------------------------------------- /src/SampleLibrary/FirstOncePerRequestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/FirstOncePerRequestService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/FirstSingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/FirstSingletonService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IInjectionTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IInjectionTarget.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/BugFixes/IMyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/BugFixes/IMyService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/BugFixes/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/BugFixes/MyClass.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/BugFixes/MyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/BugFixes/MyFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/BugFixes/MyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/BugFixes/MyService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/FirstOncePerRequestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/FirstOncePerRequestService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/FirstSingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/FirstSingletonService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/IInjectionTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/IInjectionTarget.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleGenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleGenericService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleInterceptedInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleInterceptedInterface.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleServiceOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleServiceOfT.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleServiceWithGenericMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleServiceWithGenericMethods.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ISampleWrappedInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ISampleWrappedInterface.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/ITargetHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/ITargetHolder.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleAroundInvokeInterceptorClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleAroundInvokeInterceptorClass.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClass.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithAdditionalArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithAdditionalArgument.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithArrayPropertyDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithArrayPropertyDependency.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithFactoryDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithFactoryDependency.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithGenericMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithInjectionField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithInjectionField.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithInjectionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithInjectionMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithInjectionProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithInjectionProperties.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithMultipleConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithMultipleConstructors.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithMultipleNonServiceArgumentConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithMultipleNonServiceArgumentConstructors.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithNamedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithNamedParameters.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithNonServiceArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithNonServiceArgument.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithServiceArrayAsConstructorArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithServiceArrayAsConstructorArgument.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithServiceEnumerableAsConstructorArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithServiceEnumerableAsConstructorArgument.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithSingleArgumentConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithSingleArgumentConstructor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleClassWithUnmarkedInjectionProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleClassWithUnmarkedInjectionProperties.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleDuckTypeImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleDuckTypeImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleEnum.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleFactoryWithConstructorArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleFactoryWithConstructorArguments.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleGenericClassWithOpenGenericImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleGenericClassWithOpenGenericImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleGenericClassWithSpecificGenericTypeImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleGenericClassWithSpecificGenericTypeImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleGenericImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleGenericImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleInterceptorClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleInterceptorClass.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleInternalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleInternalService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleLazyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleLazyService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleOpenGenericFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleOpenGenericFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SamplePostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SamplePostProcessor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SamplePreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SamplePreprocessor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleRecursiveTestComponent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleRecursiveTestComponent1.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleRecursiveTestComponent2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleRecursiveTestComponent2.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleServiceOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleServiceOfT.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleStronglyTypedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleStronglyTypedFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SampleStronglyTypedFactoryWithNamedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SampleStronglyTypedFactoryWithNamedService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SecondOncePerRequestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SecondOncePerRequestService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/IOC/SecondSingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/IOC/SecondSingletonService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/ISampleGenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/ISampleGenericService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/ISampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/ISampleService.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithGenericMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithGenericTypeDefinitionReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithGenericTypeDefinitionReturnType.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithMethodReturnTypeFromGenericTypeArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithMethodReturnTypeFromGenericTypeArguments.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithMethodReturnValueFromTypeArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithMethodReturnValueFromTypeArgument.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithNestedOpenGenericParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithNestedOpenGenericParameters.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithOpenGenericParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithOpenGenericParameters.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithParametersFromGenericMethodTypeArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithParametersFromGenericMethodTypeArguments.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithParametersFromHostGenericTypeArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithParametersFromHostGenericTypeArguments.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithVirtualByRefMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithVirtualByRefMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/ClassWithVirtualMethodWithOutParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/ClassWithVirtualMethodWithOutParameter.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/DerivedClassWithVirtualByRefMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/DerivedClassWithVirtualByRefMethod.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/SampleClassWithPropertyInitializedInCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/SampleClassWithPropertyInitializedInCtor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/Proxy/SerializableInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/Proxy/SerializableInterceptor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleClass.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SampleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SampleGenericImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleGenericImplementation.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SampleLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleLibrary.csproj -------------------------------------------------------------------------------- /src/SampleLibrary/SampleOpenGenericFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleOpenGenericFactory.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SamplePostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SamplePostProcessor.cs -------------------------------------------------------------------------------- /src/SampleLibrary/SampleStronglyTypedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleLibrary/SampleStronglyTypedFactory.cs -------------------------------------------------------------------------------- /src/SampleStronglyNamedLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleStronglyNamedLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SampleStronglyNamedLibrary/SampleHelloClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleStronglyNamedLibrary/SampleHelloClass.cs -------------------------------------------------------------------------------- /src/SampleStronglyNamedLibrary/SampleKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleStronglyNamedLibrary/SampleKey.snk -------------------------------------------------------------------------------- /src/SampleStronglyNamedLibrary/SampleStronglyNamedLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/SampleStronglyNamedLibrary/SampleStronglyNamedLibrary.csproj -------------------------------------------------------------------------------- /src/UnitTests/AOP/BootStrappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/BootStrappingTests.cs -------------------------------------------------------------------------------- /src/UnitTests/AOP/FieldInterceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/FieldInterceptionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/AOP/MethodBodyInterceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/MethodBodyInterceptionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/AOP/NewOperatorInterceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/NewOperatorInterceptionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/AOP/ParameterDefinitionExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/ParameterDefinitionExtensionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/AOP/ThirdPartyMethodCallInterceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AOP/ThirdPartyMethodCallInterceptionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/App.config -------------------------------------------------------------------------------- /src/UnitTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UnitTests/BaseTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/BaseTestFixture.cs -------------------------------------------------------------------------------- /src/UnitTests/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/UnitTests/Finders/FinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Finders/FinderTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Finders/MethodFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Finders/MethodFinderTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/AssemblyContainerLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/AssemblyContainerLoaderTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/ConfigurationTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/InitializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/InitializerTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/LoaderAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/LoaderAttributeTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/NamedOncePerRequestSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/NamedOncePerRequestSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/NamedOncePerThreadSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/NamedOncePerThreadSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/NamedSingletonSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/NamedSingletonSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/OncePerRequestSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/OncePerRequestSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/OncePerThreadSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/OncePerThreadSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Configuration/SingletonSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Configuration/SingletonSampleService.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/Factories/FactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/Factories/FactoryTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FactoryStorageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FactoryStorageTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FieldInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FieldInjectionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FileWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FileWatcherTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FluentExtensionTests.Implementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FluentExtensionTests.Implementation.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FluentExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FluentExtensionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/FluentPropertyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/FluentPropertyInjectionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/InversionOfControlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/InversionOfControlTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/MethodInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/MethodInjectionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/PropertyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/PropertyInjectionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/ResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/ResolutionTests.cs -------------------------------------------------------------------------------- /src/UnitTests/IOC/ScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/IOC/ScopeTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Proxy/InterfaceExtractorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Proxy/InterfaceExtractorTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Proxy/LazyObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Proxy/LazyObjectTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Proxy/MockInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Proxy/MockInterceptor.cs -------------------------------------------------------------------------------- /src/UnitTests/Proxy/ProxyFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Proxy/ProxyFactoryTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Proxy/ProxySerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Proxy/ProxySerializationTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Reflection/BasePEVerifyTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Reflection/BasePEVerifyTestCase.cs -------------------------------------------------------------------------------- /src/UnitTests/Reflection/DuckTypingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Reflection/DuckTypingTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Reflection/LateBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Reflection/LateBindingTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Reflection/ReflectionEmitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Reflection/ReflectionEmitTests.cs -------------------------------------------------------------------------------- /src/UnitTests/Tools/ITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Tools/ITest.cs -------------------------------------------------------------------------------- /src/UnitTests/Tools/PEVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/Tools/PEVerifier.cs -------------------------------------------------------------------------------- /src/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /src/UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/src/UnitTests/packages.config -------------------------------------------------------------------------------- /tools/MbUnit/MbUnit.Cons.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/MbUnit.Cons.exe -------------------------------------------------------------------------------- /tools/MbUnit/MbUnit.Cons.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/MbUnit.Cons.exe.config -------------------------------------------------------------------------------- /tools/MbUnit/MbUnit.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/MbUnit.Framework.dll -------------------------------------------------------------------------------- /tools/MbUnit/MbUnit.GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/MbUnit.GUI.exe -------------------------------------------------------------------------------- /tools/MbUnit/MbUnit.GUI.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/MbUnit.GUI.exe.config -------------------------------------------------------------------------------- /tools/MbUnit/QuickGraph.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/QuickGraph.Algorithms.dll -------------------------------------------------------------------------------- /tools/MbUnit/QuickGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/QuickGraph.dll -------------------------------------------------------------------------------- /tools/MbUnit/Refly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/Refly.dll -------------------------------------------------------------------------------- /tools/MbUnit/TestFu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/MbUnit/TestFu.dll -------------------------------------------------------------------------------- /tools/NCover/CoverLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/CoverLib.dll -------------------------------------------------------------------------------- /tools/NCover/Coverage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/Coverage.xsl -------------------------------------------------------------------------------- /tools/NCover/MSVCP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/MSVCP71.dll -------------------------------------------------------------------------------- /tools/NCover/MSVCP80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/MSVCP80.dll -------------------------------------------------------------------------------- /tools/NCover/MSVCR71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/MSVCR71.dll -------------------------------------------------------------------------------- /tools/NCover/MSVCR80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/MSVCR80.dll -------------------------------------------------------------------------------- /tools/NCover/NCover.Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/NCover.Console.exe -------------------------------------------------------------------------------- /tools/NCover/NCover.Console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/NCover.Console.exe.config -------------------------------------------------------------------------------- /tools/NCover/NCover.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/NCover.Framework.dll -------------------------------------------------------------------------------- /tools/NCover/NCoverFAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/NCoverFAQ.html -------------------------------------------------------------------------------- /tools/NCover/ncover.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/NCover/ncover.exe -------------------------------------------------------------------------------- /tools/nant/CollectionGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/CollectionGen.dll -------------------------------------------------------------------------------- /tools/nant/GenerateNAntSchema.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/GenerateNAntSchema.build -------------------------------------------------------------------------------- /tools/nant/ILMerge.NAnt.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/ILMerge.NAnt.Tasks.dll -------------------------------------------------------------------------------- /tools/nant/Interop.MsmMergeTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/Interop.MsmMergeTypeLib.dll -------------------------------------------------------------------------------- /tools/nant/Interop.StarTeam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/Interop.StarTeam.dll -------------------------------------------------------------------------------- /tools/nant/Interop.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/Interop.WindowsInstaller.dll -------------------------------------------------------------------------------- /tools/nant/MSITaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/MSITaskErrors.mst -------------------------------------------------------------------------------- /tools/nant/MSITaskTemplate.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/MSITaskTemplate.msi -------------------------------------------------------------------------------- /tools/nant/MSMTaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/MSMTaskErrors.mst -------------------------------------------------------------------------------- /tools/nant/MSMTaskTemplate.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/MSMTaskTemplate.msm -------------------------------------------------------------------------------- /tools/nant/NAnt.CompressionTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.CompressionTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.CompressionTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.CompressionTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Contrib.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Contrib.Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Contrib.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Contrib.Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Core.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Core.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.DotNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.DotNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.MSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.MSNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit1Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit1Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit2Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.NUnit2Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.SourceControlTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.SourceControlTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.SourceControlTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.SourceControlTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.VSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.VSNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.VisualCppTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.VisualCppTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.VisualCppTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.VisualCppTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Win32Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.Win32Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.exe -------------------------------------------------------------------------------- /tools/nant/NAnt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.exe.config -------------------------------------------------------------------------------- /tools/nant/NAnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NAnt.xml -------------------------------------------------------------------------------- /tools/nant/NDoc.Documenter.NAnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/NDoc.Documenter.NAnt.dll -------------------------------------------------------------------------------- /tools/nant/SLiNgshoT.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/SLiNgshoT.Core.dll -------------------------------------------------------------------------------- /tools/nant/SLiNgshoT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/SLiNgshoT.exe -------------------------------------------------------------------------------- /tools/nant/SourceSafe.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/SourceSafe.Interop.dll -------------------------------------------------------------------------------- /tools/nant/extensions/common/2.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/extensions/common/2.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /tools/nant/extensions/common/2.0/NAnt.MSBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/extensions/common/2.0/NAnt.MSBuild.xml -------------------------------------------------------------------------------- /tools/nant/lib/ICSharpCode.SharpCvsLib.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/ICSharpCode.SharpCvsLib.Console.dll -------------------------------------------------------------------------------- /tools/nant/lib/ICSharpCode.SharpCvsLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/ICSharpCode.SharpCvsLib.dll -------------------------------------------------------------------------------- /tools/nant/lib/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/nant/lib/NUnitCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/NUnitCore.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/1.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/mono/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/1.1/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/lib/net/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/license.html -------------------------------------------------------------------------------- /tools/nant/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/log4net.dll -------------------------------------------------------------------------------- /tools/nant/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nant/scvs.exe -------------------------------------------------------------------------------- /tools/nunit/NUnitTests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/NUnitTests.config -------------------------------------------------------------------------------- /tools/nunit/NUnitTests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/NUnitTests.nunit -------------------------------------------------------------------------------- /tools/nunit/TestResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/TestResult.xml -------------------------------------------------------------------------------- /tools/nunit/clr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/clr.bat -------------------------------------------------------------------------------- /tools/nunit/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/license.html -------------------------------------------------------------------------------- /tools/nunit/mock-assembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/mock-assembly.dll -------------------------------------------------------------------------------- /tools/nunit/mock-assembly.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/mock-assembly.dll.config -------------------------------------------------------------------------------- /tools/nunit/nonamespace-assembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nonamespace-assembly.dll -------------------------------------------------------------------------------- /tools/nunit/notestfixtures-assembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/notestfixtures-assembly.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-console.exe -------------------------------------------------------------------------------- /tools/nunit/nunit-console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-console.exe.config -------------------------------------------------------------------------------- /tools/nunit/nunit-console.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-console.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-gui-runner.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-gui.exe -------------------------------------------------------------------------------- /tools/nunit/nunit-gui.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-gui.exe.config -------------------------------------------------------------------------------- /tools/nunit/nunit-gui.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-gui.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-server.exe -------------------------------------------------------------------------------- /tools/nunit/nunit-server.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-server.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit-test-server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit-test-server.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.core.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.core.extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.core.extensions.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.extensions.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.extensions.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.framework.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.framework.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.mocks.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.mocks.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.mocks.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.uikit.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.uikit.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.uikit.tests.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.util.dll -------------------------------------------------------------------------------- /tools/nunit/nunit.util.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/nunit.util.tests.dll -------------------------------------------------------------------------------- /tools/nunit/test-utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/test-utilities.dll -------------------------------------------------------------------------------- /tools/nunit/timing-tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philiplaureano/LinFu/HEAD/tools/nunit/timing-tests.dll --------------------------------------------------------------------------------