{"id":19991664,"url":"https://github.com/SteeltoeOSS/Configuration","last_synced_at":"2025-05-04T10:32:16.181Z","repository":{"id":69793151,"uuid":"49009096","full_name":"SteeltoeOSS/Configuration","owner":"SteeltoeOSS","description":".NET Configuration providers for Spring Cloud Config Server \u0026 CloudFoundry","archived":true,"fork":false,"pushed_at":"2019-05-15T14:02:22.000Z","size":1565,"stargazers_count":101,"open_issues_count":0,"forks_count":36,"subscribers_count":17,"default_branch":"dev","last_synced_at":"2024-11-13T04:54:03.050Z","etag":null,"topics":["cloud-foundry","config-server","configuration-management"],"latest_commit_sha":null,"homepage":"https://steeltoe.io","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SteeltoeOSS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-01-04T16:33:08.000Z","updated_at":"2023-01-28T18:19:23.000Z","dependencies_parsed_at":"2023-07-11T01:45:35.453Z","dependency_job_id":null,"html_url":"https://github.com/SteeltoeOSS/Configuration","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FConfiguration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FConfiguration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FConfiguration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FConfiguration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SteeltoeOSS","download_url":"https://codeload.github.com/SteeltoeOSS/Configuration/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252320601,"owners_count":21729158,"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":["cloud-foundry","config-server","configuration-management"],"created_at":"2024-11-13T04:51:51.475Z","updated_at":"2025-05-04T10:32:16.171Z","avatar_url":"https://github.com/SteeltoeOSS.png","language":"C#","readme":"# .NET Configuration Providers\n\n\u003e NOTICE: This repository has been relocated as a sub-directory under the [Steeltoe](https://github.com/SteeltoeOSS/steeltoe) repository. All issues and future development will be done under that repository.\n\nWith the introduction of ASP.NET Core, Microsoft is providing a new [application configuration model](https://docs.asp.net/en/latest/fundamentals/configuration.html) for accessing configuration settings for an application. \n\nThis new model supports access to key/value configuration data from a variety of different configuration providers or sources. Out of the box, ASP.NET Core comes with support for [JSON](https://github.com/aspnet/Configuration/tree/dev/src/Microsoft.Extensions.Configuration.Json), [XML](https://github.com/aspnet/Configuration/tree/dev/src/Microsoft.Extensions.Configuration.Xml) and [INI](https://github.com/aspnet/Configuration/tree/dev/src/Microsoft.Extensions.Configuration.Ini) files, as well as environment variables and command line parameters.  Additionally, Microsoft has also enabled developers to write their own [custom configuration providers](https://docs.asp.net/en/latest/fundamentals/configuration.html#custom-config-providers) should those provided by Microsoft not meet your needs.\n\nThis repository contains two custom configuration providers.  The [Steeltoe.Extensions.Configuration.ConfigServer](https://github.com/SteeltoeOSS/Configuration/tree/master/src/Steeltoe.Extensions.Configuration.ConfigServer) enables using the [Spring Cloud Config Server](https://projects.spring.io/spring-cloud/) as a provider of configuration data and the [Steeltoe.Extensions.Configuration.CloudFoundry](https://github.com/SteeltoeOSS/Configuration/tree/master/src/Steeltoe.Extensions.Configuration.CloudFoundry) provider enables [CloudFoundry environment variables](https://docs.cloudfoundry.org) to be parsed and accessed as configuration data.\n\nWindows Master (Stable):  [![AppVeyor Master](https://ci.appveyor.com/api/projects/status/27c2hd0460aac1cs/branch/master?svg=true)](https://ci.appveyor.com/project/steeltoe/Configuration)\n\nWindows Dev (Less Stable):  [![AppVeyor Dev](https://ci.appveyor.com/api/projects/status/27c2hd0460aac1cs/branch/dev?svg=true)](https://ci.appveyor.com/project/steeltoe/Configuration)\n\nLinux/OS X Master (Stable): [![Travis Master](https://travis-ci.org/SteeltoeOSS/Configuration.svg?branch=master)](https://travis-ci.org/SteeltoeOSS/Configuration)\n\nLinux/OS X Dev (Less Stable): [![Travis Dev](https://travis-ci.org/SteeltoeOSS/Configuration.svg?branch=dev)](https://travis-ci.org/SteeltoeOSS/Configuration)\n\n## .NET Runtime \u0026 Framework Support\n\nLike the ASP.NET Core configuration providers, these providers are intended to support both .NET Full framework and .NET Core (CoreCLR/CoreFX) run-times.  The providers are built and unit tested on Windows, Linux and OSX.\n\nWhile the primary usage of the providers is intended to be with ASP.NET Core applications, they should also work fine with UWP, Console and ASP.NET 4.x apps. An ASP.NET 4.x sample app is available illustrating how this can be done.\n\nCurrently all of the code and samples have been tested on .NET Core 2.0, .NET 4.6.1, and on ASP.NET Core 2.0.0.\n\n## Usage\n\nSee the [Steeltoe documentation](https://steeltoe.io/) for information on how to use these components in your applications.\n\n## Nuget Feeds\n\nAll new configuration provider development is done on the dev branch. More stable versions of the providers can be found on the master branch. The latest prebuilt packages from each branch can be found on one of two MyGet feeds. Released version can be found on nuget.org.\n\n- [Development feed (Less Stable)](https://www.myget.org/gallery/steeltoedev)\n- [Master feed (Stable)](https://www.myget.org/gallery/steeltoemaster)\n- [Release or Release Candidate feed](https://www.nuget.org/)\n\n## Building Pre-requisites\n\nTo build and run the unit tests:\n\n1. .NET Core SDK 2.0.3 or greater\n1. .NET Core Runtime 2.0.3\n\n## Building Packages \u0026 Running Tests - Windows\n\nTo build the packages on windows:\n\n1. git clone ...\n1. cd clone directory\n1. cd src/`\u003cproject\u003e` (e.g. cd src/Steeltoe.Extensions.Configuration.CloudFoundryBase)\n1. dotnet restore\n1. dotnet pack --configuration Release or Debug\n\nThe resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Extensions.Configuration.CloudFoundryBase/bin\n\nTo run the unit tests:\n\n1. git clone ...\n1. cd clone directory\n1. cd test/`\u003ctest project\u003e` (e.g. cd test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test)\n1. dotnet restore\n1. dotnet xunit -verbose\n\n## Building Packages \u0026 Running Tests - Linux/OSX\n\nTo build the packages on Linux/OSX:\n\n1. git clone ...\n1. cd clone directory\n1. cd src/`\u003cproject\u003e` (e.g.. cd src/Steeltoe.Extensions.Configuration.CloudFoundryBase)\n1. dotnet restore\n1. dotnet pack --configuration Release or Debug\n\nThe resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Extensions.Configuration.CloudFoundryBase/bin\n\nTo run the unit tests:\n\n1. git clone ...\n1. cd clone directory\n1. cd test/`\u003ctest project\u003e` (e.g. cd test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test)\n1. dotnet restore\n1. dotnet xunit -verbose -framework netcoreapp2.0\n\n## Sample Applications\n\nSee the [Samples](https://github.com/SteeltoeOSS/Samples) repository for examples of how to use these packages.\n\n## Known limitations\n\n## Unstructured data files\n\nUnlike the Java version of the configuration server client, the Steeltoe client currently only supports property and yaml files; not plain text.\n\n## Client decryption\n\nSteeltoe client only supports clear text communication with the configuration server. Client decryption is on our road map, but not currently supported. For now, you cannot send encrypted data to the client.\n\n## Server initiated reload\n\nCurrently reloads must be initiated by the client, Steeltoe has not implemented handlers to listen for server change events.\n","funding_links":[],"categories":["C\\#"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSteeltoeOSS%2FConfiguration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSteeltoeOSS%2FConfiguration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSteeltoeOSS%2FConfiguration/lists"}