{"id":51129952,"url":"https://github.com/osisdie/dotnet-corefx-sdk","last_synced_at":"2026-06-25T11:01:32.201Z","repository":{"id":346558809,"uuid":"1190127142","full_name":"osisdie/dotnet-corefx-sdk","owner":"osisdie","description":"Modular .NET SDK for building WebAPIs — authentication, caching, logging, hosting middleware, and more.","archived":false,"fork":false,"pushed_at":"2026-03-24T11:11:18.000Z","size":93,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T14:14:14.598Z","etag":null,"topics":["automapper","csharp","dotnet","jwt","middleware","net10","net8","nuget","redis","sdk","webapi"],"latest_commit_sha":null,"homepage":null,"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/osisdie.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-24T01:49:42.000Z","updated_at":"2026-03-24T11:11:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/osisdie/dotnet-corefx-sdk","commit_stats":null,"previous_names":["osisdie/dotnet-corefx-sdk"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/osisdie/dotnet-corefx-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osisdie%2Fdotnet-corefx-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osisdie%2Fdotnet-corefx-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osisdie%2Fdotnet-corefx-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osisdie%2Fdotnet-corefx-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/osisdie","download_url":"https://codeload.github.com/osisdie/dotnet-corefx-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osisdie%2Fdotnet-corefx-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34771664,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["automapper","csharp","dotnet","jwt","middleware","net10","net8","nuget","redis","sdk","webapi"],"created_at":"2026-06-25T11:01:30.405Z","updated_at":"2026-06-25T11:01:32.195Z","avatar_url":"https://github.com/osisdie.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotnet-corefx-sdk\n\n[![CI](https://github.com/osisdie/dotnet-corefx-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/osisdie/dotnet-corefx-sdk/actions/workflows/ci.yml)\n[![NuGet](https://img.shields.io/nuget/v/CoreFX.Abstractions?label=nuget)](https://www.nuget.org/packages?q=CoreFX)\n[![.NET 8](https://img.shields.io/badge/.NET-8.0%20LTS-512bd4)](https://dotnet.microsoft.com/download/dotnet/8.0)\n[![.NET 10](https://img.shields.io/badge/.NET-10.0%20LTS-512bd4)](https://dotnet.microsoft.com/download/dotnet/10.0)\n[![License](https://img.shields.io/github/license/osisdie/dotnet-corefx-sdk)](LICENSE)\n\nEnglish | [繁體中文](README.zh-TW.md)\n\nModular .NET SDK for building WebAPIs — authentication, caching, logging, hosting middleware, and more.\n\n## Modules\n\n| Package | Description | Dependencies |\n|---------|-------------|--------------|\n| **CoreFX.Abstractions** | Base interfaces, DTOs, extensions, serializers | None (foundation) |\n| **CoreFX.Common** | SvcContext, string/datetime/file utilities | Abstractions |\n| **CoreFX.Auth** | JWT token generation, validation, session management | Abstractions |\n| **CoreFX.Hosting** | ASP.NET Core middleware (exception handling, JWT authorization, request/response logging, Swagger) | Auth, Common |\n| **CoreFX.Caching.Redis** | IDistributedCache with StackExchange.Redis, failback scoring | Common |\n| **CoreFX.Logging.Log4net** | ILoggerProvider adapter for log4net | Standalone |\n| **CoreFX.Notification** | Email services via MailKit with scheduled reporting | Abstractions |\n| **CoreFX.DataAccess.Mapper** | AutoMapper integration and DI extensions | Abstractions |\n\n## Dependency Graph\n\n```\nCoreFX.Abstractions           (foundation)\n  |-- CoreFX.Common            -\u003e Abstractions\n  |-- CoreFX.Auth              -\u003e Abstractions\n  |-- CoreFX.DataAccess.Mapper -\u003e Abstractions\n  |-- CoreFX.Notification      -\u003e Abstractions\n  |-- CoreFX.Caching.Redis     -\u003e Common\n  |-- CoreFX.Logging.Log4net   (standalone)\n  '-- CoreFX.Hosting           -\u003e Auth + Common\n```\n\n## Target Frameworks\n\n- `net8.0` (.NET 8 LTS)\n- `net10.0` (.NET 10 LTS)\n\n## Quick Start\n\n```bash\n# Install packages\ndotnet add package CoreFX.Abstractions\ndotnet add package CoreFX.Hosting\ndotnet add package CoreFX.Auth\n# ... add modules as needed\n```\n\n### Startup.cs / Program.cs\n\n```csharp\n// Configure middleware pipeline\napp.UseExceptionHandlerMiddleware();\napp.UseJwtAuthorization();\napp.UseAuthentication();\napp.UseAuthorization();\napp.UseRequestResponseLogging();\n\n// Health check\napp.MapHealthChecks(\"/health\");\n```\n\n## Boilerplates Using This SDK\n\n| Boilerplate | Focus |\n|-------------|-------|\n| [dotnet-webapi-jwt-boilerplate](https://github.com/osisdie/dotnet-webapi-jwt-boilerplate) | JWT authentication, Dapper, Redis |\n| [dotnet-minikube-boilerplate](https://github.com/osisdie/dotnet-minikube-boilerplate) | Kubernetes deployment, Entity Framework |\n| [dotnet-mediatr-boilerplate](https://github.com/osisdie/dotnet-mediatr-boilerplate) | MediatR CQRS, FluentValidation, AutoMapper |\n\n## Building\n\n```bash\ndotnet build CoreFX.slnx\ndotnet test\ndotnet pack -c Release\n```\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosisdie%2Fdotnet-corefx-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosisdie%2Fdotnet-corefx-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosisdie%2Fdotnet-corefx-sdk/lists"}