├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── dotnet │ │ └── action.yml ├── dependabot.yml ├── dotnet.json ├── release.yml └── workflows │ ├── build.yml │ ├── changelog.config │ ├── changelog.yml │ ├── docs.yml │ ├── dotnet-env.yml │ ├── dotnet-file.yml │ ├── includes.yml │ ├── publish.yml │ └── triage.yml ├── .gitignore ├── .netconfig ├── Config.sln ├── Directory.Build.rsp ├── Gemfile ├── _config.yml ├── assets └── css │ └── style.scss ├── changelog.md ├── contributing.md ├── docs ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── favicon.ico ├── img │ ├── icon-128.png │ ├── icon-300.png │ ├── icon-32-flip.png │ ├── icon-32.png │ ├── icon-64.png │ ├── icon.ico │ ├── icon.png │ ├── icon.svg │ ├── noun_Command Line_915990.svg │ ├── noun_Settings_3120278.svg │ └── readme.txt ├── index.md ├── logo.svg ├── styles │ ├── main.css │ └── main.js ├── template │ └── partials │ │ ├── head.tmpl.partial │ │ └── scripts.tmpl.partial ├── toc.yml └── who │ ├── dotnet-eventgrid.md │ ├── dotnet-file.md │ ├── dotnet-serve.md │ ├── dotnet-vs.md │ ├── index.md │ ├── reportgenerator.md │ ├── sleet.md │ └── toc.yml ├── license.txt ├── readme.md └── src ├── CommandLine ├── CommandLine.csproj └── CommandLineExtensions.cs ├── Config.Tests ├── .editorconfig ├── CommandLineTests.cs ├── Config.Tests.csproj ├── ConfigDocumentTests.cs ├── ConfigParserTests.cs ├── ConfigReaderTests.cs ├── ConfigTests.cs ├── ConfigurationTests.cs ├── Constants.cs ├── Content │ ├── .netconfig │ ├── ConfigParserTests.txt │ ├── global.netconfig │ ├── local │ │ └── .netconfig │ ├── system.netconfig │ └── web │ │ └── .netconfig ├── FlakyFactAttribute.cs ├── TextRulesTests.cs └── xunit.runner.json ├── Config.Tool ├── Config.Tool.csproj ├── ConfigAction.cs ├── Program.cs ├── Properties │ └── .gitignore ├── ValueKind.cs └── readme.md ├── Config ├── AggregateConfig.cs ├── AssemblyInfo.cs ├── Config.cs ├── Config.csproj ├── ConfigDocument.cs ├── ConfigEntry.cs ├── ConfigExtensions.cs ├── ConfigLevel.cs ├── ConfigReader.cs ├── ConfigSection.cs ├── ConfigSectionExtensions.cs ├── FileConfig.cs ├── Line.cs ├── LineKind.cs ├── Position.cs ├── TextRules.cs ├── TextSpan.cs ├── ValueMatcher.cs └── readme.md ├── Configuration ├── Configuration.csproj ├── DotNetConfigExtensions.cs ├── DotNetConfigProvider.cs ├── DotNetConfigSource.cs └── readme.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.props ├── dotnet-config.snk └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/dotnet/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/actions/dotnet/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/dotnet.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/changelog.config -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/dotnet-env.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/dotnet-file.yml -------------------------------------------------------------------------------- /.github/workflows/includes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/includes.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/.netconfig -------------------------------------------------------------------------------- /Config.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/Config.sln -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/Gemfile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/api/.gitignore -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon-128.png -------------------------------------------------------------------------------- /docs/img/icon-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon-300.png -------------------------------------------------------------------------------- /docs/img/icon-32-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon-32-flip.png -------------------------------------------------------------------------------- /docs/img/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon-32.png -------------------------------------------------------------------------------- /docs/img/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon-64.png -------------------------------------------------------------------------------- /docs/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon.ico -------------------------------------------------------------------------------- /docs/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon.png -------------------------------------------------------------------------------- /docs/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/icon.svg -------------------------------------------------------------------------------- /docs/img/noun_Command Line_915990.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/noun_Command Line_915990.svg -------------------------------------------------------------------------------- /docs/img/noun_Settings_3120278.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/noun_Settings_3120278.svg -------------------------------------------------------------------------------- /docs/img/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/img/readme.txt -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/styles/main.css -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/template/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/template/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docs/template/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/template/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /docs/who/dotnet-eventgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/dotnet-eventgrid.md -------------------------------------------------------------------------------- /docs/who/dotnet-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/dotnet-file.md -------------------------------------------------------------------------------- /docs/who/dotnet-serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/dotnet-serve.md -------------------------------------------------------------------------------- /docs/who/dotnet-vs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/dotnet-vs.md -------------------------------------------------------------------------------- /docs/who/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/index.md -------------------------------------------------------------------------------- /docs/who/reportgenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/reportgenerator.md -------------------------------------------------------------------------------- /docs/who/sleet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/sleet.md -------------------------------------------------------------------------------- /docs/who/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/docs/who/toc.yml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/readme.md -------------------------------------------------------------------------------- /src/CommandLine/CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/CommandLine/CommandLine.csproj -------------------------------------------------------------------------------- /src/CommandLine/CommandLineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/CommandLine/CommandLineExtensions.cs -------------------------------------------------------------------------------- /src/Config.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/.editorconfig -------------------------------------------------------------------------------- /src/Config.Tests/CommandLineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/CommandLineTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/Config.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Config.Tests.csproj -------------------------------------------------------------------------------- /src/Config.Tests/ConfigDocumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/ConfigDocumentTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/ConfigParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/ConfigParserTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/ConfigReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/ConfigReaderTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/ConfigTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/ConfigurationTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Constants.cs -------------------------------------------------------------------------------- /src/Config.Tests/Content/.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Content/.netconfig -------------------------------------------------------------------------------- /src/Config.Tests/Content/ConfigParserTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Content/ConfigParserTests.txt -------------------------------------------------------------------------------- /src/Config.Tests/Content/global.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Content/global.netconfig -------------------------------------------------------------------------------- /src/Config.Tests/Content/local/.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/Content/local/.netconfig -------------------------------------------------------------------------------- /src/Config.Tests/Content/system.netconfig: -------------------------------------------------------------------------------- 1 | [http] 2 | sslVerify 3 | [core] 4 | system = yes 5 | -------------------------------------------------------------------------------- /src/Config.Tests/Content/web/.netconfig: -------------------------------------------------------------------------------- 1 | [local] 2 | value = 123 -------------------------------------------------------------------------------- /src/Config.Tests/FlakyFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/FlakyFactAttribute.cs -------------------------------------------------------------------------------- /src/Config.Tests/TextRulesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/TextRulesTests.cs -------------------------------------------------------------------------------- /src/Config.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tests/xunit.runner.json -------------------------------------------------------------------------------- /src/Config.Tool/Config.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tool/Config.Tool.csproj -------------------------------------------------------------------------------- /src/Config.Tool/ConfigAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tool/ConfigAction.cs -------------------------------------------------------------------------------- /src/Config.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tool/Program.cs -------------------------------------------------------------------------------- /src/Config.Tool/Properties/.gitignore: -------------------------------------------------------------------------------- 1 | launchSettings.json -------------------------------------------------------------------------------- /src/Config.Tool/ValueKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tool/ValueKind.cs -------------------------------------------------------------------------------- /src/Config.Tool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config.Tool/readme.md -------------------------------------------------------------------------------- /src/Config/AggregateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/AggregateConfig.cs -------------------------------------------------------------------------------- /src/Config/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/Config.cs -------------------------------------------------------------------------------- /src/Config/Config.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/Config.csproj -------------------------------------------------------------------------------- /src/Config/ConfigDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigDocument.cs -------------------------------------------------------------------------------- /src/Config/ConfigEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigEntry.cs -------------------------------------------------------------------------------- /src/Config/ConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigExtensions.cs -------------------------------------------------------------------------------- /src/Config/ConfigLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigLevel.cs -------------------------------------------------------------------------------- /src/Config/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigReader.cs -------------------------------------------------------------------------------- /src/Config/ConfigSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigSection.cs -------------------------------------------------------------------------------- /src/Config/ConfigSectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ConfigSectionExtensions.cs -------------------------------------------------------------------------------- /src/Config/FileConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/FileConfig.cs -------------------------------------------------------------------------------- /src/Config/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/Line.cs -------------------------------------------------------------------------------- /src/Config/LineKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/LineKind.cs -------------------------------------------------------------------------------- /src/Config/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/Position.cs -------------------------------------------------------------------------------- /src/Config/TextRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/TextRules.cs -------------------------------------------------------------------------------- /src/Config/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/TextSpan.cs -------------------------------------------------------------------------------- /src/Config/ValueMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/ValueMatcher.cs -------------------------------------------------------------------------------- /src/Config/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Config/readme.md -------------------------------------------------------------------------------- /src/Configuration/Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Configuration/Configuration.csproj -------------------------------------------------------------------------------- /src/Configuration/DotNetConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Configuration/DotNetConfigExtensions.cs -------------------------------------------------------------------------------- /src/Configuration/DotNetConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Configuration/DotNetConfigProvider.cs -------------------------------------------------------------------------------- /src/Configuration/DotNetConfigSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Configuration/DotNetConfigSource.cs -------------------------------------------------------------------------------- /src/Configuration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Configuration/readme.md -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/Directory.props -------------------------------------------------------------------------------- /src/dotnet-config.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/dotnet-config.snk -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetconfig/dotnet-config/HEAD/src/icon.png --------------------------------------------------------------------------------