├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Configuration.sln ├── License.txt ├── README.md ├── config ├── versions-dev.props ├── versions-master.props └── versions.props ├── nuget.config ├── open_source_licenses.txt ├── src ├── Steeltoe.Extensions.Configuration.CloudFoundryAutofac │ ├── CloudFoundryContainerBuilderExtensions.cs │ └── Steeltoe.Extensions.Configuration.CloudFoundryAutofac.csproj ├── Steeltoe.Extensions.Configuration.CloudFoundryBase │ ├── AbstractServiceOptions.cs │ ├── CloudFoundryApplicationOptions.cs │ ├── CloudFoundryConfigurationBuilderExtensions.cs │ ├── CloudFoundryConfigurationProvider.cs │ ├── CloudFoundryConfigurationSource.cs │ ├── CloudFoundryEnvironmentSettingsReader.cs │ ├── CloudFoundryMemorySettingsReader.cs │ ├── CloudFoundryServicesOptions.cs │ ├── Credential.cs │ ├── CredentialConverter.cs │ ├── ICloudFoundrySettingsReader.cs │ ├── JsonStreamConfigurationProvider.cs │ ├── JsonStreamConfigurationSource.cs │ ├── Limits.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service.cs │ └── Steeltoe.Extensions.Configuration.CloudFoundryBase.csproj ├── Steeltoe.Extensions.Configuration.CloudFoundryCore │ ├── CloudFoundryHostBuilderExtensions.cs │ ├── CloudFoundryServiceCollectionExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ └── Steeltoe.Extensions.Configuration.CloudFoundryCore.csproj ├── Steeltoe.Extensions.Configuration.ConfigServerAutofac │ ├── ConfigServerContainerBuilderExtensions.cs │ └── Steeltoe.Extensions.Configuration.ConfigServerAutofac.csproj ├── Steeltoe.Extensions.Configuration.ConfigServerBase │ ├── ConfigEnvironment.cs │ ├── ConfigServerClientSettings.cs │ ├── ConfigServerClientSettingsOptions.cs │ ├── ConfigServerConfigurationBuilderExtensions.cs │ ├── ConfigServerConfigurationProvider.cs │ ├── ConfigServerConfigurationSource.cs │ ├── ConfigServerDiscoveryService.cs │ ├── ConfigServerException.cs │ ├── ConfigServerHealthContributor.cs │ ├── ConfigurationSettingsHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertySource.cs │ ├── README.md │ ├── SpringCloudConfigDiscovery.cs │ ├── SpringCloudConfigHealth.cs │ ├── SpringCloudConfigRetry.cs │ └── Steeltoe.Extensions.Configuration.ConfigServerBase.csproj ├── Steeltoe.Extensions.Configuration.ConfigServerCore │ ├── ConfigServerConfigurationBuilderExtensionsCore.cs │ ├── ConfigServerHostBuilderExtensions.cs │ ├── ConfigServerServiceCollectionExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Steeltoe.Extensions.Configuration.ConfigServerCore.csproj ├── Steeltoe.Extensions.Configuration.PlaceholderBase │ ├── PlaceholderResolverExtensions.cs │ ├── PlaceholderResolverProvider.cs │ ├── PlaceholderResolverSource.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ └── Steeltoe.Extensions.Configuration.PlaceholderBase.csproj ├── Steeltoe.Extensions.Configuration.PlaceholderCore │ ├── PlaceholderResolverExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ └── Steeltoe.Extensions.Configuration.PlaceholderCore.csproj └── Steeltoe.Extensions.Configuration.RandomValueBase │ ├── Properties │ └── AssemblyInfo.cs │ ├── README.md │ ├── RandomValueExtensions.cs │ ├── RandomValueProvider.cs │ ├── RandomValueSource.cs │ └── Steeltoe.Extensions.Configuration.RandomValueBase.csproj ├── stylecop.json ├── targetframework.props ├── test ├── Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test │ ├── CloudFoundryContainerBuilderExtensionsTest.cs │ ├── Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test.csproj │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.CloudFoundryBase.Test │ ├── AbstractServiceOptionsTest.cs │ ├── CloudFoundryApplicationOptionsTest.cs │ ├── CloudFoundryConfigurationBuilderExtensionsTest.cs │ ├── CloudFoundryServiceOptionsTest.cs │ ├── CloudfoundryConfigurationProviderTest.cs │ ├── JsonStreamConfigurationProviderTest.cs │ ├── JsonStreamConfigurationSourceTest.cs │ ├── MySqlCredentials.cs │ ├── MySqlServiceOption.cs │ ├── Steeltoe.Extensions.Configuration.CloudFoundryBase.Test.csproj │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.CloudFoundryCore.Test │ ├── CloudFoundryHostBuilderExtensionsTest.cs │ ├── CloudFoundryServiceCollectionExtensionsTest.cs │ ├── MySqlCredentials.cs │ ├── MySqlServiceOption.cs │ ├── Steeltoe.Extensions.Configuration.CloudFoundryCore.Test.csproj │ ├── TestServerStartup.cs │ ├── TestServerStartup42.cs │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.ConfigServer.ITest │ ├── ConfigServerConfigurationExtensionsIntegrationTest.cs │ ├── ConfigServerDataAsOptions.cs │ ├── HomeController.cs │ ├── Info.cs │ ├── Steeltoe.Extensions.Configuration.ConfigServer.ITest.csproj │ ├── TestServerStartup.cs │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test │ ├── ConfigServerConfigurationBuilderExtensionsAutofacTest.cs │ ├── ConfigServerContainerBuilderExtensionsTest.cs │ ├── Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test.csproj │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.ConfigServerBase.Test │ ├── ConfigServerClientSettingsTest.cs │ ├── ConfigServerConfigurationBuilderExtensionsTest.cs │ ├── ConfigServerConfigurationProviderTest.cs │ ├── ConfigServerConfigurationSourceTest.cs │ ├── ConfigServerDiscoveryServiceTest.cs │ ├── ConfigServerHealthContributorTest.cs │ ├── ConfigurationSettingsHelperTest.cs │ ├── CustomCloudFoundrySettingsReader.cs │ ├── Steeltoe.Extensions.Configuration.ConfigServerBase.Test.csproj │ ├── TestConfigServerStartup.cs │ ├── TestHelpers.cs │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.ConfigServerCore.Test │ ├── ConfigServerClientSettingsOptionsTest.cs │ ├── ConfigServerConfigurationBuilderExtensionsCoreTest.cs │ ├── ConfigServerServiceCollectionExtensionsTest.cs │ ├── Steeltoe.Extensions.Configuration.ConfigServerCore.Test.csproj │ ├── TestConfigServerStartup.cs │ ├── TestHelpers.cs │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.PlaceholderBase.Test │ ├── PlaceholderResolverExtensionsTest.cs │ ├── PlaceholderResolverProviderTest.cs │ ├── PlaceholderResolverSourceTest.cs │ ├── Steeltoe.Extensions.Configuration.PlaceholderBase.Test.csproj │ ├── TestHelpers.cs │ └── xunit.runner.json ├── Steeltoe.Extensions.Configuration.PlaceholderCore.Test │ ├── PlaceholderServiceCollectionExtensionsTest.cs │ ├── Steeltoe.Extensions.Configuration.PlaceholderCore.Test.csproj │ ├── TestHelpers.cs │ ├── TestServerStartup.cs │ ├── TestServerStartup1.cs │ └── xunit.runner.json └── Steeltoe.Extensions.Configuration.RandomValuesBase.Test │ ├── RandomValueExtensionsTest.cs │ ├── RandomValueProviderTest.cs │ ├── RandomValueSourceTest.cs │ ├── Steeltoe.Extensions.Configuration.RandomValueBase.Test.csproj │ └── xunit.runner.json └── versions.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Configuration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/Configuration.sln -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/README.md -------------------------------------------------------------------------------- /config/versions-dev.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/config/versions-dev.props -------------------------------------------------------------------------------- /config/versions-master.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/config/versions-master.props -------------------------------------------------------------------------------- /config/versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/config/versions.props -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/nuget.config -------------------------------------------------------------------------------- /open_source_licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/open_source_licenses.txt -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryAutofac/CloudFoundryContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryAutofac/CloudFoundryContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryAutofac/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryAutofac/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/AbstractServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/AbstractServiceOptions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryApplicationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryApplicationOptions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryConfigurationSource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryEnvironmentSettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryEnvironmentSettingsReader.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryMemorySettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryMemorySettingsReader.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryServicesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CloudFoundryServicesOptions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Credential.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CredentialConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/CredentialConverter.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/ICloudFoundrySettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/ICloudFoundrySettingsReader.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/JsonStreamConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/JsonStreamConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/JsonStreamConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/JsonStreamConfigurationSource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Limits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Limits.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Service.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Steeltoe.Extensions.Configuration.CloudFoundryBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryBase/Steeltoe.Extensions.Configuration.CloudFoundryBase.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryCore/CloudFoundryHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryCore/CloudFoundryHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryCore/CloudFoundryServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryCore/CloudFoundryServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryCore/README.md -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.CloudFoundryCore/Steeltoe.Extensions.Configuration.CloudFoundryCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.CloudFoundryCore/Steeltoe.Extensions.Configuration.CloudFoundryCore.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerAutofac/ConfigServerContainerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerAutofac/ConfigServerContainerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerAutofac/Steeltoe.Extensions.Configuration.ConfigServerAutofac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerAutofac/Steeltoe.Extensions.Configuration.ConfigServerAutofac.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigEnvironment.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerClientSettings.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerClientSettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerClientSettingsOptions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerConfigurationSource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerDiscoveryService.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerException.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerHealthContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigServerHealthContributor.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigurationSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/ConfigurationSettingsHelper.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/PropertySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/PropertySource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/README.md -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigDiscovery.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigHealth.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigRetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/SpringCloudConfigRetry.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerBase/Steeltoe.Extensions.Configuration.ConfigServerBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerBase/Steeltoe.Extensions.Configuration.ConfigServerBase.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerConfigurationBuilderExtensionsCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerConfigurationBuilderExtensionsCore.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerCore/ConfigServerServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.ConfigServerCore/Steeltoe.Extensions.Configuration.ConfigServerCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.ConfigServerCore/Steeltoe.Extensions.Configuration.ConfigServerCore.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverProvider.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/PlaceholderResolverSource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/README.md -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderBase/Steeltoe.Extensions.Configuration.PlaceholderBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderBase/Steeltoe.Extensions.Configuration.PlaceholderBase.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderCore/PlaceholderResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderCore/PlaceholderResolverExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderCore/README.md -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.PlaceholderCore/Steeltoe.Extensions.Configuration.PlaceholderCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.PlaceholderCore/Steeltoe.Extensions.Configuration.PlaceholderCore.csproj -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/README.md -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueExtensions.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueProvider.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/RandomValueSource.cs -------------------------------------------------------------------------------- /src/Steeltoe.Extensions.Configuration.RandomValueBase/Steeltoe.Extensions.Configuration.RandomValueBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/src/Steeltoe.Extensions.Configuration.RandomValueBase/Steeltoe.Extensions.Configuration.RandomValueBase.csproj -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/stylecop.json -------------------------------------------------------------------------------- /targetframework.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/targetframework.props -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/CloudFoundryContainerBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/CloudFoundryContainerBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryAutofac.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/AbstractServiceOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/AbstractServiceOptionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryApplicationOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryApplicationOptionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryConfigurationBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryConfigurationBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryServiceOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudFoundryServiceOptionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudfoundryConfigurationProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/CloudfoundryConfigurationProviderTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/JsonStreamConfigurationProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/JsonStreamConfigurationProviderTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/JsonStreamConfigurationSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/JsonStreamConfigurationSourceTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/MySqlCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/MySqlCredentials.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/MySqlServiceOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/MySqlServiceOption.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryBase.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/CloudFoundryHostBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/CloudFoundryHostBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/CloudFoundryServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/CloudFoundryServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/MySqlCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/MySqlCredentials.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/MySqlServiceOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/MySqlServiceOption.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/TestServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/TestServerStartup.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/TestServerStartup42.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/TestServerStartup42.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.CloudFoundryCore.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/ConfigServerConfigurationExtensionsIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/ConfigServerConfigurationExtensionsIntegrationTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/ConfigServerDataAsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/ConfigServerDataAsOptions.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/HomeController.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/Info.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/Steeltoe.Extensions.Configuration.ConfigServer.ITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/Steeltoe.Extensions.Configuration.ConfigServer.ITest.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/TestServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/TestServerStartup.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServer.ITest/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/ConfigServerConfigurationBuilderExtensionsAutofacTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/ConfigServerConfigurationBuilderExtensionsAutofacTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/ConfigServerContainerBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/ConfigServerContainerBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerAutofac.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerClientSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerClientSettingsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationProviderTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerConfigurationSourceTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerDiscoveryServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerDiscoveryServiceTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerHealthContributorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigServerHealthContributorTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigurationSettingsHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/ConfigurationSettingsHelperTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/CustomCloudFoundrySettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/CustomCloudFoundrySettingsReader.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/TestConfigServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/TestConfigServerStartup.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/TestHelpers.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerBase.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerClientSettingsOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerClientSettingsOptionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerConfigurationBuilderExtensionsCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerConfigurationBuilderExtensionsCoreTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/ConfigServerServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/TestConfigServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/TestConfigServerStartup.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/TestHelpers.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.ConfigServerCore.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverProviderTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/PlaceholderResolverSourceTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/TestHelpers.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderBase.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/PlaceholderServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/PlaceholderServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestHelpers.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestServerStartup.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestServerStartup1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/TestServerStartup1.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.PlaceholderCore.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueExtensionsTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueProviderTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/RandomValueSourceTest.cs -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/Steeltoe.Extensions.Configuration.RandomValueBase.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/Steeltoe.Extensions.Configuration.RandomValueBase.Test.csproj -------------------------------------------------------------------------------- /test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/test/Steeltoe.Extensions.Configuration.RandomValuesBase.Test/xunit.runner.json -------------------------------------------------------------------------------- /versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Configuration/HEAD/versions.props --------------------------------------------------------------------------------