{"id":15059908,"url":"https://github.com/vladhrapov/injectify","last_synced_at":"2025-04-10T05:44:15.266Z","repository":{"id":63981748,"uuid":"289507108","full_name":"vladhrapov/injectify","owner":"vladhrapov","description":"Dependency injection packages for UWP projects.","archived":false,"fork":false,"pushed_at":"2022-12-28T22:54:20.000Z","size":2247,"stargazers_count":41,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-03-24T06:54:42.713Z","etag":null,"topics":["autofac","dependency-injection","di-framework","dotnet","injectify","microsoft-dependency-injection","net-standard","uwp","winui2"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vladhrapov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-22T14:46:42.000Z","updated_at":"2024-12-05T14:32:14.000Z","dependencies_parsed_at":"2023-01-14T17:15:28.749Z","dependency_job_id":null,"html_url":"https://github.com/vladhrapov/injectify","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladhrapov%2Finjectify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladhrapov%2Finjectify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladhrapov%2Finjectify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladhrapov%2Finjectify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vladhrapov","download_url":"https://codeload.github.com/vladhrapov/injectify/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248166882,"owners_count":21058479,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autofac","dependency-injection","di-framework","dotnet","injectify","microsoft-dependency-injection","net-standard","uwp","winui2"],"created_at":"2024-09-24T22:49:49.726Z","updated_at":"2025-04-10T05:44:15.225Z","avatar_url":"https://github.com/vladhrapov.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UWP Dependency Injection\r\n\r\n\u003cp align=\"left\"\u003e\r\n  \u003ca href=\"https://github.com/vladhrapov/uwp-dependency-injection/blob/master/LICENSE\"\u003e\r\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"Injectify is released under the MIT license.\" /\u003e\r\n  \u003c/a\u003e\r\n\u003c/p\u003e\r\n\r\nDependency injection packages for the UWP projects.\r\n\r\n# Contents\r\n\r\n\u003c!--ts--\u003e\r\n\r\n- [About](#about)\r\n- [Quick Start](#quick-start)\r\n- [Folder Structure](#folder-structure)\r\n- [Code Samples](#code-samples)\r\n- [Migration Guide](#migration-guide)\r\n- [Release Versioning](#release-versioning)\r\n\r\n\u003c!--te--\u003e\r\n\r\n# About\r\n\r\nInjectify is a useful tool for building robust, resilient bridge between a DI framework and a UWP app. It helps to define, register all dependencies in one place and later on inject them into components. Project was inspired by [ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-3.1), [Nest.js](https://nestjs.com/), [UWP-IoC](https://github.com/MrCSharp22/UWP-IoC).\r\n\r\n# Quick start\r\n\r\nInstall package with a DI dependent framework (other common packages like `Injectify.Abstractions` and `Injectify` will be installed as peer dependencies under the hood). For the versions lower than `0.4.0` please [reference](./docs/QUICK_START.md) the detailed guide.\r\n\r\n## List of available packages\r\n\r\nMicrosoft.Extensions.DependencyInjection:\r\n\r\n```\r\ndotnet add package Injectify.Microsoft.DependencyInjection\r\n```\r\n\r\nAutofac:\r\n\r\n```\r\ndotnet add package Injectify.Autofac\r\n```\r\n\r\n# Folder Structure\r\n\r\nProject is structured using a monorepo approach, contains a bunch of interlinked packages. Here is detailed folder structure:\r\n\r\nInjectify consists of a 2 main packages with a common code:\r\n - `Injectify` - DI framework agnostic common helpers and implementations.\r\n - `Injectify.Abstractions` - abstractions for UWP application and internal interfaces.\r\n\r\nAdditional packages dependent on a specific DI framework:\r\n - `Injectify.Microsoft.DependencyInjection` (Microsoft.Extentions.DependencyInjection)\r\n - `Injectify.Autofac` (Autofac)\r\n\r\n# Code Samples\r\n\r\nReference our [code samples](./docs/SAMPLES.md) of how to use DI using Injectify. Samples are split by a major version and include detailed explanation of breaking changes which were introduced from version to version.\r\n\r\n# Migration Guide\r\n\r\nPlease follow up our migration guide [here](./docs/MIGRATION.md) if you stuck with any issue or need some guidance for migration to the higher versions.\r\n\r\n# Release Versioning\r\n\r\nInjectify follows synchronous updates strategy for all packages during the release. Always try to install the same versions of:\r\n- `Injectify.Abstractions`,\r\n- `Injectify`,\r\n- `Injectify.\u003cdi_framework\u003e`\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladhrapov%2Finjectify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvladhrapov%2Finjectify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladhrapov%2Finjectify/lists"}