├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── doxygen.yml │ ├── linter.yml │ └── tests.yml ├── .gitignore ├── Assets ├── Demo.meta ├── Demo │ ├── Graphics.meta │ ├── Graphics │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── Bullet.mat │ │ │ ├── Bullet.mat.meta │ │ │ ├── Ground.mat │ │ │ ├── Ground.mat.meta │ │ │ ├── Player.mat │ │ │ ├── Player.mat.meta │ │ │ ├── Skybox.mat │ │ │ ├── Skybox.mat.meta │ │ │ ├── Turret Gun.mat │ │ │ ├── Turret Gun.mat.meta │ │ │ ├── Turret.mat │ │ │ └── Turret.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Effects.meta │ │ ├── Effects │ │ │ ├── Bullet Destruction Effect.prefab │ │ │ ├── Bullet Destruction Effect.prefab.meta │ │ │ ├── Player Destruction Effect.prefab │ │ │ └── Player Destruction Effect.prefab.meta │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── Turret.prefab │ │ └── Turret.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Bullet Factory Config.asset │ │ └── Bullet Factory Config.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.meta │ │ ├── SampleScene.unity │ │ ├── SampleScene.unity.meta │ │ ├── SampleSceneSettings.lighting │ │ └── SampleSceneSettings.lighting.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Bullets.meta │ │ ├── Bullets │ │ ├── Bullet.cs │ │ ├── Bullet.cs.meta │ │ ├── BulletFactory.cs │ │ ├── BulletFactory.cs.meta │ │ ├── BulletHitTrigger.cs │ │ ├── BulletHitTrigger.cs.meta │ │ ├── ILogger.cs │ │ ├── ILogger.cs.meta │ │ ├── IProjectileFactory.cs │ │ ├── IProjectileFactory.cs.meta │ │ ├── UnityLogger.cs │ │ └── UnityLogger.cs.meta │ │ ├── Damage.meta │ │ ├── Damage │ │ ├── IDestroyable.cs │ │ ├── IDestroyable.cs.meta │ │ ├── IHittable.cs │ │ └── IHittable.cs.meta │ │ ├── Dependencies.meta │ │ ├── Dependencies │ │ ├── BulletFactoryConfig.cs │ │ ├── BulletFactoryConfig.cs.meta │ │ ├── CompositionRoot.cs │ │ └── CompositionRoot.cs.meta │ │ ├── Effects.meta │ │ ├── Effects │ │ ├── DestructionEffect.cs │ │ └── DestructionEffect.cs.meta │ │ ├── InjectablePoco.cs │ │ ├── InjectablePoco.cs.meta │ │ ├── Movement.meta │ │ ├── Movement │ │ ├── IMovement.cs │ │ ├── IMovement.cs.meta │ │ ├── Movement.cs │ │ └── Movement.cs.meta │ │ ├── Player.cs │ │ ├── Player.cs.meta │ │ ├── Shooting.meta │ │ ├── Shooting │ │ ├── IShootFrom.cs │ │ ├── IShootFrom.cs.meta │ │ ├── IShootingTarget.cs │ │ └── IShootingTarget.cs.meta │ │ ├── TestPocoBaking.meta │ │ ├── TestPocoBaking │ │ ├── TestPoco.cs │ │ ├── TestPoco.cs.meta │ │ ├── TestPocoContainer.cs │ │ ├── TestPocoContainer.cs.meta │ │ ├── TestPocoDependant.cs │ │ └── TestPocoDependant.cs.meta │ │ ├── Turrets.meta │ │ ├── Turrets │ │ ├── Turret.cs │ │ ├── Turret.cs.meta │ │ ├── TurretAim.cs │ │ ├── TurretAim.cs.meta │ │ ├── TurretHead.cs │ │ └── TurretHead.cs.meta │ │ ├── TwoConstructorsClass.cs │ │ ├── TwoConstructorsClass.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ ├── PointerControls.cs │ │ ├── PointerControls.cs.meta │ │ ├── RestartSceneButton.cs │ │ └── RestartSceneButton.cs.meta ├── PerformanceTest.meta ├── PerformanceTest │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── With DI.prefab │ │ ├── With DI.prefab.meta │ │ ├── Without DI.prefab │ │ └── Without DI.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── PerformanceTestScene.unity │ │ └── PerformanceTestScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── DI.meta │ │ ├── DI │ │ ├── Dependency1.cs │ │ ├── Dependency1.cs.meta │ │ ├── Dependency2.cs │ │ ├── Dependency2.cs.meta │ │ ├── Dependency3.cs │ │ ├── Dependency3.cs.meta │ │ ├── Dependent1.cs │ │ ├── Dependent1.cs.meta │ │ ├── Dependent12.cs │ │ ├── Dependent12.cs.meta │ │ ├── Dependent123.cs │ │ ├── Dependent123.cs.meta │ │ ├── Dependent13.cs │ │ ├── Dependent13.cs.meta │ │ ├── Dependent2.cs │ │ ├── Dependent2.cs.meta │ │ ├── Dependent3.cs │ │ └── Dependent3.cs.meta │ │ ├── PeriodicSpawner.cs │ │ └── PeriodicSpawner.cs.meta ├── Resources.meta ├── Resources │ ├── DI Settings.asset │ └── DI Settings.asset.meta ├── Scripts.meta ├── Scripts │ ├── DI.meta │ └── DI │ │ ├── Baked.meta │ │ └── Baked │ │ └── .gitkeep ├── TextMesh Pro.meta └── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ ├── TextMesh Pro User Guide 2016.pdf │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ ├── LiberationSans - OFL.txt │ ├── LiberationSans - OFL.txt.meta │ ├── LiberationSans.ttf │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ ├── Fonts & Materials.meta │ ├── Fonts & Materials │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ ├── LiberationSans SDF - Fallback.asset │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ ├── LiberationSans SDF - Outline.mat │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ ├── LiberationSans SDF.asset │ │ └── LiberationSans SDF.asset.meta │ ├── LineBreaking Following Characters.txt │ ├── LineBreaking Following Characters.txt.meta │ ├── LineBreaking Leading Characters.txt │ ├── LineBreaking Leading Characters.txt.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprite Assets.meta │ ├── Sprite Assets │ │ ├── EmojiOne.asset │ │ └── EmojiOne.asset.meta │ ├── Style Sheets.meta │ ├── Style Sheets │ │ ├── Default Style Sheet.asset │ │ └── Default Style Sheet.asset.meta │ ├── TMP Settings.asset │ └── TMP Settings.asset.meta │ ├── Sprites.meta │ └── Sprites │ ├── EmojiOne Attribution.txt │ ├── EmojiOne Attribution.txt.meta │ ├── EmojiOne.json │ ├── EmojiOne.json.meta │ ├── EmojiOne.png │ └── EmojiOne.png.meta ├── DIFramework.Editor.csproj.DotSettings ├── DIFramework.Lifecycle.csproj.DotSettings ├── DIFramework.PerformanceTests.csproj.DotSettings ├── DIFramework.PlayTests.csproj.DotSettings ├── DIFramework.csproj.DotSettings ├── Documentation ├── Doxyfile └── static │ ├── LICENSE │ ├── doxygen-awesome-sidebar-only.css │ ├── doxygen-awesome.css │ ├── favicon.ico │ └── header.html ├── LICENSE.md ├── Macros ├── ctordi.txt └── ctordip.txt ├── Packages ├── com.deltation.di-framework.meta ├── com.deltation.di-framework │ ├── Assets.meta │ ├── Assets │ │ ├── DELTation.meta │ │ ├── DELTation │ │ │ ├── DIFramework.meta │ │ │ └── DIFramework │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── BakeOnBuildPreprocessor.cs │ │ │ │ ├── BakeOnBuildPreprocessor.cs.meta │ │ │ │ ├── Baking.meta │ │ │ │ ├── Baking │ │ │ │ │ ├── InjectionBaker.cs │ │ │ │ │ ├── InjectionBaker.cs.meta │ │ │ │ │ ├── InjectionBakingData.cs │ │ │ │ │ ├── InjectionBakingData.cs.meta │ │ │ │ │ ├── InjectionBakingMenu.cs │ │ │ │ │ ├── InjectionBakingMenu.cs.meta │ │ │ │ │ ├── InjectionBakingTypesUtils.cs │ │ │ │ │ └── InjectionBakingTypesUtils.cs.meta │ │ │ │ ├── ChildrenDependencyContainerCustomEditor.cs │ │ │ │ ├── ChildrenDependencyContainerCustomEditor.cs.meta │ │ │ │ ├── ContainerLifecycleCustomEditor.cs │ │ │ │ ├── ContainerLifecycleCustomEditor.cs.meta │ │ │ │ ├── DIFramework.Editor.asmdef │ │ │ │ ├── DIFramework.Editor.asmdef.meta │ │ │ │ ├── DependencyContainerBaseCustomEditor.cs │ │ │ │ ├── DependencyContainerBaseCustomEditor.cs.meta │ │ │ │ ├── DependencyGraph.meta │ │ │ │ ├── DependencyGraph │ │ │ │ │ ├── DependencyGraphView.cs │ │ │ │ │ ├── DependencyGraphView.cs.meta │ │ │ │ │ ├── DependencyGraphWindow.cs │ │ │ │ │ ├── DependencyGraphWindow.cs.meta │ │ │ │ │ ├── DependencyNode.cs │ │ │ │ │ └── DependencyNode.cs.meta │ │ │ │ ├── DiSettingsCustomEditor.cs │ │ │ │ ├── DiSettingsCustomEditor.cs.meta │ │ │ │ ├── FallbackDependencyContainerCustomEditor.cs │ │ │ │ ├── FallbackDependencyContainerCustomEditor.cs.meta │ │ │ │ ├── GlobalResolverReportGenerator.cs │ │ │ │ ├── GlobalResolverReportGenerator.cs.meta │ │ │ │ ├── Graphics.meta │ │ │ │ ├── Graphics │ │ │ │ │ ├── container.png │ │ │ │ │ ├── container.png.meta │ │ │ │ │ ├── di_settings.png │ │ │ │ │ ├── di_settings.png.meta │ │ │ │ │ ├── ignore_by_container.png │ │ │ │ │ ├── ignore_by_container.png.meta │ │ │ │ │ ├── resolver.png │ │ │ │ │ ├── resolver.png.meta │ │ │ │ │ ├── resolver_warning.png │ │ │ │ │ ├── resolver_warning.png.meta │ │ │ │ │ ├── root_container.png │ │ │ │ │ └── root_container.png.meta │ │ │ │ ├── HierarchyIcons.cs │ │ │ │ ├── HierarchyIcons.cs.meta │ │ │ │ ├── InvalidateCacheOnLoad.cs │ │ │ │ ├── InvalidateCacheOnLoad.cs.meta │ │ │ │ ├── ListDependencyContainerCustomEditor.cs │ │ │ │ ├── ListDependencyContainerCustomEditor.cs.meta │ │ │ │ ├── MenuHelper.cs │ │ │ │ ├── MenuHelper.cs.meta │ │ │ │ ├── MissingResolverWarningIcons.cs │ │ │ │ ├── MissingResolverWarningIcons.cs.meta │ │ │ │ ├── ResolverCustomEditor.cs │ │ │ │ ├── ResolverCustomEditor.cs.meta │ │ │ │ ├── RootContainerCreator.cs │ │ │ │ ├── RootContainerCreator.cs.meta │ │ │ │ ├── RootDependencyContainerCustomEditor.cs │ │ │ │ ├── RootDependencyContainerCustomEditor.cs.meta │ │ │ │ ├── TypeNameExtensions.cs │ │ │ │ └── TypeNameExtensions.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ ├── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── Baking.meta │ │ │ │ ├── Baking │ │ │ │ │ ├── BakedInjection.cs │ │ │ │ │ ├── BakedInjection.cs.meta │ │ │ │ │ ├── InjectionFunction.cs │ │ │ │ │ ├── InjectionFunction.cs.meta │ │ │ │ │ ├── PocoInstantiationFunction.cs │ │ │ │ │ ├── PocoInstantiationFunction.cs.meta │ │ │ │ │ ├── PocoResolutionFunction.cs │ │ │ │ │ ├── PocoResolutionFunction.cs.meta │ │ │ │ │ ├── ResolutionFunction.cs │ │ │ │ │ └── ResolutionFunction.cs.meta │ │ │ │ ├── ContainerBuilder.Registered.cs │ │ │ │ ├── ContainerBuilder.Registered.cs.meta │ │ │ │ ├── ContainerBuilder.cs │ │ │ │ ├── ContainerBuilder.cs.meta │ │ │ │ ├── ContainerBuilderExtensions.cs │ │ │ │ ├── ContainerBuilderExtensions.cs.meta │ │ │ │ ├── ContainerLifecycle.cs │ │ │ │ ├── ContainerLifecycle.cs.meta │ │ │ │ ├── Containers.meta │ │ │ │ ├── Containers │ │ │ │ │ ├── ChildrenDependencyContainer.cs │ │ │ │ │ ├── ChildrenDependencyContainer.cs.meta │ │ │ │ │ ├── ConfigurableDependencyContainer.cs │ │ │ │ │ ├── ConfigurableDependencyContainer.cs.meta │ │ │ │ │ ├── DependencyContainerBase.cs │ │ │ │ │ ├── DependencyContainerBase.cs.meta │ │ │ │ │ ├── FallbackDependencyContainer.cs │ │ │ │ │ ├── FallbackDependencyContainer.cs.meta │ │ │ │ │ ├── IIgnoreByContainer.cs │ │ │ │ │ ├── IIgnoreByContainer.cs.meta │ │ │ │ │ ├── IgnoreByContainer.cs │ │ │ │ │ ├── IgnoreByContainer.cs.meta │ │ │ │ │ ├── ListDependencyContainer.cs │ │ │ │ │ └── ListDependencyContainer.cs.meta │ │ │ │ ├── ContainersExtensions.cs │ │ │ │ ├── ContainersExtensions.cs.meta │ │ │ │ ├── DIFramework.asmdef │ │ │ │ ├── DIFramework.asmdef.meta │ │ │ │ ├── Dependencies.meta │ │ │ │ ├── Dependencies │ │ │ │ │ ├── CompositeDependency.cs │ │ │ │ │ ├── CompositeDependency.cs.meta │ │ │ │ │ ├── DependencyUtils.cs │ │ │ │ │ ├── DependencyUtils.cs.meta │ │ │ │ │ ├── DependencyWithMetadata.cs │ │ │ │ │ ├── DependencyWithMetadata.cs.meta │ │ │ │ │ ├── FactoryMethodDelegateDependency.cs │ │ │ │ │ ├── FactoryMethodDelegateDependency.cs.meta │ │ │ │ │ ├── GlobalDependency.cs │ │ │ │ │ ├── GlobalDependency.cs.meta │ │ │ │ │ ├── IDependency.cs │ │ │ │ │ ├── IDependency.cs.meta │ │ │ │ │ ├── ObjectDependency.cs │ │ │ │ │ ├── ObjectDependency.cs.meta │ │ │ │ │ ├── TypeDependency.cs │ │ │ │ │ └── TypeDependency.cs.meta │ │ │ │ ├── DependencySource.cs │ │ │ │ ├── DependencySource.cs.meta │ │ │ │ ├── DependencySources.cs │ │ │ │ ├── DependencySources.cs.meta │ │ │ │ ├── Di.cs │ │ │ │ ├── Di.cs.meta │ │ │ │ ├── DiSettings.cs │ │ │ │ ├── DiSettings.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── IShowIconInHierarchy.cs │ │ │ │ │ └── IShowIconInHierarchy.cs.meta │ │ │ │ ├── Exceptions.meta │ │ │ │ ├── Exceptions │ │ │ │ │ ├── DependencyAlreadyRegistered.cs │ │ │ │ │ ├── DependencyAlreadyRegistered.cs.meta │ │ │ │ │ ├── DependencyLoopException.cs │ │ │ │ │ ├── DependencyLoopException.cs.meta │ │ │ │ │ ├── DependencyNotRegisteredException.cs │ │ │ │ │ ├── DependencyNotRegisteredException.cs.meta │ │ │ │ │ ├── DependencyNotResolvedException.cs │ │ │ │ │ ├── DependencyNotResolvedException.cs.meta │ │ │ │ │ ├── NotInjectableException.cs │ │ │ │ │ └── NotInjectableException.cs.meta │ │ │ │ ├── FactoryMethod.cs │ │ │ │ ├── FactoryMethod.cs.meta │ │ │ │ ├── FactoryMethodDelegate.cs │ │ │ │ ├── FactoryMethodDelegate.cs.meta │ │ │ │ ├── ICanRegisterContainerBuilder.cs │ │ │ │ ├── ICanRegisterContainerBuilder.cs.meta │ │ │ │ ├── IDependencyContainer.cs │ │ │ │ ├── IDependencyContainer.cs.meta │ │ │ │ ├── IInitializable.cs │ │ │ │ ├── IInitializable.cs.meta │ │ │ │ ├── IResolver.cs │ │ │ │ ├── IResolver.cs.meta │ │ │ │ ├── Lifecycle.meta │ │ │ │ ├── Lifecycle │ │ │ │ │ ├── DIFramework.Lifecycle.asmdef │ │ │ │ │ ├── DIFramework.Lifecycle.asmdef.meta │ │ │ │ │ ├── IDestroyable.cs │ │ │ │ │ ├── IDestroyable.cs.meta │ │ │ │ │ ├── IFixedUpdatable.cs │ │ │ │ │ ├── IFixedUpdatable.cs.meta │ │ │ │ │ ├── ILateUpdatable.cs │ │ │ │ │ ├── ILateUpdatable.cs.meta │ │ │ │ │ ├── IStartable.cs │ │ │ │ │ ├── IStartable.cs.meta │ │ │ │ │ ├── IUpdatable.cs │ │ │ │ │ └── IUpdatable.cs.meta │ │ │ │ ├── Pooling.meta │ │ │ │ ├── Pooling │ │ │ │ │ ├── ListPool.cs │ │ │ │ │ └── ListPool.cs.meta │ │ │ │ ├── Reporting.meta │ │ │ │ ├── Reporting │ │ │ │ │ ├── ComponentResolutionData.cs │ │ │ │ │ ├── ComponentResolutionData.cs.meta │ │ │ │ │ ├── ResolverReport.cs │ │ │ │ │ └── ResolverReport.cs.meta │ │ │ │ ├── Resolution.meta │ │ │ │ ├── Resolution │ │ │ │ │ ├── CachedComponentResolver.cs │ │ │ │ │ ├── CachedComponentResolver.cs.meta │ │ │ │ │ ├── Injection.cs │ │ │ │ │ ├── Injection.cs.meta │ │ │ │ │ ├── PocoInjection.cs │ │ │ │ │ ├── PocoInjection.cs.meta │ │ │ │ │ ├── ResolutionBySource.cs │ │ │ │ │ ├── ResolutionBySource.cs.meta │ │ │ │ │ ├── ResolutionContext.cs │ │ │ │ │ ├── ResolutionContext.cs.meta │ │ │ │ │ ├── ResolverPool.cs │ │ │ │ │ └── ResolverPool.cs.meta │ │ │ │ ├── Resolver.cs │ │ │ │ ├── Resolver.cs.meta │ │ │ │ ├── RootDependencyContainer.cs │ │ │ │ ├── RootDependencyContainer.cs.meta │ │ │ │ ├── Sorting.meta │ │ │ │ ├── Sorting │ │ │ │ │ ├── TopologicalSorting.cs │ │ │ │ │ └── TopologicalSorting.cs.meta │ │ │ │ ├── TypedCache.cs │ │ │ │ ├── TypedCache.cs.meta │ │ │ │ ├── UnityUtils.cs │ │ │ │ └── UnityUtils.cs.meta │ │ │ │ ├── Tests.meta │ │ │ │ └── Tests │ │ │ │ ├── Performance.meta │ │ │ │ ├── Performance │ │ │ │ ├── CustomContainerPerformanceTest.cs │ │ │ │ ├── CustomContainerPerformanceTest.cs.meta │ │ │ │ ├── DIFramework.PerformanceTests.asmdef │ │ │ │ ├── DIFramework.PerformanceTests.asmdef.meta │ │ │ │ ├── ResolverPerformanceTest.cs │ │ │ │ └── ResolverPerformanceTest.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── ChildrenDependencyContainerTests.cs │ │ │ │ ├── ChildrenDependencyContainerTests.cs.meta │ │ │ │ ├── Components.meta │ │ │ │ ├── Components │ │ │ │ ├── Benchmark.meta │ │ │ │ ├── Benchmark │ │ │ │ │ ├── Components.cs │ │ │ │ │ └── Components.cs.meta │ │ │ │ ├── Child.cs │ │ │ │ ├── Child.cs.meta │ │ │ │ ├── ComponentsWithSeveralConstructors.cs │ │ │ │ ├── ComponentsWithSeveralConstructors.cs.meta │ │ │ │ ├── ConstructChecker.cs │ │ │ │ ├── ConstructChecker.cs.meta │ │ │ │ ├── DefaultExecutionOrderScript.cs │ │ │ │ ├── DefaultExecutionOrderScript.cs.meta │ │ │ │ ├── Ignored.cs │ │ │ │ ├── Ignored.cs.meta │ │ │ │ ├── InterfaceDependencyComponent.cs │ │ │ │ ├── InterfaceDependencyComponent.cs.meta │ │ │ │ ├── LoopComponent1.cs │ │ │ │ ├── LoopComponent1.cs.meta │ │ │ │ ├── LoopComponent2.cs │ │ │ │ ├── LoopComponent2.cs.meta │ │ │ │ ├── Parent.cs │ │ │ │ ├── Parent.cs.meta │ │ │ │ ├── ParentDependencyComponent.cs │ │ │ │ ├── ParentDependencyComponent.cs.meta │ │ │ │ ├── ResolutionCounter.cs │ │ │ │ ├── ResolutionCounter.cs.meta │ │ │ │ ├── RigidbodyComponent.cs │ │ │ │ ├── RigidbodyComponent.cs.meta │ │ │ │ ├── StringDependencyComponent.cs │ │ │ │ └── StringDependencyComponent.cs.meta │ │ │ │ ├── ContainerBuilderExtensionsTests.cs │ │ │ │ ├── ContainerBuilderExtensionsTests.cs.meta │ │ │ │ ├── ContainerLifecycleTests.cs │ │ │ │ ├── ContainerLifecycleTests.cs.meta │ │ │ │ ├── Containers.meta │ │ │ │ ├── Containers │ │ │ │ ├── CtorInjectionContainer.cs │ │ │ │ ├── CtorInjectionContainer.cs.meta │ │ │ │ ├── CustomContainer.cs │ │ │ │ └── CustomContainer.cs.meta │ │ │ │ ├── CustomDependencyContainerTests.cs │ │ │ │ ├── CustomDependencyContainerTests.cs.meta │ │ │ │ ├── DIFramework.Tests.asmdef │ │ │ │ ├── DIFramework.Tests.asmdef.meta │ │ │ │ ├── DependencyResolutionTests.cs │ │ │ │ ├── DependencyResolutionTests.cs.meta │ │ │ │ ├── DependencyTests.cs │ │ │ │ ├── DependencyTests.cs.meta │ │ │ │ ├── DependencyUtilsTests.cs │ │ │ │ ├── DependencyUtilsTests.cs.meta │ │ │ │ ├── DiTests.cs │ │ │ │ ├── DiTests.cs.meta │ │ │ │ ├── FactoryMethodDelegateTests.cs │ │ │ │ ├── FactoryMethodDelegateTests.cs.meta │ │ │ │ ├── FallbackDependencyContainerTests.cs │ │ │ │ ├── FallbackDependencyContainerTests.cs.meta │ │ │ │ ├── InjectionTests.cs │ │ │ │ ├── InjectionTests.cs.meta │ │ │ │ ├── InternalDependencyTests.cs │ │ │ │ ├── InternalDependencyTests.cs.meta │ │ │ │ ├── ListDependencyContainerTests.cs │ │ │ │ ├── ListDependencyContainerTests.cs.meta │ │ │ │ ├── MultipleRootContainersTests.cs │ │ │ │ ├── MultipleRootContainersTests.cs.meta │ │ │ │ ├── PocoInjectionTests.cs │ │ │ │ ├── PocoInjectionTests.cs.meta │ │ │ │ ├── PocoResolutionTests.cs │ │ │ │ ├── PocoResolutionTests.cs.meta │ │ │ │ ├── Pocos.meta │ │ │ │ ├── Pocos │ │ │ │ ├── AbstractClass.cs │ │ │ │ ├── AbstractClass.cs.meta │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ ├── Poco.cs │ │ │ │ ├── Poco.cs.meta │ │ │ │ ├── SingleInstanceContainer.cs │ │ │ │ ├── SingleInstanceContainer.cs.meta │ │ │ │ ├── SingleInstanceContainer_PocoDep2.cs │ │ │ │ └── SingleInstanceContainer_PocoDep2.cs.meta │ │ │ │ ├── ResolverTests.cs │ │ │ │ ├── ResolverTests.cs.meta │ │ │ │ ├── TestFixtureBase.cs │ │ │ │ ├── TestFixtureBase.cs.meta │ │ │ │ ├── TopologicalSortTests.cs │ │ │ │ ├── TopologicalSortTests.cs.meta │ │ │ │ ├── link.xml │ │ │ │ └── link.xml.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── package.json │ └── package.json.meta ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md ├── Screenshots ├── Benchmark │ ├── baked_di.png │ ├── bar-graph_gc.png │ ├── bar-graph_time.png │ ├── di.png │ └── no_di.png ├── resolver_example.jpg └── resolver_inspector.jpg ├── codecov.yml └── di-framework.sln.DotSettings /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Bullet.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Bullet.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Bullet.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Bullet.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Ground.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Ground.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Player.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Player.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Player.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Player.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Skybox.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Turret Gun.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Turret Gun.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Turret Gun.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Turret Gun.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Turret.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Turret.mat -------------------------------------------------------------------------------- /Assets/Demo/Graphics/Materials/Turret.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Graphics/Materials/Turret.mat.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Bullet.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Effects.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Effects/Bullet Destruction Effect.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Effects/Bullet Destruction Effect.prefab -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Effects/Bullet Destruction Effect.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Effects/Bullet Destruction Effect.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Effects/Player Destruction Effect.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Effects/Player Destruction Effect.prefab -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Effects/Player Destruction Effect.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Effects/Player Destruction Effect.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Player.prefab -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Turret.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Turret.prefab -------------------------------------------------------------------------------- /Assets/Demo/Prefabs/Turret.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Prefabs/Turret.prefab.meta -------------------------------------------------------------------------------- /Assets/Demo/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Resources.meta -------------------------------------------------------------------------------- /Assets/Demo/Resources/Bullet Factory Config.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Resources/Bullet Factory Config.asset -------------------------------------------------------------------------------- /Assets/Demo/Resources/Bullet Factory Config.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Resources/Bullet Factory Config.asset.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes/SampleScene.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Demo/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes/SampleSceneSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes/SampleSceneSettings.lighting -------------------------------------------------------------------------------- /Assets/Demo/Scenes/SampleSceneSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scenes/SampleSceneSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Demo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts.meta -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b1da77b296040879e0dfaf83c04fb79 3 | timeCreated: 1605464492 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/Bullet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/Bullet.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/Bullet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275d0abcb02d45969847fb1a71fe9ec9 3 | timeCreated: 1605394612 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/BulletFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/BulletFactory.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/BulletFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48867dc3b1c6452f84283bab65ad9af5 3 | timeCreated: 1605394778 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/BulletHitTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/BulletHitTrigger.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/BulletHitTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 296a69d8343e4c0fbde4f0c6c97f2eee 3 | timeCreated: 1605463349 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/ILogger.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/ILogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f51de851f4d44caeac03072cc71f4baf 3 | timeCreated: 1644522199 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/IProjectileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/IProjectileFactory.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/IProjectileFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa1e1dcb51cb4482b81dee9320bff607 3 | timeCreated: 1605394559 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/UnityLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Bullets/UnityLogger.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Bullets/UnityLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75ba0d9db526419f9d67ac0e613531ac 3 | timeCreated: 1644522199 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Damage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a593a7399f5d445caa573ef3ec6fdb4d 3 | timeCreated: 1605464587 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Damage/IDestroyable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Damage/IDestroyable.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Damage/IDestroyable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad5b90da3f7f4b5990322f989f90466e 3 | timeCreated: 1605463552 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Damage/IHittable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Damage/IHittable.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Damage/IHittable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35cc75ed8b2142e8bf4fb9ad8ae3de20 3 | timeCreated: 1605462980 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Dependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Dependencies.meta -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Dependencies/BulletFactoryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Dependencies/BulletFactoryConfig.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Dependencies/BulletFactoryConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84499d0561754f1a8278ede1ce80f129 3 | timeCreated: 1644520455 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Dependencies/CompositionRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Dependencies/CompositionRoot.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Dependencies/CompositionRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5d2d33df2ca4017af6657c68834dc42 3 | timeCreated: 1605124348 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf35bb5a949f4a81b3c8f1780839b49d 3 | timeCreated: 1605464516 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Effects/DestructionEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Effects/DestructionEffect.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Effects/DestructionEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29c53f4fa3d5407b996263003dd62e8b 3 | timeCreated: 1605463622 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/InjectablePoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/InjectablePoco.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/InjectablePoco.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c35fa02f7d24764922ad7ebc03de856 3 | timeCreated: 1619297133 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Movement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a83673bc768041738c81820bbc22ed1a 3 | timeCreated: 1605464545 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Movement/IMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Movement/IMovement.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Movement/IMovement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0893af5082674694870392ced58bfe1a 3 | timeCreated: 1605434720 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Movement/Movement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Movement/Movement.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Movement/Movement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 982cf12903764eb296a563dcd3d1b015 3 | timeCreated: 1605434414 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Player.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c51209aaea142f59972a119307abc25 3 | timeCreated: 1605435261 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Shooting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fb40608fd204da492e35ce6410c6286 3 | timeCreated: 1605464478 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Shooting/IShootFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Shooting/IShootFrom.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Shooting/IShootFrom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155668bd2eea488baf0cd5bc3cbe8f05 3 | timeCreated: 1605395495 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Shooting/IShootingTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Shooting/IShootingTarget.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Shooting/IShootingTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e62bbc4a64d4f369c077bcc38b29630 3 | timeCreated: 1605435238 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56c924e63a6e45aaa405cd6cb772dbf9 3 | timeCreated: 1619300791 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/TestPocoBaking/TestPoco.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPoco.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c26f468ee9fb442b9d7f5506e3e33082 3 | timeCreated: 1619300797 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPocoContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/TestPocoBaking/TestPocoContainer.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPocoContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8f4da963fd543b9bba8de32994dda97 3 | timeCreated: 1619300819 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPocoDependant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/TestPocoBaking/TestPocoDependant.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TestPocoBaking/TestPocoDependant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4905563284474353b9aa91f5a1323785 3 | timeCreated: 1619300862 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c3e5782d48945d08f0523a8b4a66b37 3 | timeCreated: 1605464452 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/Turret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Turrets/Turret.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/Turret.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788aa91e15244ff49aa5ba31a21ade0a 3 | timeCreated: 1605394534 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/TurretAim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Turrets/TurretAim.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/TurretAim.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 818749ac297047d3b0cefe0128b3c8ca 3 | timeCreated: 1605435281 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/TurretHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/Turrets/TurretHead.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/Turrets/TurretHead.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a24b1f0a033542fabd99107429396625 3 | timeCreated: 1605395528 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TwoConstructorsClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/TwoConstructorsClass.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/TwoConstructorsClass.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bef5f69bedd4f2d90a469e67c737802 3 | timeCreated: 1615911667 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a20f2c283c48b5b9e8fbb69e9ad340 3 | timeCreated: 1605464612 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/UI/PointerControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/UI/PointerControls.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/UI/PointerControls.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3dd7b5808ba4f50bc8e213f4ed94aca 3 | timeCreated: 1605464726 -------------------------------------------------------------------------------- /Assets/Demo/Scripts/UI/RestartSceneButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Demo/Scripts/UI/RestartSceneButton.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/UI/RestartSceneButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b3178c90d3d463f8571ab040040f70d 3 | timeCreated: 1605464617 -------------------------------------------------------------------------------- /Assets/PerformanceTest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Prefabs.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Prefabs/With DI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Prefabs/With DI.prefab -------------------------------------------------------------------------------- /Assets/PerformanceTest/Prefabs/With DI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Prefabs/With DI.prefab.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Prefabs/Without DI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Prefabs/Without DI.prefab -------------------------------------------------------------------------------- /Assets/PerformanceTest/Prefabs/Without DI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Prefabs/Without DI.prefab.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scenes.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scenes/PerformanceTestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scenes/PerformanceTestScene.unity -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scenes/PerformanceTestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scenes/PerformanceTestScene.unity.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45f4c884ddef4ca981f3434975e1ca55 3 | timeCreated: 1610360651 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependency1.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d2e26478384eabb53eecddc8bf3967 3 | timeCreated: 1610360614 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependency2.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependency2.cs.meta -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependency3.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependency3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b7166998fae48d8b9d12a35506b9b48 3 | timeCreated: 1610360628 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent1.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ecfdc9a0f83476fbed9c881c2fb4564 3 | timeCreated: 1610360638 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent12.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent12.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f6cb7569654bd882c896c55f3d0f3b 3 | timeCreated: 1610361212 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent123.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent123.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent123.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 666230d6065d4a0e9b1a2b985e490524 3 | timeCreated: 1610361288 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent13.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent13.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26d4abb4f5ac47b793b9424e06d8629c 3 | timeCreated: 1610361262 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent2.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad840b1b946491bbbc68a72d4e690b3 3 | timeCreated: 1610361166 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/DI/Dependent3.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/DI/Dependent3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2286dc224a74a98871f2289d7fec8b1 3 | timeCreated: 1610361194 -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/PeriodicSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/PerformanceTest/Scripts/PeriodicSpawner.cs -------------------------------------------------------------------------------- /Assets/PerformanceTest/Scripts/PeriodicSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2967127cf4f24477be2bbce4e227f497 3 | timeCreated: 1610360562 -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/DI Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Resources/DI Settings.asset -------------------------------------------------------------------------------- /Assets/Resources/DI Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Resources/DI Settings.asset.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/DI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Scripts/DI.meta -------------------------------------------------------------------------------- /Assets/Scripts/DI/Baked.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/Scripts/DI/Baked.meta -------------------------------------------------------------------------------- /Assets/Scripts/DI/Baked/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /DIFramework.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/DIFramework.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /DIFramework.Lifecycle.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/DIFramework.Lifecycle.csproj.DotSettings -------------------------------------------------------------------------------- /DIFramework.PerformanceTests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/DIFramework.PerformanceTests.csproj.DotSettings -------------------------------------------------------------------------------- /DIFramework.PlayTests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/DIFramework.PlayTests.csproj.DotSettings -------------------------------------------------------------------------------- /DIFramework.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/DIFramework.csproj.DotSettings -------------------------------------------------------------------------------- /Documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/Doxyfile -------------------------------------------------------------------------------- /Documentation/static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/static/LICENSE -------------------------------------------------------------------------------- /Documentation/static/doxygen-awesome-sidebar-only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/static/doxygen-awesome-sidebar-only.css -------------------------------------------------------------------------------- /Documentation/static/doxygen-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/static/doxygen-awesome.css -------------------------------------------------------------------------------- /Documentation/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/static/favicon.ico -------------------------------------------------------------------------------- /Documentation/static/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Documentation/static/header.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Macros/ctordi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Macros/ctordi.txt -------------------------------------------------------------------------------- /Macros/ctordip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Macros/ctordip.txt -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7585199405524c699b50a33fb0c05707 3 | timeCreated: 1612607823 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/BakeOnBuildPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/BakeOnBuildPreprocessor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/BakeOnBuildPreprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d48c35cd31244b78723e3a23ca2a8bc 3 | timeCreated: 1626376573 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBaker.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBaker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e9191e5663e4373949d3297a26d9fcf 3 | timeCreated: 1615915314 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingData.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66a95661035e49b0b0fddbb73273e434 3 | timeCreated: 1615915568 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingMenu.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e308ddbc0ab4019a621dcc860e355f6 3 | timeCreated: 1615842506 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingTypesUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingTypesUtils.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Baking/InjectionBakingTypesUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 141f540f7b82406d9ad5f36ac870f32a 3 | timeCreated: 1615915865 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ChildrenDependencyContainerCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ChildrenDependencyContainerCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ChildrenDependencyContainerCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc98a6e914e43f980c68df55a8fab08 3 | timeCreated: 1622834275 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ContainerLifecycleCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ContainerLifecycleCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ContainerLifecycleCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bca1ffc37d9641079437ffa70e0da984 3 | timeCreated: 1645300989 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DIFramework.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DIFramework.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DIFramework.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DIFramework.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyContainerBaseCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyContainerBaseCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyContainerBaseCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3554bb6c7276454da3b4c9a731bd0bfe 3 | timeCreated: 1622833633 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a34ad53e39644ce901837fd7059aeb9 3 | timeCreated: 1645290589 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphView.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphView.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphWindow.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyGraphWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b6b719144ae455aa7fc23c89512d99c 3 | timeCreated: 1645290661 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyNode.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DependencyGraph/DependencyNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8658c92ed174836adc46b7b8f61b625 3 | timeCreated: 1645290617 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DiSettingsCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DiSettingsCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/DiSettingsCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bb5e27168b741238a3a8630f6e1644c 3 | timeCreated: 1619294965 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/FallbackDependencyContainerCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/FallbackDependencyContainerCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/FallbackDependencyContainerCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d598d96f1784623b5be822b898044c1 3 | timeCreated: 1622834330 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/GlobalResolverReportGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/GlobalResolverReportGenerator.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/GlobalResolverReportGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a43f8965958340c398deda73582f5ba4 3 | timeCreated: 1605909071 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/container.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/container.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/container.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/di_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/di_settings.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/di_settings.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/di_settings.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/ignore_by_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/ignore_by_container.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/ignore_by_container.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/ignore_by_container.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver_warning.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver_warning.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/resolver_warning.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/root_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/root_container.png -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/root_container.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/Graphics/root_container.png.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/HierarchyIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/HierarchyIcons.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/HierarchyIcons.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0563bb4ba0d94bce99c7b0d5d425f5d6 3 | timeCreated: 1618948515 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/InvalidateCacheOnLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/InvalidateCacheOnLoad.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/InvalidateCacheOnLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d868840a07a4e2181ad589b7dcde57c 3 | timeCreated: 1615833377 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ListDependencyContainerCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ListDependencyContainerCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ListDependencyContainerCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41dd0cf66b9e4e94b89c05e219059109 3 | timeCreated: 1605349165 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MenuHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MenuHelper.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MenuHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MenuHelper.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MissingResolverWarningIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MissingResolverWarningIcons.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/MissingResolverWarningIcons.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beb14af9c14e4e8387f0ac9b9a345b9c 3 | timeCreated: 1622831451 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ResolverCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ResolverCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/ResolverCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ad9a726db894af9abf53a03abb97ce9 3 | timeCreated: 1605280597 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootContainerCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootContainerCreator.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootContainerCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 635a4b4099514405aa86dd9af11fd7cf 3 | timeCreated: 1608796691 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootDependencyContainerCustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootDependencyContainerCustomEditor.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/RootDependencyContainerCustomEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bfb9e10853e4242ba933a4039c0c2bf 3 | timeCreated: 1605128306 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/TypeNameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/TypeNameExtensions.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Editor/TypeNameExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bcd8fbac8364831a5f362f8b089f497 3 | timeCreated: 1626608350 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef641a0c05614e45b0b2f17ef1444bf5 3 | timeCreated: 1644517336 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7328c9b75dbc42119215016d4de56ec2 3 | timeCreated: 1615840723 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/BakedInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/BakedInjection.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/BakedInjection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/BakedInjection.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/InjectionFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/InjectionFunction.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/InjectionFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca01ec79f6734adabfce941ca3106b75 3 | timeCreated: 1615841839 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoInstantiationFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoInstantiationFunction.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoInstantiationFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c72a1a70334841ab98fdff2f387824 3 | timeCreated: 1619294310 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoResolutionFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoResolutionFunction.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/PocoResolutionFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d86cfa0677245279bad89e4a865bf1f 3 | timeCreated: 1619294132 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/ResolutionFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/ResolutionFunction.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Baking/ResolutionFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3facc887c8ad4414950a1fb448a26b79 3 | timeCreated: 1615841520 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.Registered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.Registered.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.Registered.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba983abe44f444b0ada3cde531d6a3be 3 | timeCreated: 1644612661 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d647d9fb3a34bbb809d010159934b78 3 | timeCreated: 1605288378 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerBuilderExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0abe5b5f35ce44aeb0108416113748cb 3 | timeCreated: 1636654604 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerLifecycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerLifecycle.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainerLifecycle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4573e2ad52a42b1b16440bc9fe52267 3 | timeCreated: 1636659639 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcfe92d149e449c8a238b339d8263e50 3 | timeCreated: 1603977131 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ChildrenDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ChildrenDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ChildrenDependencyContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ChildrenDependencyContainer.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ConfigurableDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ConfigurableDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ConfigurableDependencyContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b67679fabda44afa8abacc12fafc57c3 3 | timeCreated: 1619039026 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/DependencyContainerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/DependencyContainerBase.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/DependencyContainerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/DependencyContainerBase.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/FallbackDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/FallbackDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/FallbackDependencyContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/FallbackDependencyContainer.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IIgnoreByContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IIgnoreByContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IIgnoreByContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d186037d8fb4e4293c0ab501bc650a0 3 | timeCreated: 1644523794 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IgnoreByContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IgnoreByContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IgnoreByContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/IgnoreByContainer.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ListDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ListDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ListDependencyContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Containers/ListDependencyContainer.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainersExtensions.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ContainersExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e0535279a4c6a9dcf83bde81dd038 3 | timeCreated: 1605122370 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DIFramework.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DIFramework.asmdef -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DIFramework.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DIFramework.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee70b464917e416ea0628131b263dccc 3 | timeCreated: 1644660844 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/CompositeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/CompositeDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/CompositeDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ef180c985d348518085b5c71bb0fcc8 3 | timeCreated: 1644663394 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyUtils.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dca394c6e49a430faac2fd8a7d769b2e 3 | timeCreated: 1644662205 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyWithMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyWithMetadata.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/DependencyWithMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3371791f73bb478791c012aa98490b42 3 | timeCreated: 1644661770 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/FactoryMethodDelegateDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/FactoryMethodDelegateDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/FactoryMethodDelegateDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78beaac1365843ec9e81d2b23fff5c38 3 | timeCreated: 1644661776 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/GlobalDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/GlobalDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/GlobalDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c142835eee14f4d9f13a45f392b3c7b 3 | timeCreated: 1645306102 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/IDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/IDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/IDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 657675c5640844689a84741ad973f0ea 3 | timeCreated: 1644660850 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/ObjectDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/ObjectDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/ObjectDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21fe7b8f35a64df18429d5cc346c5ac7 3 | timeCreated: 1644661783 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/TypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/TypeDependency.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Dependencies/TypeDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3a837856114d099573c6d72daa855a 3 | timeCreated: 1644661779 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySource.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c2af3eac2df42c28b3a3523a646b02c 3 | timeCreated: 1605118038 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySources.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DependencySources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e3d5365c2f24d3da575b3dcbd91fe1a 3 | timeCreated: 1612698929 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Di.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Di.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Di.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89bb5f8c4b4347538b02ab0350c3cb16 3 | timeCreated: 1618951573 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DiSettings.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DiSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/DiSettings.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b34cb6374547ffba6e64015dbc3d3b 3 | timeCreated: 1618948814 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Editor/IShowIconInHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Editor/IShowIconInHierarchy.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Editor/IShowIconInHierarchy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2768bcd37bb941aca1dfd653c367fec4 3 | timeCreated: 1618948828 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa6f5c1fabce43a3954bf86cc33d311b 3 | timeCreated: 1614717825 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyAlreadyRegistered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyAlreadyRegistered.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyAlreadyRegistered.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 090fe37340f34f21abbcf97dfe5286ea 3 | timeCreated: 1614718562 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyLoopException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyLoopException.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyLoopException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyLoopException.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotRegisteredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotRegisteredException.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotRegisteredException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2be2a96ead1b43b3917e3822ee045447 3 | timeCreated: 1614718379 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotResolvedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotResolvedException.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/DependencyNotResolvedException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd3f115ceda040e197b8dda6fd6b3ba5 3 | timeCreated: 1614718157 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/NotInjectableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/NotInjectableException.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Exceptions/NotInjectableException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56f32d5c5a6144daadeeeb3cc8d92ae3 3 | timeCreated: 1614717831 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethod.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0912e826bcd441c29ba2b02c2a5140ec 3 | timeCreated: 1644523794 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethodDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethodDelegate.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/FactoryMethodDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef662360e4a741028cac44270b462949 3 | timeCreated: 1644515129 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ICanRegisterContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ICanRegisterContainerBuilder.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/ICanRegisterContainerBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bacaf05b21e460e91231d276eafea05 3 | timeCreated: 1644612574 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IDependencyContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50bacf12d662492db1fe928304159399 3 | timeCreated: 1603975726 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IInitializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IInitializable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IInitializable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f620fec5bff4186807af5eeac326af2 3 | timeCreated: 1605120236 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IResolver.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/IResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc060ea77c164035bc3ae6d5c5f35d66 3 | timeCreated: 1612699717 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/DIFramework.Lifecycle.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/DIFramework.Lifecycle.asmdef -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/DIFramework.Lifecycle.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/DIFramework.Lifecycle.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IDestroyable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IDestroyable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IDestroyable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d661bcdde53f404499842f0947458444 3 | timeCreated: 1636659604 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IFixedUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IFixedUpdatable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IFixedUpdatable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a66ad32c01f4fa684501cb5f71b8ca7 3 | timeCreated: 1636740969 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/ILateUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/ILateUpdatable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/ILateUpdatable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75bbbd289a8a41ae8d22b55795a9989d 3 | timeCreated: 1636740970 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IStartable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IStartable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IStartable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a951d3e33d34aeeaadc32922fbd5383 3 | timeCreated: 1636659411 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IUpdatable.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Lifecycle/IUpdatable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e31b6dbf8ba4cf19d095c6c9a1f8b58 3 | timeCreated: 1636659489 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ccf607ab198457196887a967cd28241 3 | timeCreated: 1615928300 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Pooling/ListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Pooling/ListPool.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Pooling/ListPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a7aaf94161c4b73aee415277fe22a87 3 | timeCreated: 1615928304 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d6cdac96424ab49ff745c2d0ad569f 3 | timeCreated: 1605908193 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ComponentResolutionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ComponentResolutionData.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ComponentResolutionData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67209ad725a8480d8cbd5b1786c1ee95 3 | timeCreated: 1605908221 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ResolverReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ResolverReport.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Reporting/ResolverReport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bbe820e5fe34239a47dcc5513387a7f 3 | timeCreated: 1605908005 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd3cb1a805ef4b8a869408e04cced39b 3 | timeCreated: 1612699077 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/CachedComponentResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/CachedComponentResolver.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/CachedComponentResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f733d28947e44422a1485f2ed9329524 3 | timeCreated: 1612699286 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/Injection.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/Injection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/Injection.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/PocoInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/PocoInjection.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/PocoInjection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822674bd6e2e41499d8c080ce5c7f920 3 | timeCreated: 1619121256 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionBySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionBySource.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionBySource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f8bacc40fe4468ba9fa50f47171495b 3 | timeCreated: 1612698873 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionContext.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolutionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c5066a544364383939ecbcd0764a099 3 | timeCreated: 1612698877 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolverPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolverPool.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolution/ResolverPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06a9667cbbb240bc90a36b7f8a2e81bd 3 | timeCreated: 1615920042 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolver.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Resolver.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/RootDependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/RootDependencyContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/RootDependencyContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/RootDependencyContainer.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Sorting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13686cb58b4749e6a59e03f2f1076cf7 3 | timeCreated: 1619118437 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Sorting/TopologicalSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Sorting/TopologicalSorting.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/Sorting/TopologicalSorting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54191726ca61401bb44b97eb590d07d9 3 | timeCreated: 1619118443 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/TypedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/TypedCache.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/TypedCache.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/TypedCache.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/UnityUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/UnityUtils.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Runtime/UnityUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df83105b03654a0a977e653eb609ee09 3 | timeCreated: 1644508988 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0774ba2ef8946a9946b2e90d00e1e2e 3 | timeCreated: 1644695481 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/CustomContainerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/CustomContainerPerformanceTest.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/CustomContainerPerformanceTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c66e577d21b445d83a7b42e9370714f 3 | timeCreated: 1644695534 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/DIFramework.PerformanceTests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/DIFramework.PerformanceTests.asmdef -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/DIFramework.PerformanceTests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/DIFramework.PerformanceTests.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/ResolverPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/ResolverPerformanceTest.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Performance/ResolverPerformanceTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7fae0cbff444417af9816605494b9ad 3 | timeCreated: 1644696578 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ChildrenDependencyContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ChildrenDependencyContainerTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ChildrenDependencyContainerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdf21fccc7d844aa9c1e92fd7f62bbaf 3 | timeCreated: 1605121955 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a81a4f693f84970911033fb1c357cab 3 | timeCreated: 1605279078 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Benchmark.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4882846b58eb4aee93d7b0a1bdce863e 3 | timeCreated: 1614201364 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Benchmark/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Benchmark/Components.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Benchmark/Components.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9bf28216d874f319276dd675fb409a7 3 | timeCreated: 1614201368 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Child.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Child.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff9a975631f44c32a783d54e9ed7d5f9 3 | timeCreated: 1605279131 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ComponentsWithSeveralConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ComponentsWithSeveralConstructors.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ComponentsWithSeveralConstructors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503f7c3596f14e768be3d196468f723c 3 | timeCreated: 1605302780 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ConstructChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ConstructChecker.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ConstructChecker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00852a3bd8904e14a1d92af716814b32 3 | timeCreated: 1605279261 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/DefaultExecutionOrderScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/DefaultExecutionOrderScript.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/DefaultExecutionOrderScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0bebfee2f854844b66fd99157285322 3 | timeCreated: 1605278701 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Ignored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Ignored.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Ignored.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb771242de6c4289b5eec490d373f5d2 3 | timeCreated: 1605279124 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/InterfaceDependencyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/InterfaceDependencyComponent.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/InterfaceDependencyComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4099f7d721640ce8412738ededc8422 3 | timeCreated: 1605299493 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent1.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13b2bcec2b9a49b8968f47029e9dea26 3 | timeCreated: 1605279049 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent2.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/LoopComponent2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 026b73a4965a45fbaf2267c96fc652e8 3 | timeCreated: 1605279057 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Parent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Parent.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/Parent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b18652b12d54ef1baaf7d8380c8e457 3 | timeCreated: 1605279128 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ParentDependencyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ParentDependencyComponent.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ParentDependencyComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ff0660704541949935f7830908e883 3 | timeCreated: 1605279135 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ResolutionCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ResolutionCounter.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/ResolutionCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc3dd102eef48388ec1253e7f9d1e63 3 | timeCreated: 1605278422 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/RigidbodyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/RigidbodyComponent.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/RigidbodyComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6da75a0502734d8997a38395719046f1 3 | timeCreated: 1604244145 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/StringDependencyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/StringDependencyComponent.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Components/StringDependencyComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52ac1a95010d48159ded1ddda60939b1 3 | timeCreated: 1605279120 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerBuilderExtensionsTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerBuilderExtensionsTests.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerLifecycleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerLifecycleTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ContainerLifecycleTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f64ce98afcc4cec9c3dc34125113553 3 | timeCreated: 1636660305 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e86cf94f0c204750a6863405ca2bd3ca 3 | timeCreated: 1605279109 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CtorInjectionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CtorInjectionContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CtorInjectionContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f025a025e57f43c68084b0149b55b810 3 | timeCreated: 1605303293 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CustomContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CustomContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Containers/CustomContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0eb53af47084a3cb92b80452d489141 3 | timeCreated: 1605123532 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/CustomDependencyContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/CustomDependencyContainerTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/CustomDependencyContainerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68d4d78f6c0a4b7c81aea25a1f2120dd 3 | timeCreated: 1605123638 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DIFramework.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DIFramework.Tests.asmdef -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DIFramework.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DIFramework.Tests.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyResolutionTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyResolutionTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b9c47b84a1d4b2083c05ee73a8687f7 3 | timeCreated: 1604243992 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 188b721caefa431196320fb61e281f90 3 | timeCreated: 1644517365 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyUtilsTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyUtilsTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DependencyUtilsTests.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DiTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/DiTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14c8dcfdeafa411bb0fe1e2e30e324ab 3 | timeCreated: 1618952013 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FactoryMethodDelegateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FactoryMethodDelegateTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FactoryMethodDelegateTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a6d9d5c4d0f42a3922e6bfb6ff5d1c9 3 | timeCreated: 1644519484 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FallbackDependencyContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FallbackDependencyContainerTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/FallbackDependencyContainerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35c7c27ba675460e98f7268a531e6db9 3 | timeCreated: 1605122078 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InjectionTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InjectionTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa33438fac714270b9726ed6f4589d42 3 | timeCreated: 1644744445 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InternalDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InternalDependencyTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/InternalDependencyTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8941c961cf7b4692946c22712e86da0d 3 | timeCreated: 1644608289 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ListDependencyContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ListDependencyContainerTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ListDependencyContainerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38e630ba0fa3404b83df6fcbab8453a5 3 | timeCreated: 1605122004 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/MultipleRootContainersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/MultipleRootContainersTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/MultipleRootContainersTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53804a9a416c48e29944956316190c8f 3 | timeCreated: 1612550347 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoInjectionTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoInjectionTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14a6b8df94a47f78d82dff95ae06723 3 | timeCreated: 1645302593 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoResolutionTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoResolutionTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/PocoResolutionTests.cs.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70f7be93d25f4068abdd9b1375c4d5c2 3 | timeCreated: 1619038720 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/AbstractClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/AbstractClass.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/AbstractClass.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be84dd11abb146fd802e60e25cd0ba79 3 | timeCreated: 1619290201 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Interfaces.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Interfaces.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ac9f21ef3164b498937b9934659ade9 3 | timeCreated: 1619122120 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Poco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Poco.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/Poco.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb3252d5033144078f08ed16edd465a8 3 | timeCreated: 1619038726 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f985878e2337479b891f699cad5d04fc 3 | timeCreated: 1619290295 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer_PocoDep2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer_PocoDep2.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/Pocos/SingleInstanceContainer_PocoDep2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 809c76ddfb4b46ed808077f08bbeecbb 3 | timeCreated: 1619290490 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ResolverTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/ResolverTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76d7ee15dd62431888754be9f775c8cb 3 | timeCreated: 1605278286 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TestFixtureBase.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TestFixtureBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81a8b8d6c5854bdc9dd1eec0c4257d09 3 | timeCreated: 1605121831 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TopologicalSortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TopologicalSortTests.cs -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/TopologicalSortTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d19184a826645b6bd488356637c066b 3 | timeCreated: 1644518146 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/link.xml -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/DELTation/DIFramework/Tests/Runtime/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 446448f487d04f10b2adee200fbb680f 3 | timeCreated: 1608763876 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/Assets/link.xml -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d8537e7bb5e4ba392d46e95577fb5a4 3 | timeCreated: 1608764243 -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/LICENSE.md -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/LICENSE.md.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/README.md -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/README.md.meta -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/package.json -------------------------------------------------------------------------------- /Packages/com.deltation.di-framework/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/com.deltation.di-framework/package.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Benchmark/baked_di.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/Benchmark/baked_di.png -------------------------------------------------------------------------------- /Screenshots/Benchmark/bar-graph_gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/Benchmark/bar-graph_gc.png -------------------------------------------------------------------------------- /Screenshots/Benchmark/bar-graph_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/Benchmark/bar-graph_time.png -------------------------------------------------------------------------------- /Screenshots/Benchmark/di.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/Benchmark/di.png -------------------------------------------------------------------------------- /Screenshots/Benchmark/no_di.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/Benchmark/no_di.png -------------------------------------------------------------------------------- /Screenshots/resolver_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/resolver_example.jpg -------------------------------------------------------------------------------- /Screenshots/resolver_inspector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/Screenshots/resolver_inspector.jpg -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/codecov.yml -------------------------------------------------------------------------------- /di-framework.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delt06/di-framework/HEAD/di-framework.sln.DotSettings --------------------------------------------------------------------------------