├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── ci.yml │ ├── dotnet-format.yml │ ├── pre-commit.yml │ └── publish.yml ├── .gitignore ├── .mailmap ├── .markdownlint.json ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── Autofac.sln ├── Autofac.sln.DotSettings ├── Autofac.snk ├── Directory.Build.props ├── LICENSE ├── README.md ├── bench ├── Autofac.BenchmarkProfiling │ ├── Autofac.BenchmarkProfiling.csproj │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json └── Autofac.Benchmarks │ ├── Autofac.Benchmarks.csproj │ ├── BenchmarkConfig.cs │ ├── BenchmarkSet.cs │ ├── ChildScopeResolveBenchmark.cs │ ├── ConcurrencyBenchmark.cs │ ├── ConcurrencyNestedScopeBenchmark.cs │ ├── Decorators │ ├── DecoratorBenchmarkBase.cs │ ├── KeyedGenericBenchmark.cs │ ├── KeyedNestedBenchmark.cs │ ├── KeyedSimpleBenchmark.cs │ ├── KeylessGenericBenchmark.cs │ ├── KeylessNestedBenchmark.cs │ ├── KeylessNestedLambdaBenchmark.cs │ ├── KeylessNestedSharedInstanceBenchmark.cs │ ├── KeylessNestedSharedInstanceLambdaBenchmark.cs │ ├── KeylessSimpleBenchmark.cs │ ├── KeylessSimpleLambdaBenchmark.cs │ ├── KeylessSimpleSharedInstanceBenchmark.cs │ ├── KeylessSimpleSharedInstanceLambdaBenchmark.cs │ └── Scenario │ │ ├── Command.cs │ │ ├── CommandHandlerDecoratorOne.cs │ │ ├── CommandHandlerDecoratorTwo.cs │ │ ├── CommandHandlerOne.cs │ │ ├── CommandHandlerTwo.cs │ │ ├── GenericCommandHandlerDecorator.cs │ │ ├── GenericCommandHandlerOne.cs │ │ ├── GenericCommandHandlerTwo.cs │ │ ├── ICommandHandler.cs │ │ └── ICommandHandler{TCommand}.cs │ ├── DeepGraphResolveBenchmark.cs │ ├── EnumerableResolveBenchmark.cs │ ├── LambdaResolveBenchmark.cs │ ├── MultiConstructorBenchmark.cs │ ├── OpenGenericBenchmark.cs │ ├── Program.cs │ ├── PropertyInjectionBenchmark.cs │ ├── RequiredPropertyBenchmark.cs │ ├── RootContainerResolveBenchmark.cs │ └── xunit.runner.json ├── codecov.yml ├── codegen └── Autofac.CodeGen │ ├── Autofac.CodeGen.csproj │ ├── DelegateRegisterGenerator.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── README.md ├── default.proj ├── global.json ├── src └── Autofac │ ├── Autofac.csproj │ ├── Builder │ ├── BuildCallbackManager.cs │ ├── BuildCallbackService.cs │ ├── BuildCallbackServiceResources.resx │ ├── ConcreteReflectionActivatorData.cs │ ├── ContainerBuildOptions.cs │ ├── DeferredCallback.cs │ ├── DynamicRegistrationStyle.cs │ ├── IConcreteActivatorData.cs │ ├── IHideObjectMembers.cs │ ├── IRegistrationBuilder.cs │ ├── MetadataConfiguration.cs │ ├── MetadataKeys.cs │ ├── ReflectionActivatorData.cs │ ├── RegistrationBuilder.cs │ ├── RegistrationBuilderResources.resx │ ├── RegistrationBuilder{TLimit,TActivatorData,TRegistrationStyle}.cs │ ├── RegistrationData.cs │ ├── RegistrationExtensions.cs │ ├── RegistrationOrderExtensions.cs │ ├── SimpleActivatorData.cs │ ├── SingleRegistrationStyle.cs │ └── StartableManager.cs │ ├── ContainerBuilder.cs │ ├── ContainerBuilderResources.resx │ ├── ContainerExtensions.cs │ ├── Core │ ├── ActivatedEventArgs.cs │ ├── ActivatingEventArgs.cs │ ├── Activators │ │ ├── DefaultPropertySelector.cs │ │ ├── Delegate │ │ │ ├── DelegateActivator.cs │ │ │ └── DelegateActivatorResources.resx │ │ ├── DelegatePropertySelector.cs │ │ ├── IPropertySelector.cs │ │ ├── InstanceActivator.cs │ │ ├── InstanceActivatorResources.resx │ │ ├── ProvidedInstance │ │ │ ├── ProvidedInstanceActivator.cs │ │ │ └── ProvidedInstanceActivatorResources.resx │ │ └── Reflection │ │ │ ├── AutowiringParameter.cs │ │ │ ├── AutowiringPropertyInjector.cs │ │ │ ├── BoundConstructor.cs │ │ │ ├── BoundConstructorResources.resx │ │ │ ├── ConstructorBinder.cs │ │ │ ├── DefaultConstructorFinder.cs │ │ │ ├── DefaultValueParameter.cs │ │ │ ├── IConstructorFinder.cs │ │ │ ├── IConstructorSelector.cs │ │ │ ├── IConstructorSelectorWithEarlyBinding.cs │ │ │ ├── InjectableProperty.cs │ │ │ ├── InjectablePropertyState.cs │ │ │ ├── MatchingSignatureConstructorSelector.cs │ │ │ ├── MatchingSignatureConstructorSelectorResources.resx │ │ │ ├── MostParametersConstructorSelector.cs │ │ │ ├── MostParametersConstructorSelectorResources.resx │ │ │ ├── NoConstructorsFoundException.cs │ │ │ ├── NoConstructorsFoundExceptionResources.resx │ │ │ ├── ReflectionActivator.cs │ │ │ └── ReflectionActivatorResources.resx │ ├── AutoActivateService.cs │ ├── ComponentRegisteredEventArgs.cs │ ├── ComponentRegistrationExtensions.cs │ ├── ConstantParameter.cs │ ├── Container.cs │ ├── ContainerResources.resx │ ├── DependencyResolutionException.cs │ ├── Disposer.cs │ ├── DisposerResources.resx │ ├── IActivatedEventArgs.cs │ ├── IActivatingEventArgs.cs │ ├── IComponentLifetime.cs │ ├── IComponentRegistration.cs │ ├── IComponentRegistry.cs │ ├── IComponentRegistryServices.cs │ ├── IDisposer.cs │ ├── IInstanceActivator.cs │ ├── IModule.cs │ ├── IReflectionCache.cs │ ├── IRegistrationSource.cs │ ├── IServiceWithType.cs │ ├── ISharingLifetimeScope.cs │ ├── ImplicitRegistrationSource.cs │ ├── ImplicitRegistrationSourceResources.resx │ ├── InstanceOwnership.cs │ ├── InstanceSharing.cs │ ├── InternalReflectionCaches.cs │ ├── KeyedService.cs │ ├── Lifetime │ │ ├── CurrentScopeLifetime.cs │ │ ├── LifetimeScope.cs │ │ ├── LifetimeScopeBeginningEventArgs.cs │ │ ├── LifetimeScopeEndingEventArgs.cs │ │ ├── LifetimeScopeResources.resx │ │ ├── MatchingScopeLifetime.cs │ │ ├── MatchingScopeLifetimeResources.resx │ │ ├── MatchingScopeLifetimeTags.cs │ │ └── RootScopeLifetime.cs │ ├── NamedPropertyParameter.cs │ ├── Parameter.cs │ ├── PreparingEventArgs.cs │ ├── ReflectionCacheSet.cs │ ├── ReflectionCacheSetResources.resx │ ├── ReflectionCacheUsage.cs │ ├── Registration │ │ ├── ComponentNotRegisteredException.cs │ │ ├── ComponentNotRegisteredExceptionResources.resx │ │ ├── ComponentPipelineBuildingArgs.cs │ │ ├── ComponentRegistration.cs │ │ ├── ComponentRegistrationExtensions.cs │ │ ├── ComponentRegistrationLifetimeDecorator.cs │ │ ├── ComponentRegistrationResources.resx │ │ ├── ComponentRegistry.cs │ │ ├── ComponentRegistryBuilder.cs │ │ ├── DefaultRegisteredServicesTracker.cs │ │ ├── ExternalComponentRegistration.cs │ │ ├── ExternalRegistryServiceMiddlewareSource.cs │ │ ├── ExternalRegistrySource.cs │ │ ├── IComponentRegistryBuilder.cs │ │ ├── IModuleRegistrar.cs │ │ ├── IPerScopeRegistrationSource.cs │ │ ├── IRegisteredServicesTracker.cs │ │ ├── IServiceMiddlewareSource.cs │ │ ├── IServiceMiddlewareSourceRegistrar.cs │ │ ├── ISourceRegistrar.cs │ │ ├── ModuleRegistrar.cs │ │ ├── ModuleRegistrarData.cs │ │ ├── RegistrationOptions.cs │ │ ├── RegistrationOptionsExtensions.cs │ │ ├── ScopeRestrictedRegisteredServicesTracker.cs │ │ ├── ServiceMiddlewareSourceRegistrar.cs │ │ ├── ServiceRegistrationInfo.cs │ │ ├── ServiceRegistrationInfoResources.resx │ │ ├── ServiceWithTypeMiddlewareSource.cs │ │ └── SourceRegistrar.cs │ ├── RegistrationSourceAddedEventArgs.cs │ ├── ResolvedParameter.cs │ ├── Resolving │ │ ├── ActivatorExtensions.cs │ │ ├── BaseGenericResolveDelegateInvoker.cs │ │ ├── ComponentActivationResources.resx │ │ ├── IDependencyTrackingResolveOperation.cs │ │ ├── IResolveOperation.cs │ │ ├── Middleware │ │ │ ├── ActivatorErrorHandlingMiddleware.cs │ │ │ ├── CircularDependencyDetectorMessages.resx │ │ │ ├── CircularDependencyDetectorMiddleware.cs │ │ │ ├── CoreEventMiddleware.cs │ │ │ ├── DelegateMiddleware.cs │ │ │ ├── DisposalTrackingMiddleware.cs │ │ │ ├── MiddlewareMessages.resx │ │ │ ├── RegistrationPipelineInvokeMiddleware.cs │ │ │ ├── ScopeSelectionMiddleware.cs │ │ │ ├── SharingMiddleware.cs │ │ │ └── StartableMiddleware.cs │ │ ├── Pipeline │ │ │ ├── DefaultResolveRequestContext.cs │ │ │ ├── IResolveMiddleware.cs │ │ │ ├── IResolvePipeline.cs │ │ │ ├── IResolvePipelineBuilder.cs │ │ │ ├── MiddlewareDeclaration.cs │ │ │ ├── MiddlewareInsertionMode.cs │ │ │ ├── PipelineBuilderEnumerator.cs │ │ │ ├── PipelinePhase.cs │ │ │ ├── PipelineType.cs │ │ │ ├── ResolvePipelineBuilder.cs │ │ │ ├── ResolvePipelineBuilderMessages.resx │ │ │ ├── ResolveRequestContext.cs │ │ │ └── ServicePipelines.cs │ │ ├── ResolveEventType.cs │ │ ├── ResolveOperation.cs │ │ ├── ResolveOperationBeginningEventArgs.cs │ │ ├── ResolveOperationEndingEventArgs.cs │ │ ├── ResolveOperationResources.resx │ │ ├── ResolvePipeline.cs │ │ ├── ResolveRequestBeginningEventArgs.cs │ │ ├── ResolveRequestCompletingEventArgs.cs │ │ ├── SegmentedStack.cs │ │ └── SegmentedStackResources.resx │ ├── ScopeIsolatedService.cs │ ├── SelfComponentRegistration.cs │ ├── Service.cs │ ├── ServiceRegistration.cs │ ├── ServiceResources.resx │ ├── TypedService.cs │ └── UniqueService.cs │ ├── Diagnostics │ ├── DefaultDiagnosticTracer.cs │ ├── DiagnosticEventKeys.cs │ ├── DiagnosticSourceExtensions.cs │ ├── DiagnosticTracerBase.cs │ ├── MiddlewareDiagnosticData.cs │ ├── OperationDiagnosticTracerBase.cs │ ├── OperationFailureDiagnosticData.cs │ ├── OperationStartDiagnosticData.cs │ ├── OperationSuccessDiagnosticData.cs │ ├── OperationTraceCompletedArgs.cs │ ├── RequestDiagnosticData.cs │ ├── RequestFailureDiagnosticData.cs │ └── TracerMessages.resx │ ├── Features │ ├── AttributeFilters │ │ ├── KeyFilterAttribute.cs │ │ ├── MetadataFilterAttribute.cs │ │ ├── ParameterFilterAttribute.cs │ │ └── RegistrationExtensions.cs │ ├── Collections │ │ ├── CollectionRegistrationSource.cs │ │ └── CollectionRegistrationSourceResources.resx │ ├── Decorators │ │ ├── DecoratorContext.cs │ │ ├── DecoratorMiddleware.cs │ │ ├── DecoratorService.cs │ │ ├── IDecoratorContext.cs │ │ └── OpenGenericDecoratorMiddlewareSource.cs │ ├── GeneratedFactories │ │ ├── FactoryGenerator.cs │ │ ├── GeneratedFactoryActivatorData.cs │ │ ├── GeneratedFactoryRegistrationExtensions.cs │ │ ├── GeneratedFactoryRegistrationSource.cs │ │ ├── GeneratedFactoryRegistrationSourceResources.resx │ │ └── ParameterMapping.cs │ ├── Indexed │ │ ├── IIndex.cs │ │ └── KeyedServiceIndex.cs │ ├── LazyDependencies │ │ ├── LazyRegistrationSource.cs │ │ ├── LazyRegistrationSourceResources.resx │ │ ├── LazyWithMetadataRegistrationSource.cs │ │ └── LazyWithMetadataRegistrationSourceResources.resx │ ├── LightweightAdapters │ │ ├── LightweightAdapterActivatorData.cs │ │ ├── LightweightAdapterRegistrationExtensions.cs │ │ ├── LightweightAdapterRegistrationSource.cs │ │ └── LightweightAdapterRegistrationSourceResources.resx │ ├── Metadata │ │ ├── MetaRegistrationSource.cs │ │ ├── MetaRegistrationSourceResources.resx │ │ ├── MetadataViewProvider.cs │ │ ├── MetadataViewProviderResources.resx │ │ ├── Meta{T,TMetadata}.cs │ │ ├── Meta{T}.cs │ │ └── StronglyTypedMetaRegistrationSource.cs │ ├── OpenGenerics │ │ ├── OpenGenericDecoratorActivatorData.cs │ │ ├── OpenGenericDecoratorActivatorDataResources.resx │ │ ├── OpenGenericDecoratorRegistrationSource.cs │ │ ├── OpenGenericDecoratorRegistrationSourceResources.resx │ │ ├── OpenGenericDelegateActivatorData.cs │ │ ├── OpenGenericDelegateRegistrationSource.cs │ │ ├── OpenGenericDelegateRegistrationSourceResources.resx │ │ ├── OpenGenericRegistrationExtensions.cs │ │ ├── OpenGenericRegistrationExtensionsResources.resx │ │ ├── OpenGenericRegistrationSource.cs │ │ ├── OpenGenericRegistrationSourceResources.resx │ │ ├── OpenGenericServiceBinder.cs │ │ └── OpenGenericServiceBinderResources.resx │ ├── OwnedInstances │ │ ├── InstancePerOwnedKey.cs │ │ ├── Owned.cs │ │ ├── OwnedInstanceRegistrationSource.cs │ │ └── OwnedInstanceRegistrationSourceResources.resx │ ├── ResolveAnything │ │ ├── AnyConcreteTypeNotAlreadyRegisteredSource.cs │ │ ├── AnyConcreteTypeNotAlreadyRegisteredSourceExtensions.cs │ │ └── AnyConcreteTypeNotAlreadyRegisteredSourceResources.resx │ ├── Scanning │ │ ├── AssemblyExtensions.cs │ │ ├── BaseScanningActivatorData.cs │ │ ├── OpenGenericScanningActivatorData.cs │ │ ├── OpenGenericScanningRegistrationExtensions.cs │ │ ├── ScanningActivatorData.cs │ │ ├── ScanningRegistrationExtensions.cs │ │ └── TypeExtensions.cs │ └── Variance │ │ └── ContravariantRegistrationSource.cs │ ├── IComponentContext.cs │ ├── IContainer.cs │ ├── ILifetimeScope.cs │ ├── IStartable.cs │ ├── Module.cs │ ├── ModuleRegistrationExtensions.cs │ ├── ModuleResources.resx │ ├── NamedParameter.cs │ ├── ParameterExtensions.cs │ ├── PipelineBuilderExtensions.cs │ ├── PositionalParameter.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PropertyWiringOptions.cs │ ├── RegistrationExtensions.Adapter.cs │ ├── RegistrationExtensions.AssemblyScanning.cs │ ├── RegistrationExtensions.Composite.cs │ ├── RegistrationExtensions.Conditional.cs │ ├── RegistrationExtensions.Decorators.cs │ ├── RegistrationExtensions.EventHandler.cs │ ├── RegistrationExtensions.Generics.cs │ ├── RegistrationExtensions.Keyed.cs │ ├── RegistrationExtensions.Named.cs │ ├── RegistrationExtensions.OpenGenericAssemblyScanning.cs │ ├── RegistrationExtensions.cs │ ├── RegistrationExtensionsResources.resx │ ├── ResolutionExtensions.cs │ ├── ResolutionExtensionsResources.resx │ ├── ResolutionValueExtensions.cs │ ├── ResolveRequest.cs │ ├── ScanningFilterExtensions.cs │ ├── ServiceMiddlewareRegistrationExtensions.cs │ ├── SourceRegistrationExtensions.cs │ ├── TypeExtensions.cs │ ├── TypeExtensionsResources.resx │ ├── TypedParameter.cs │ └── Util │ ├── AssemblyExtensions.cs │ ├── AsyncReleaseAction.cs │ ├── Cache │ ├── ReflectionCacheAssemblyDictionary.cs │ ├── ReflectionCacheDictionary.cs │ ├── ReflectionCacheTupleDictionary.cs │ └── TypeAssemblyReferenceProvider.cs │ ├── Disposable.cs │ ├── Enforce.cs │ ├── EnforceResources.resx │ ├── FallbackDictionary.cs │ ├── FallbackDictionaryResources.resx │ ├── InternalTypeExtensions.cs │ ├── LinkerAttributes.cs │ ├── NullableAttributes.cs │ ├── ReflectionExtensions.cs │ ├── ReflectionExtensionsResources.resx │ ├── ReleaseAction.cs │ ├── SequenceExtensions.cs │ ├── SequenceGenerator.cs │ ├── Traverse.cs │ └── ValidatedNotNullAttribute.cs └── test ├── Autofac.Specification.Test ├── Autofac.Specification.Test.csproj ├── ContainerBuilderTests.cs ├── Diagnostics │ ├── DefaultDiagnosticTracerTests.cs │ └── DiagnosticTracerBaseTests.cs ├── Features │ ├── CircularDependency │ │ ├── A.cs │ │ ├── BC.cs │ │ ├── D.cs │ │ ├── DependsByCtor.cs │ │ ├── DependsByProp.cs │ │ ├── IA.cs │ │ ├── IB.cs │ │ ├── IC.cs │ │ └── ID.cs │ ├── CircularDependencyTests.cs │ ├── CompositeTests.cs │ ├── DecoratorTests.cs │ ├── IndexTests.cs │ ├── MetadataTests.cs │ ├── PropertyInjection │ │ ├── CtorWithValueParameter.cs │ │ ├── HasMixedVisibilityProperties.cs │ │ ├── HasProtectedSetterWithDefaultValue.cs │ │ ├── HasPublicSetter.cs │ │ ├── HasPublicSetterDerived.cs │ │ ├── HasPublicSetterWithDefaultValue.cs │ │ ├── HasStaticSetter.cs │ │ ├── HasWriteOnlyProperty.cs │ │ ├── InjectAttribute.cs │ │ └── InjectAttributePropertySelector.cs │ ├── PropertyInjectionTests.cs │ ├── RequiredPropertyTests.cs │ └── StartableTests.cs ├── Lifetime │ ├── AsyncDisposeProvidedInstanceTests.cs │ ├── DisposalTests.cs │ ├── ExternallyOwnedTests.cs │ ├── InstancePerDependencyTests.cs │ ├── InstancePerLifetimeScopeTests.cs │ ├── InstancePerMatchingLifetimeScopeTests.cs │ ├── InstancePerOwnedTests.cs │ ├── LifetimeEventTests.cs │ ├── NestedScopeTests.cs │ ├── ProvidedInstanceTests.cs │ └── SingleInstanceTests.cs ├── LoadContextScopeTests.cs ├── ParameterFilterTests.cs ├── Registration │ ├── Adapters │ │ ├── AnotherCommand.cs │ │ ├── Command.cs │ │ ├── IToolbarButton.cs │ │ └── ToolbarButton.cs │ ├── AssemblyScanningPerformanceTests.cs │ ├── AssemblyScanningTests.cs │ ├── InstanceRegistrationTests.cs │ ├── KeyedRegistrationTests.cs │ ├── LambdaGenericOverloadRegistrationTests.cs │ ├── LambdaRegistrationTests.cs │ ├── ModuleRegistrationTests.cs │ ├── NestedScopeRegistrationTests.cs │ ├── OpenGenericDelegateTests.cs │ ├── OpenGenericTests.cs │ ├── OpenGenericWithMultipleInterfacesTests.cs │ ├── OrderingTests.cs │ ├── ParameterTests.cs │ ├── PropertyDictionaryTests.cs │ ├── RegistrationOnlyIfTests.cs │ └── TypeRegistrationTests.cs ├── Resolution │ ├── ComplexGraphTests.cs │ ├── ConstructorFinderTests.cs │ ├── ConstructorSelectorTests.cs │ └── Graph1 │ │ ├── A1.cs │ │ ├── B1.cs │ │ ├── C1.cs │ │ ├── CD1.cs │ │ ├── E1.cs │ │ ├── F1.cs │ │ ├── GenericConstraints │ │ ├── A.cs │ │ ├── ClassWithParameterlessButNotPublicConstructor.cs │ │ ├── IA.cs │ │ ├── IB.cs │ │ ├── Required.cs │ │ └── Unrelated.cs │ │ ├── IC1.cs │ │ └── ID1.cs └── Util │ ├── AsyncOnlyDisposeTracker.cs │ └── DisposeTracker.cs ├── Autofac.Test.CodeGen ├── Autofac.Test.CodeGen.csproj ├── DelegateRegisterGeneratorTests.cs ├── Helpers │ ├── CompilationVerifier.cs │ └── ModuleInitializer.cs ├── README.md └── Snapshots │ ├── .gitignore │ ├── DelegateRegisterGeneratorTests.VerifyGeneratedCode#00.verified.cs │ └── DelegateRegisterGeneratorTests.VerifyGeneratedCode#01.verified.cs ├── Autofac.Test.Compilation ├── Autofac.Test.Compilation.csproj ├── AutofacCompile.cs ├── BaseClass.cs ├── DerivedClass.cs ├── NullableReferenceTests.cs └── SimpleReferenceType.cs ├── Autofac.Test.Scenarios.LoadContext ├── Autofac.Test.Scenarios.LoadContext.csproj ├── LifetimeScopeEndingModule.cs ├── OnActivatedModule.cs └── Service1.cs ├── Autofac.Test.Scenarios.ScannedAssembly ├── A2Component.cs ├── AComponent.cs ├── ADisposable.cs ├── AModule.cs ├── Autofac.Test.Scenarios.ScannedAssembly.csproj ├── BComponent.cs ├── BModule.cs ├── CloseCommand.cs ├── CommandBase.cs ├── DeleteCommand.cs ├── DeleteCommandData.cs ├── DeleteOpenGenericCommand.cs ├── HasDeferredEnumerable.cs ├── HasNestedFactoryDelegate.cs ├── IAService.cs ├── IBService.cs ├── ICloseCommand.cs ├── ICommand.cs ├── IHaveDeferredEnumerable.cs ├── IOpenGenericAService.cs ├── IOpenGenericBService.cs ├── InternalComponent.cs ├── Message.cs ├── MetadataAttributeScanningScenario │ ├── DuplicatedNameAttribute.cs │ ├── IHaveName.cs │ ├── NameAttribute.cs │ ├── OpenGenericScannedComponentWithMultipleNames.cs │ ├── OpenGenericScannedComponentWithName.cs │ └── ScannedComponentWithName.cs ├── ModuleBase.cs ├── NestedComponent.cs ├── OpenGenericA2Component.cs ├── OpenGenericAComponent.cs ├── Properties │ └── AssemblyInfo.cs ├── RedoCommandData.cs ├── RedoOpenGenericCommand.cs ├── SaveCommand.cs ├── SaveCommandData.cs ├── StringMessage.cs ├── UndoCommandData.cs └── UndoRedoCommand.cs ├── Autofac.Test ├── ActivatorPipelineExtensions.cs ├── Assertions.cs ├── Autofac.Test.csproj ├── Builder │ ├── DeferredCallbackTests.cs │ ├── DelegateRegistrationBuilderTests.cs │ ├── PropertyInjectionTests.cs │ ├── ProvidedInstanceRegistrationBuilderTests.cs │ ├── ReflectiveRegistrationBuilderTests.cs │ └── RegistrationBuilderTests.cs ├── CircularDependencyTests.cs ├── Concurrency │ └── ConcurrencyTests.cs ├── ContainerBuilderTests.cs ├── Core │ ├── Activators │ │ ├── Delegate │ │ │ └── DelegateActivatorTests.cs │ │ ├── ProvidedInstance │ │ │ └── ProvidedInstanceActivatorTests.cs │ │ └── Reflection │ │ │ ├── ConstructorBinderTests.cs │ │ │ ├── DefaultConstructorFinderTests.cs │ │ │ ├── DefaultValueParameterTests.cs │ │ │ ├── MatchingSignatureConstructorSelectorTests.cs │ │ │ ├── MostParametersConstructorSelectorTests.cs │ │ │ ├── RecordTests.cs │ │ │ └── ReflectionActivatorTests.cs │ ├── ComponentRegisteredEventArgsTests.cs │ ├── ComponentRegistrationExtensionsTests.cs │ ├── ComponentRegistrationTests.cs │ ├── ContainerTests.cs │ ├── DefaultPropertySelectorTests.cs │ ├── DelegatePropertySelectorTests.cs │ ├── DependencyResolutionExceptionTests.cs │ ├── DisposerTests.cs │ ├── ImplicitRegistrationSourceTests.cs │ ├── KeyedServiceTests.cs │ ├── Lifetime │ │ ├── LifetimeScopeTests.cs │ │ └── MatchingScopeLifetimeTests.cs │ ├── NamedPropertyParameterTests.cs │ ├── Pipeline │ │ └── PipelineBuilderTests.cs │ ├── PreserveExistingDefaultsTests.cs │ ├── PropertyInjectionInitOnlyTests.cs │ ├── ReflectionCacheSetTests.cs │ ├── Registration │ │ ├── ComponentRegistrationLifetimeDecoratorTests.cs │ │ ├── ComponentRegistryTests.cs │ │ ├── ModuleRegistrarTests.cs │ │ ├── ScopeRestrictedRegisteredServicesTrackerTests.cs │ │ └── SourceRegistrarTests.cs │ ├── ResolvedParameterTests.cs │ ├── Resolving │ │ ├── CircularDependencyDetectorTests.cs │ │ ├── Middleware │ │ │ └── CircularDependencyMiddlewareTests.cs │ │ ├── ResolveOperationTests.cs │ │ └── SegmentedStackTests.cs │ └── TypedServiceTests.cs ├── Diagnostics │ ├── DiagnosticSourceExtensionsTests.cs │ ├── DiagnosticTracerBaseTests.cs │ └── OperationDiagnosticTracerBaseTests.cs ├── Factory.cs ├── Features │ ├── AttributeFilters │ │ └── WithAttributeFilterTestFixture.cs │ ├── Collections │ │ ├── CollectionOrderingTests.cs │ │ └── CollectionRegistrationSourceTests.cs │ ├── Decorators │ │ ├── DecoratorContextTests.cs │ │ ├── DecoratorMiddlewareTests.cs │ │ ├── DecoratorServiceTests.cs │ │ ├── DecoratorTests.cs │ │ ├── OpenGenericDecoratorTests.cs │ │ └── RegistrationExtensionsTests.cs │ ├── GeneratedFactories │ │ └── GeneratedFactoriesTests.cs │ ├── Indexed │ │ └── KeyedServiceIndexTests.cs │ ├── LazyDependencies │ │ ├── LazyRegistrationSourceTests.cs │ │ ├── LazyWithMetadata_WhenMetadataIsSupplied.cs │ │ └── LazyWithMetadata_WhenNoMatchingMetadataIsSupplied.cs │ ├── LightweightAdapters │ │ ├── LightweightAdapterRegistrationExtensionsTests.cs │ │ └── LightweightAdapterRegistrationSourceTests.cs │ ├── Metadata │ │ ├── MetaRegistrationSourceTests.cs │ │ ├── StronglyTypedMeta_WhenMetadataIsSupplied.cs │ │ ├── StronglyTypedMeta_WhenNoMatchingMetadataIsSupplied.cs │ │ └── TestTypes │ │ │ ├── IMyMetaInterface.cs │ │ │ ├── MyMeta.cs │ │ │ ├── MyMetaWithDefault.cs │ │ │ ├── MyMetaWithDictionary.cs │ │ │ ├── MyMetaWithInvalidConstructor.cs │ │ │ └── MyMetaWithReadOnlyProperty.cs │ ├── OpenGenerics │ │ ├── ComplexGenericScenarios │ │ │ ├── CompanyA │ │ │ │ ├── CompositeValidator{T}.cs │ │ │ │ └── IValidator{T}.cs │ │ │ ├── CompanyB │ │ │ │ ├── CompositeValidator{T}.cs │ │ │ │ └── IValidatorSomeOtherName{T}.cs │ │ │ └── FluentValidation │ │ │ │ ├── AbstractValidator{T}.cs │ │ │ │ └── IValidator{T}.cs │ │ ├── ComplexGenericsTests.cs │ │ ├── GenericsForNullableScenarioTests.cs │ │ ├── OpenGenericDecoratorTests.cs │ │ ├── OpenGenericRegistrationExtensionsTests.cs │ │ └── OpenGenericRegistrationSourceTests.cs │ ├── OwnedInstances │ │ ├── InstancePerOwnedKeyTests.cs │ │ ├── OwnedInstanceRegistrationSourceTests.cs │ │ └── OwnedTests.cs │ ├── ResolveAnything │ │ └── ResolveAnythingTests.cs │ ├── Scanning │ │ ├── OpenGenericScanningRegistrationTests.cs │ │ └── ScanningRegistrationTests.cs │ └── Variance │ │ └── ContravariantRegistrationSourceTests.cs ├── Mocks.cs ├── ModuleTests.cs ├── NamedParameterTests.cs ├── ResolutionExtensionsTests.cs ├── Scenarios │ ├── Adapters │ │ ├── AnotherCommand.cs │ │ ├── Command.cs │ │ ├── IToolbarButton.cs │ │ └── ToolbarButton.cs │ ├── ConstructorSelection │ │ └── MultipleConstructors.cs │ ├── Dependencies │ │ ├── Circularity │ │ │ ├── A.cs │ │ │ ├── BC.cs │ │ │ ├── D.cs │ │ │ ├── IA.cs │ │ │ ├── IB.cs │ │ │ ├── IC.cs │ │ │ └── ID.cs │ │ ├── Dependent.cs │ │ ├── DependsByCtor.cs │ │ └── DependsByProp.cs │ ├── Graph1 │ │ ├── A1.cs │ │ ├── B1.cs │ │ ├── C1.cs │ │ ├── CD1.cs │ │ ├── E1.cs │ │ ├── F1.cs │ │ ├── IC1.cs │ │ └── ID1.cs │ ├── Parameterization │ │ └── Parameterized.cs │ ├── RegistrationSources │ │ └── ObjectRegistrationSource.cs │ └── WithProperty │ │ └── WithProps.cs ├── SourceRegistrationExtensionsTests.cs ├── TagsFixture.cs ├── TypeExtensionsTests.cs ├── TypedParameterTests.cs └── Util │ ├── AsyncDisposeTracker.cs │ ├── AsyncOnlyDisposeTracker.cs │ ├── Cache │ ├── ReflectionCacheAssemblyDictionaryTests.cs │ ├── ReflectionCacheDictionaryTests.cs │ ├── ReflectionCacheTupleDictionaryTests.cs │ └── TypeAssemblyReferenceProviderTests.cs │ ├── DelegateExtensionsTests.cs │ ├── DisposeTracker.cs │ ├── EnforceTests.cs │ ├── FallbackDictionaryTests.cs │ ├── InternalTypeExtensionsTests.cs │ └── SequenceGeneratorTests.cs ├── README.md └── Shims └── required ├── .editorconfig ├── CompilerFeatureRequiredAttribute.cs ├── README.md ├── RequiredMemberAttribute.cs └── SetsRequiredMembersAttribute.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/workflows/dotnet-format.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.mailmap -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false 3 | } 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Autofac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/Autofac.sln -------------------------------------------------------------------------------- /Autofac.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/Autofac.sln.DotSettings -------------------------------------------------------------------------------- /Autofac.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/Autofac.snk -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/README.md -------------------------------------------------------------------------------- /bench/Autofac.BenchmarkProfiling/Autofac.BenchmarkProfiling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.BenchmarkProfiling/Autofac.BenchmarkProfiling.csproj -------------------------------------------------------------------------------- /bench/Autofac.BenchmarkProfiling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.BenchmarkProfiling/Program.cs -------------------------------------------------------------------------------- /bench/Autofac.BenchmarkProfiling/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.BenchmarkProfiling/Properties/launchSettings.json -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Autofac.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Autofac.Benchmarks.csproj -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/BenchmarkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/BenchmarkConfig.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/BenchmarkSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/BenchmarkSet.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/ChildScopeResolveBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/ChildScopeResolveBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/ConcurrencyBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/ConcurrencyBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/ConcurrencyNestedScopeBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/ConcurrencyNestedScopeBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/DecoratorBenchmarkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/DecoratorBenchmarkBase.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeyedGenericBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeyedGenericBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeyedNestedBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeyedNestedBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeyedSimpleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeyedSimpleBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessGenericBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessGenericBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessNestedBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessNestedBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessNestedLambdaBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessNestedLambdaBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessNestedSharedInstanceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessNestedSharedInstanceBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessNestedSharedInstanceLambdaBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessNestedSharedInstanceLambdaBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessSimpleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessSimpleBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessSimpleLambdaBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessSimpleLambdaBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessSimpleSharedInstanceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessSimpleSharedInstanceBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/KeylessSimpleSharedInstanceLambdaBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/KeylessSimpleSharedInstanceLambdaBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/Command.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerDecoratorOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerDecoratorOne.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerDecoratorTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerDecoratorTwo.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerOne.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/CommandHandlerTwo.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerOne.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/GenericCommandHandlerTwo.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/ICommandHandler.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Decorators/Scenario/ICommandHandler{TCommand}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Decorators/Scenario/ICommandHandler{TCommand}.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/DeepGraphResolveBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/DeepGraphResolveBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/EnumerableResolveBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/EnumerableResolveBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/LambdaResolveBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/LambdaResolveBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/MultiConstructorBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/MultiConstructorBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/OpenGenericBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/OpenGenericBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/Program.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/PropertyInjectionBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/PropertyInjectionBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/RequiredPropertyBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/RequiredPropertyBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/RootContainerResolveBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/bench/Autofac.Benchmarks/RootContainerResolveBenchmark.cs -------------------------------------------------------------------------------- /bench/Autofac.Benchmarks/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/codecov.yml -------------------------------------------------------------------------------- /codegen/Autofac.CodeGen/Autofac.CodeGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/codegen/Autofac.CodeGen/Autofac.CodeGen.csproj -------------------------------------------------------------------------------- /codegen/Autofac.CodeGen/DelegateRegisterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/codegen/Autofac.CodeGen/DelegateRegisterGenerator.cs -------------------------------------------------------------------------------- /codegen/Autofac.CodeGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/codegen/Autofac.CodeGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /codegen/Autofac.CodeGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/codegen/Autofac.CodeGen/README.md -------------------------------------------------------------------------------- /default.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/default.proj -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/global.json -------------------------------------------------------------------------------- /src/Autofac/Autofac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Autofac.csproj -------------------------------------------------------------------------------- /src/Autofac/Builder/BuildCallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/BuildCallbackManager.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/BuildCallbackService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/BuildCallbackService.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/BuildCallbackServiceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/BuildCallbackServiceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Builder/ConcreteReflectionActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/ConcreteReflectionActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/ContainerBuildOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/ContainerBuildOptions.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/DeferredCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/DeferredCallback.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/DynamicRegistrationStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/DynamicRegistrationStyle.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/IConcreteActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/IConcreteActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/IHideObjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/IHideObjectMembers.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/IRegistrationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/IRegistrationBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/MetadataConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/MetadataConfiguration.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/MetadataKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/MetadataKeys.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/ReflectionActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/ReflectionActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationBuilderResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationBuilderResources.resx -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationBuilder{TLimit,TActivatorData,TRegistrationStyle}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationBuilder{TLimit,TActivatorData,TRegistrationStyle}.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationData.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/RegistrationOrderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/RegistrationOrderExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/SimpleActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/SimpleActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/SingleRegistrationStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/SingleRegistrationStyle.cs -------------------------------------------------------------------------------- /src/Autofac/Builder/StartableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Builder/StartableManager.cs -------------------------------------------------------------------------------- /src/Autofac/ContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ContainerBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/ContainerBuilderResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ContainerBuilderResources.resx -------------------------------------------------------------------------------- /src/Autofac/ContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ContainerExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ActivatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ActivatedEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ActivatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ActivatingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/DefaultPropertySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/DefaultPropertySelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Delegate/DelegateActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Delegate/DelegateActivator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Delegate/DelegateActivatorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Delegate/DelegateActivatorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/DelegatePropertySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/DelegatePropertySelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/IPropertySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/IPropertySelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/InstanceActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/InstanceActivator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/InstanceActivatorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/InstanceActivatorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/ProvidedInstance/ProvidedInstanceActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/ProvidedInstance/ProvidedInstanceActivator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/ProvidedInstance/ProvidedInstanceActivatorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/ProvidedInstance/ProvidedInstanceActivatorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/AutowiringParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/AutowiringParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/AutowiringPropertyInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/AutowiringPropertyInjector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/BoundConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/BoundConstructor.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/BoundConstructorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/BoundConstructorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/ConstructorBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/ConstructorBinder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/DefaultConstructorFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/DefaultConstructorFinder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/DefaultValueParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/DefaultValueParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/IConstructorFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/IConstructorFinder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/IConstructorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/IConstructorSelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/IConstructorSelectorWithEarlyBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/IConstructorSelectorWithEarlyBinding.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/InjectableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/InjectableProperty.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/InjectablePropertyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/InjectablePropertyState.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/MatchingSignatureConstructorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/MatchingSignatureConstructorSelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/MatchingSignatureConstructorSelectorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/MatchingSignatureConstructorSelectorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/MostParametersConstructorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/MostParametersConstructorSelector.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/MostParametersConstructorSelectorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/MostParametersConstructorSelectorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/NoConstructorsFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/NoConstructorsFoundException.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/NoConstructorsFoundExceptionResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/NoConstructorsFoundExceptionResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/ReflectionActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/ReflectionActivator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Activators/Reflection/ReflectionActivatorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Activators/Reflection/ReflectionActivatorResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/AutoActivateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/AutoActivateService.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ComponentRegisteredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ComponentRegisteredEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ComponentRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ComponentRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ConstantParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ConstantParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Container.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ContainerResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ContainerResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/DependencyResolutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/DependencyResolutionException.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Disposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Disposer.cs -------------------------------------------------------------------------------- /src/Autofac/Core/DisposerResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/DisposerResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/IActivatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IActivatedEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IActivatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IActivatingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IComponentLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IComponentLifetime.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IComponentRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IComponentRegistration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IComponentRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IComponentRegistry.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IComponentRegistryServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IComponentRegistryServices.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IDisposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IDisposer.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IInstanceActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IInstanceActivator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IModule.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IReflectionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IReflectionCache.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/IServiceWithType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/IServiceWithType.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ISharingLifetimeScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ISharingLifetimeScope.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ImplicitRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ImplicitRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ImplicitRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ImplicitRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/InstanceOwnership.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/InstanceOwnership.cs -------------------------------------------------------------------------------- /src/Autofac/Core/InstanceSharing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/InstanceSharing.cs -------------------------------------------------------------------------------- /src/Autofac/Core/InternalReflectionCaches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/InternalReflectionCaches.cs -------------------------------------------------------------------------------- /src/Autofac/Core/KeyedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/KeyedService.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/CurrentScopeLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/CurrentScopeLifetime.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/LifetimeScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/LifetimeScope.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/LifetimeScopeBeginningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/LifetimeScopeBeginningEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/LifetimeScopeEndingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/LifetimeScopeEndingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/LifetimeScopeResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/LifetimeScopeResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/MatchingScopeLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/MatchingScopeLifetime.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/MatchingScopeLifetimeResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/MatchingScopeLifetimeResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/MatchingScopeLifetimeTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/MatchingScopeLifetimeTags.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Lifetime/RootScopeLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Lifetime/RootScopeLifetime.cs -------------------------------------------------------------------------------- /src/Autofac/Core/NamedPropertyParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/NamedPropertyParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Parameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/PreparingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/PreparingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ReflectionCacheSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ReflectionCacheSet.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ReflectionCacheSetResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ReflectionCacheSetResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/ReflectionCacheUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ReflectionCacheUsage.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentNotRegisteredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentNotRegisteredException.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentNotRegisteredExceptionResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentNotRegisteredExceptionResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentPipelineBuildingArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentPipelineBuildingArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistrationLifetimeDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistrationLifetimeDecorator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistrationResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistrationResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistry.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ComponentRegistryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ComponentRegistryBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/DefaultRegisteredServicesTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/DefaultRegisteredServicesTracker.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ExternalComponentRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ExternalComponentRegistration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ExternalRegistryServiceMiddlewareSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ExternalRegistryServiceMiddlewareSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ExternalRegistrySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ExternalRegistrySource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IComponentRegistryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IComponentRegistryBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IModuleRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IModuleRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IPerScopeRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IPerScopeRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IRegisteredServicesTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IRegisteredServicesTracker.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IServiceMiddlewareSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IServiceMiddlewareSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/IServiceMiddlewareSourceRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/IServiceMiddlewareSourceRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ISourceRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ISourceRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ModuleRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ModuleRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ModuleRegistrarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ModuleRegistrarData.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/RegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/RegistrationOptions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/RegistrationOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/RegistrationOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ScopeRestrictedRegisteredServicesTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ScopeRestrictedRegisteredServicesTracker.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ServiceMiddlewareSourceRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ServiceMiddlewareSourceRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ServiceRegistrationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ServiceRegistrationInfo.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ServiceRegistrationInfoResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ServiceRegistrationInfoResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/ServiceWithTypeMiddlewareSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/ServiceWithTypeMiddlewareSource.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Registration/SourceRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Registration/SourceRegistrar.cs -------------------------------------------------------------------------------- /src/Autofac/Core/RegistrationSourceAddedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/RegistrationSourceAddedEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ResolvedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ResolvedParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ActivatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ActivatorExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/BaseGenericResolveDelegateInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/BaseGenericResolveDelegateInvoker.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ComponentActivationResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ComponentActivationResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/IDependencyTrackingResolveOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/IDependencyTrackingResolveOperation.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/IResolveOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/IResolveOperation.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/ActivatorErrorHandlingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/ActivatorErrorHandlingMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/CircularDependencyDetectorMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/CircularDependencyDetectorMessages.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/CircularDependencyDetectorMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/CircularDependencyDetectorMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/CoreEventMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/CoreEventMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/DelegateMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/DelegateMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/DisposalTrackingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/DisposalTrackingMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/MiddlewareMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/MiddlewareMessages.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/RegistrationPipelineInvokeMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/RegistrationPipelineInvokeMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/ScopeSelectionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/ScopeSelectionMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/SharingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/SharingMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Middleware/StartableMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Middleware/StartableMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/DefaultResolveRequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/DefaultResolveRequestContext.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/IResolveMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/IResolveMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/IResolvePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/IResolvePipeline.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/IResolvePipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/IResolvePipelineBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/MiddlewareDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/MiddlewareDeclaration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/MiddlewareInsertionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/MiddlewareInsertionMode.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/PipelineBuilderEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/PipelineBuilderEnumerator.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/PipelinePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/PipelinePhase.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/PipelineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/PipelineType.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/ResolvePipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/ResolvePipelineBuilder.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/ResolvePipelineBuilderMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/ResolvePipelineBuilderMessages.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/ResolveRequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/ResolveRequestContext.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/Pipeline/ServicePipelines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/Pipeline/ServicePipelines.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveEventType.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveOperation.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveOperationBeginningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveOperationBeginningEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveOperationEndingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveOperationEndingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveOperationResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveOperationResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolvePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolvePipeline.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveRequestBeginningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveRequestBeginningEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/ResolveRequestCompletingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/ResolveRequestCompletingEventArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/SegmentedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/SegmentedStack.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Resolving/SegmentedStackResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Resolving/SegmentedStackResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/ScopeIsolatedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ScopeIsolatedService.cs -------------------------------------------------------------------------------- /src/Autofac/Core/SelfComponentRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/SelfComponentRegistration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/Service.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ServiceRegistration.cs -------------------------------------------------------------------------------- /src/Autofac/Core/ServiceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/ServiceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Core/TypedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/TypedService.cs -------------------------------------------------------------------------------- /src/Autofac/Core/UniqueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Core/UniqueService.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/DefaultDiagnosticTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/DefaultDiagnosticTracer.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/DiagnosticEventKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/DiagnosticEventKeys.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/DiagnosticSourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/DiagnosticSourceExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/DiagnosticTracerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/DiagnosticTracerBase.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/MiddlewareDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/MiddlewareDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/OperationDiagnosticTracerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/OperationDiagnosticTracerBase.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/OperationFailureDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/OperationFailureDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/OperationStartDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/OperationStartDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/OperationSuccessDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/OperationSuccessDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/OperationTraceCompletedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/OperationTraceCompletedArgs.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/RequestDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/RequestDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/RequestFailureDiagnosticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/RequestFailureDiagnosticData.cs -------------------------------------------------------------------------------- /src/Autofac/Diagnostics/TracerMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Diagnostics/TracerMessages.resx -------------------------------------------------------------------------------- /src/Autofac/Features/AttributeFilters/KeyFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/AttributeFilters/KeyFilterAttribute.cs -------------------------------------------------------------------------------- /src/Autofac/Features/AttributeFilters/MetadataFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/AttributeFilters/MetadataFilterAttribute.cs -------------------------------------------------------------------------------- /src/Autofac/Features/AttributeFilters/ParameterFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/AttributeFilters/ParameterFilterAttribute.cs -------------------------------------------------------------------------------- /src/Autofac/Features/AttributeFilters/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/AttributeFilters/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Collections/CollectionRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Collections/CollectionRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Collections/CollectionRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Collections/CollectionRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/Decorators/DecoratorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Decorators/DecoratorContext.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Decorators/DecoratorMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Decorators/DecoratorMiddleware.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Decorators/DecoratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Decorators/DecoratorService.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Decorators/IDecoratorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Decorators/IDecoratorContext.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Decorators/OpenGenericDecoratorMiddlewareSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Decorators/OpenGenericDecoratorMiddlewareSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/FactoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/FactoryGenerator.cs -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/GeneratedFactoryActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/GeneratedFactoryActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/GeneratedFactoryRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/GeneratedFactories/ParameterMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/GeneratedFactories/ParameterMapping.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Indexed/IIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Indexed/IIndex.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Indexed/KeyedServiceIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Indexed/KeyedServiceIndex.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LazyDependencies/LazyRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LazyDependencies/LazyRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LazyDependencies/LazyRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LazyDependencies/LazyRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/LazyDependencies/LazyWithMetadataRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LazyDependencies/LazyWithMetadataRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LazyDependencies/LazyWithMetadataRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LazyDependencies/LazyWithMetadataRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/LightweightAdapters/LightweightAdapterActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LightweightAdapters/LightweightAdapterActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/LightweightAdapters/LightweightAdapterRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/MetaRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/MetaRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/MetaRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/MetaRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/MetadataViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/MetadataViewProvider.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/MetadataViewProviderResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/MetadataViewProviderResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/Meta{T,TMetadata}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/Meta{T,TMetadata}.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/Meta{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/Meta{T}.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Metadata/StronglyTypedMetaRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Metadata/StronglyTypedMetaRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDecoratorActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDecoratorActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDecoratorActivatorDataResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDecoratorActivatorDataResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDecoratorRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDecoratorRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDecoratorRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDecoratorRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDelegateActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDelegateActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDelegateRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDelegateRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericDelegateRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericDelegateRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericRegistrationExtensionsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericRegistrationExtensionsResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericServiceBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericServiceBinder.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OpenGenerics/OpenGenericServiceBinderResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OpenGenerics/OpenGenericServiceBinderResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/OwnedInstances/InstancePerOwnedKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OwnedInstances/InstancePerOwnedKey.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OwnedInstances/Owned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OwnedInstances/Owned.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OwnedInstances/OwnedInstanceRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OwnedInstances/OwnedInstanceRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/OwnedInstances/OwnedInstanceRegistrationSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/OwnedInstances/OwnedInstanceRegistrationSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSource.cs -------------------------------------------------------------------------------- /src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSourceExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSourceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/ResolveAnything/AnyConcreteTypeNotAlreadyRegisteredSourceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/BaseScanningActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/BaseScanningActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/OpenGenericScanningActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/OpenGenericScanningActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/OpenGenericScanningRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/OpenGenericScanningRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/ScanningActivatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/ScanningActivatorData.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/ScanningRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/ScanningRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Scanning/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Scanning/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Features/Variance/ContravariantRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Features/Variance/ContravariantRegistrationSource.cs -------------------------------------------------------------------------------- /src/Autofac/IComponentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/IComponentContext.cs -------------------------------------------------------------------------------- /src/Autofac/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/IContainer.cs -------------------------------------------------------------------------------- /src/Autofac/ILifetimeScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ILifetimeScope.cs -------------------------------------------------------------------------------- /src/Autofac/IStartable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/IStartable.cs -------------------------------------------------------------------------------- /src/Autofac/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Module.cs -------------------------------------------------------------------------------- /src/Autofac/ModuleRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ModuleRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/ModuleResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ModuleResources.resx -------------------------------------------------------------------------------- /src/Autofac/NamedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/NamedParameter.cs -------------------------------------------------------------------------------- /src/Autofac/ParameterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ParameterExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/PipelineBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/PipelineBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/PositionalParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/PositionalParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Autofac/PropertyWiringOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/PropertyWiringOptions.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Adapter.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.AssemblyScanning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.AssemblyScanning.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Composite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Composite.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Conditional.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Decorators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Decorators.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.EventHandler.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Generics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Generics.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Keyed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Keyed.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.Named.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.Named.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.OpenGenericAssemblyScanning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.OpenGenericAssemblyScanning.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/RegistrationExtensionsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/RegistrationExtensionsResources.resx -------------------------------------------------------------------------------- /src/Autofac/ResolutionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ResolutionExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/ResolutionExtensionsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ResolutionExtensionsResources.resx -------------------------------------------------------------------------------- /src/Autofac/ResolutionValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ResolutionValueExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/ResolveRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ResolveRequest.cs -------------------------------------------------------------------------------- /src/Autofac/ScanningFilterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ScanningFilterExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/ServiceMiddlewareRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/ServiceMiddlewareRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/SourceRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/SourceRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/TypeExtensionsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/TypeExtensionsResources.resx -------------------------------------------------------------------------------- /src/Autofac/TypedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/TypedParameter.cs -------------------------------------------------------------------------------- /src/Autofac/Util/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Util/AsyncReleaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/AsyncReleaseAction.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Cache/ReflectionCacheAssemblyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Cache/ReflectionCacheAssemblyDictionary.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Cache/ReflectionCacheDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Cache/ReflectionCacheDictionary.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Cache/ReflectionCacheTupleDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Cache/ReflectionCacheTupleDictionary.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Cache/TypeAssemblyReferenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Cache/TypeAssemblyReferenceProvider.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Disposable.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Enforce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Enforce.cs -------------------------------------------------------------------------------- /src/Autofac/Util/EnforceResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/EnforceResources.resx -------------------------------------------------------------------------------- /src/Autofac/Util/FallbackDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/FallbackDictionary.cs -------------------------------------------------------------------------------- /src/Autofac/Util/FallbackDictionaryResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/FallbackDictionaryResources.resx -------------------------------------------------------------------------------- /src/Autofac/Util/InternalTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/InternalTypeExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Util/LinkerAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/LinkerAttributes.cs -------------------------------------------------------------------------------- /src/Autofac/Util/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/NullableAttributes.cs -------------------------------------------------------------------------------- /src/Autofac/Util/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Util/ReflectionExtensionsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/ReflectionExtensionsResources.resx -------------------------------------------------------------------------------- /src/Autofac/Util/ReleaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/ReleaseAction.cs -------------------------------------------------------------------------------- /src/Autofac/Util/SequenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/SequenceExtensions.cs -------------------------------------------------------------------------------- /src/Autofac/Util/SequenceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/SequenceGenerator.cs -------------------------------------------------------------------------------- /src/Autofac/Util/Traverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/Traverse.cs -------------------------------------------------------------------------------- /src/Autofac/Util/ValidatedNotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/src/Autofac/Util/ValidatedNotNullAttribute.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Autofac.Specification.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Autofac.Specification.Test.csproj -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/ContainerBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/ContainerBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Diagnostics/DefaultDiagnosticTracerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Diagnostics/DefaultDiagnosticTracerTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Diagnostics/DiagnosticTracerBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Diagnostics/DiagnosticTracerBaseTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/A.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/BC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/BC.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/D.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/DependsByCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/DependsByCtor.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/DependsByProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/DependsByProp.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/IA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/IA.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/IB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/IB.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/IC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/IC.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependency/ID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependency/ID.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CircularDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CircularDependencyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/CompositeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/CompositeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/DecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/DecoratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/IndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/IndexTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/MetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/MetadataTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/CtorWithValueParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/CtorWithValueParameter.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasMixedVisibilityProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasMixedVisibilityProperties.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasProtectedSetterWithDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasProtectedSetterWithDefaultValue.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetter.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetterDerived.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetterDerived.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetterWithDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasPublicSetterWithDefaultValue.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasStaticSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasStaticSetter.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/HasWriteOnlyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/HasWriteOnlyProperty.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/InjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/InjectAttribute.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjection/InjectAttributePropertySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjection/InjectAttributePropertySelector.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/PropertyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/PropertyInjectionTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/RequiredPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/RequiredPropertyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Features/StartableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Features/StartableTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/AsyncDisposeProvidedInstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/AsyncDisposeProvidedInstanceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/DisposalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/DisposalTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/ExternallyOwnedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/ExternallyOwnedTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/InstancePerDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/InstancePerDependencyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/InstancePerLifetimeScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/InstancePerLifetimeScopeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/InstancePerMatchingLifetimeScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/InstancePerMatchingLifetimeScopeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/InstancePerOwnedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/InstancePerOwnedTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/LifetimeEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/LifetimeEventTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/NestedScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/NestedScopeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/ProvidedInstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/ProvidedInstanceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Lifetime/SingleInstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Lifetime/SingleInstanceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/LoadContextScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/LoadContextScopeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/ParameterFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/ParameterFilterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/Adapters/AnotherCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/Adapters/AnotherCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/Adapters/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/Adapters/Command.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/Adapters/IToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/Adapters/IToolbarButton.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/Adapters/ToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/Adapters/ToolbarButton.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/AssemblyScanningPerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/AssemblyScanningPerformanceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/AssemblyScanningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/AssemblyScanningTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/InstanceRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/InstanceRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/KeyedRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/KeyedRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/LambdaGenericOverloadRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/LambdaGenericOverloadRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/LambdaRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/LambdaRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/ModuleRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/ModuleRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/NestedScopeRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/NestedScopeRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/OpenGenericDelegateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/OpenGenericDelegateTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/OpenGenericTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/OpenGenericTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/OpenGenericWithMultipleInterfacesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/OpenGenericWithMultipleInterfacesTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/OrderingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/OrderingTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/ParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/ParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/PropertyDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/PropertyDictionaryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/RegistrationOnlyIfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/RegistrationOnlyIfTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Registration/TypeRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Registration/TypeRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/ComplexGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/ComplexGraphTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/ConstructorFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/ConstructorFinderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/ConstructorSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/ConstructorSelectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/A1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/A1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/B1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/B1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/C1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/C1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/CD1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/CD1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/E1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/E1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/F1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/F1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/A.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/ClassWithParameterlessButNotPublicConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/ClassWithParameterlessButNotPublicConstructor.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/IA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/IA.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/IB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/IB.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/Required.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/Required.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/Unrelated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/GenericConstraints/Unrelated.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/IC1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/IC1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Resolution/Graph1/ID1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Resolution/Graph1/ID1.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Util/AsyncOnlyDisposeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Util/AsyncOnlyDisposeTracker.cs -------------------------------------------------------------------------------- /test/Autofac.Specification.Test/Util/DisposeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Specification.Test/Util/DisposeTracker.cs -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Autofac.Test.CodeGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Autofac.Test.CodeGen.csproj -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/DelegateRegisterGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/DelegateRegisterGeneratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Helpers/CompilationVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Helpers/CompilationVerifier.cs -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Helpers/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Helpers/ModuleInitializer.cs -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/README.md -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Snapshots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Snapshots/.gitignore -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Snapshots/DelegateRegisterGeneratorTests.VerifyGeneratedCode#00.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Snapshots/DelegateRegisterGeneratorTests.VerifyGeneratedCode#00.verified.cs -------------------------------------------------------------------------------- /test/Autofac.Test.CodeGen/Snapshots/DelegateRegisterGeneratorTests.VerifyGeneratedCode#01.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.CodeGen/Snapshots/DelegateRegisterGeneratorTests.VerifyGeneratedCode#01.verified.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/Autofac.Test.Compilation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/Autofac.Test.Compilation.csproj -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/AutofacCompile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/AutofacCompile.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/BaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/BaseClass.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/DerivedClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/DerivedClass.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/NullableReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/NullableReferenceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Compilation/SimpleReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Compilation/SimpleReferenceType.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.LoadContext/Autofac.Test.Scenarios.LoadContext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.LoadContext/Autofac.Test.Scenarios.LoadContext.csproj -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.LoadContext/LifetimeScopeEndingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.LoadContext/LifetimeScopeEndingModule.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.LoadContext/OnActivatedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.LoadContext/OnActivatedModule.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.LoadContext/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.LoadContext/Service1.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/A2Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/A2Component.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/AComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/AComponent.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/ADisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/ADisposable.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/AModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/AModule.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/Autofac.Test.Scenarios.ScannedAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/Autofac.Test.Scenarios.ScannedAssembly.csproj -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/BComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/BComponent.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/BModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/BModule.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/CloseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/CloseCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/CommandBase.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/DeleteCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/DeleteCommandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/DeleteCommandData.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/DeleteOpenGenericCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/DeleteOpenGenericCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/HasDeferredEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/HasDeferredEnumerable.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/HasNestedFactoryDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/HasNestedFactoryDelegate.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/IAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/IAService.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/IBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/IBService.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/ICloseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/ICloseCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/ICommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/IHaveDeferredEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/IHaveDeferredEnumerable.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/IOpenGenericAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/IOpenGenericAService.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/IOpenGenericBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/IOpenGenericBService.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/InternalComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/InternalComponent.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/Message.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/DuplicatedNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/DuplicatedNameAttribute.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/IHaveName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/IHaveName.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/NameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/NameAttribute.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/OpenGenericScannedComponentWithMultipleNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/OpenGenericScannedComponentWithMultipleNames.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/OpenGenericScannedComponentWithName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/OpenGenericScannedComponentWithName.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/ScannedComponentWithName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/MetadataAttributeScanningScenario/ScannedComponentWithName.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/ModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/ModuleBase.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/NestedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/NestedComponent.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/OpenGenericA2Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/OpenGenericA2Component.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/OpenGenericAComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/OpenGenericAComponent.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/RedoCommandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/RedoCommandData.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/RedoOpenGenericCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/RedoOpenGenericCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/SaveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/SaveCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/SaveCommandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/SaveCommandData.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/StringMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/StringMessage.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/UndoCommandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/UndoCommandData.cs -------------------------------------------------------------------------------- /test/Autofac.Test.Scenarios.ScannedAssembly/UndoRedoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test.Scenarios.ScannedAssembly/UndoRedoCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test/ActivatorPipelineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/ActivatorPipelineExtensions.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Assertions.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Autofac.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Autofac.Test.csproj -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/DeferredCallbackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/DeferredCallbackTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/DelegateRegistrationBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/DelegateRegistrationBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/PropertyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/PropertyInjectionTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/ProvidedInstanceRegistrationBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/ProvidedInstanceRegistrationBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/ReflectiveRegistrationBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/ReflectiveRegistrationBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Builder/RegistrationBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Builder/RegistrationBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/CircularDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/CircularDependencyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Concurrency/ConcurrencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Concurrency/ConcurrencyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/ContainerBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/ContainerBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Delegate/DelegateActivatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Delegate/DelegateActivatorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/ProvidedInstance/ProvidedInstanceActivatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/ProvidedInstance/ProvidedInstanceActivatorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/ConstructorBinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/ConstructorBinderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/DefaultConstructorFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/DefaultConstructorFinderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/DefaultValueParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/DefaultValueParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/MatchingSignatureConstructorSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/MatchingSignatureConstructorSelectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/MostParametersConstructorSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/MostParametersConstructorSelectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/RecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/RecordTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Activators/Reflection/ReflectionActivatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Activators/Reflection/ReflectionActivatorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ComponentRegisteredEventArgsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ComponentRegisteredEventArgsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ComponentRegistrationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ComponentRegistrationExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ComponentRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ComponentRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ContainerTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/DefaultPropertySelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/DefaultPropertySelectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/DelegatePropertySelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/DelegatePropertySelectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/DependencyResolutionExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/DependencyResolutionExceptionTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/DisposerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/DisposerTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ImplicitRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ImplicitRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/KeyedServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/KeyedServiceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Lifetime/LifetimeScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Lifetime/LifetimeScopeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Lifetime/MatchingScopeLifetimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Lifetime/MatchingScopeLifetimeTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/NamedPropertyParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/NamedPropertyParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Pipeline/PipelineBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Pipeline/PipelineBuilderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/PreserveExistingDefaultsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/PreserveExistingDefaultsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/PropertyInjectionInitOnlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/PropertyInjectionInitOnlyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ReflectionCacheSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ReflectionCacheSetTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Registration/ComponentRegistrationLifetimeDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Registration/ComponentRegistrationLifetimeDecoratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Registration/ComponentRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Registration/ComponentRegistryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Registration/ModuleRegistrarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Registration/ModuleRegistrarTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Registration/ScopeRestrictedRegisteredServicesTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Registration/ScopeRestrictedRegisteredServicesTrackerTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Registration/SourceRegistrarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Registration/SourceRegistrarTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/ResolvedParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/ResolvedParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Resolving/CircularDependencyDetectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Resolving/CircularDependencyDetectorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Resolving/Middleware/CircularDependencyMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Resolving/Middleware/CircularDependencyMiddlewareTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Resolving/ResolveOperationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Resolving/ResolveOperationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/Resolving/SegmentedStackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/Resolving/SegmentedStackTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Core/TypedServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Core/TypedServiceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Diagnostics/DiagnosticSourceExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Diagnostics/DiagnosticSourceExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Diagnostics/DiagnosticTracerBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Diagnostics/DiagnosticTracerBaseTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Diagnostics/OperationDiagnosticTracerBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Diagnostics/OperationDiagnosticTracerBaseTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Factory.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/AttributeFilters/WithAttributeFilterTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/AttributeFilters/WithAttributeFilterTestFixture.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Collections/CollectionOrderingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Collections/CollectionOrderingTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Collections/CollectionRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Collections/CollectionRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/DecoratorContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/DecoratorContextTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/DecoratorMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/DecoratorMiddlewareTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/DecoratorServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/DecoratorServiceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/DecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/DecoratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/OpenGenericDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/OpenGenericDecoratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Decorators/RegistrationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Decorators/RegistrationExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/GeneratedFactories/GeneratedFactoriesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/GeneratedFactories/GeneratedFactoriesTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Indexed/KeyedServiceIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Indexed/KeyedServiceIndexTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/LazyDependencies/LazyRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/LazyDependencies/LazyRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/LazyDependencies/LazyWithMetadata_WhenMetadataIsSupplied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/LazyDependencies/LazyWithMetadata_WhenMetadataIsSupplied.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/LazyDependencies/LazyWithMetadata_WhenNoMatchingMetadataIsSupplied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/LazyDependencies/LazyWithMetadata_WhenNoMatchingMetadataIsSupplied.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/LightweightAdapters/LightweightAdapterRegistrationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/LightweightAdapters/LightweightAdapterRegistrationExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/LightweightAdapters/LightweightAdapterRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/LightweightAdapters/LightweightAdapterRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/MetaRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/MetaRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/StronglyTypedMeta_WhenMetadataIsSupplied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/StronglyTypedMeta_WhenMetadataIsSupplied.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/StronglyTypedMeta_WhenNoMatchingMetadataIsSupplied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/StronglyTypedMeta_WhenNoMatchingMetadataIsSupplied.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/IMyMetaInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/IMyMetaInterface.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/MyMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/MyMeta.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithDefault.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithDictionary.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithInvalidConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithInvalidConstructor.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithReadOnlyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Metadata/TestTypes/MyMetaWithReadOnlyProperty.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyA/CompositeValidator{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyA/CompositeValidator{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyA/IValidator{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyA/IValidator{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyB/CompositeValidator{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyB/CompositeValidator{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyB/IValidatorSomeOtherName{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/CompanyB/IValidatorSomeOtherName{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/FluentValidation/AbstractValidator{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/FluentValidation/AbstractValidator{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/FluentValidation/IValidator{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericScenarios/FluentValidation/IValidator{T}.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/ComplexGenericsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/ComplexGenericsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/GenericsForNullableScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/GenericsForNullableScenarioTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/OpenGenericDecoratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/OpenGenericDecoratorTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/OpenGenericRegistrationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/OpenGenericRegistrationExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OpenGenerics/OpenGenericRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OpenGenerics/OpenGenericRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OwnedInstances/InstancePerOwnedKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OwnedInstances/InstancePerOwnedKeyTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OwnedInstances/OwnedInstanceRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OwnedInstances/OwnedInstanceRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/OwnedInstances/OwnedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/OwnedInstances/OwnedTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/ResolveAnything/ResolveAnythingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/ResolveAnything/ResolveAnythingTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Scanning/OpenGenericScanningRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Scanning/OpenGenericScanningRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Scanning/ScanningRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Scanning/ScanningRegistrationTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Features/Variance/ContravariantRegistrationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Features/Variance/ContravariantRegistrationSourceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Mocks.cs -------------------------------------------------------------------------------- /test/Autofac.Test/ModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/ModuleTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/NamedParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/NamedParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/ResolutionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/ResolutionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Adapters/AnotherCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Adapters/AnotherCommand.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Adapters/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Adapters/Command.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Adapters/IToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Adapters/IToolbarButton.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Adapters/ToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Adapters/ToolbarButton.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/ConstructorSelection/MultipleConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/ConstructorSelection/MultipleConstructors.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/A.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/BC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/BC.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/D.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/IA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/IA.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/IB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/IB.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/IC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/IC.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Circularity/ID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Circularity/ID.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/Dependent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/Dependent.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/DependsByCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/DependsByCtor.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Dependencies/DependsByProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Dependencies/DependsByProp.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/A1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/A1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/B1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/B1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/C1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/C1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/CD1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/CD1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/E1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/E1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/F1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/F1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/IC1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/IC1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Graph1/ID1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Graph1/ID1.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/Parameterization/Parameterized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/Parameterization/Parameterized.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/RegistrationSources/ObjectRegistrationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/RegistrationSources/ObjectRegistrationSource.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Scenarios/WithProperty/WithProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Scenarios/WithProperty/WithProps.cs -------------------------------------------------------------------------------- /test/Autofac.Test/SourceRegistrationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/SourceRegistrationExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/TagsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/TagsFixture.cs -------------------------------------------------------------------------------- /test/Autofac.Test/TypeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/TypeExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/TypedParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/TypedParameterTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/AsyncDisposeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/AsyncDisposeTracker.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/AsyncOnlyDisposeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/AsyncOnlyDisposeTracker.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/Cache/ReflectionCacheAssemblyDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/Cache/ReflectionCacheAssemblyDictionaryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/Cache/ReflectionCacheDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/Cache/ReflectionCacheDictionaryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/Cache/ReflectionCacheTupleDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/Cache/ReflectionCacheTupleDictionaryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/Cache/TypeAssemblyReferenceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/Cache/TypeAssemblyReferenceProviderTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/DelegateExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/DelegateExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/DisposeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/DisposeTracker.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/EnforceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/EnforceTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/FallbackDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/FallbackDictionaryTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/InternalTypeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/InternalTypeExtensionsTests.cs -------------------------------------------------------------------------------- /test/Autofac.Test/Util/SequenceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Autofac.Test/Util/SequenceGeneratorTests.cs -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Shims/required/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Shims/required/.editorconfig -------------------------------------------------------------------------------- /test/Shims/required/CompilerFeatureRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Shims/required/CompilerFeatureRequiredAttribute.cs -------------------------------------------------------------------------------- /test/Shims/required/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Shims/required/README.md -------------------------------------------------------------------------------- /test/Shims/required/RequiredMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Shims/required/RequiredMemberAttribute.cs -------------------------------------------------------------------------------- /test/Shims/required/SetsRequiredMembersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autofac/Autofac/HEAD/test/Shims/required/SetsRequiredMembersAttribute.cs --------------------------------------------------------------------------------