├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── SimpleConfig.nuspec ├── gulpfile.js ├── misc ├── Thumbs.db └── logo.png ├── package.json └── src ├── SimpleConfig.sln ├── SimpleConfig ├── Configuration.cs ├── Extensions.cs ├── Properties │ └── AssemblyInfo.cs ├── Section.cs ├── SimpleConfig.csproj └── packages.config ├── Tests ├── Alt.config ├── App.config ├── LoadConfigTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.csproj └── packages.config └── packages ├── Bender.3.0.43.0 ├── Bender.3.0.43.0.nupkg └── lib │ ├── Bender.dll │ └── Bender.pdb ├── NUnit.2.6.2 ├── NUnit.2.6.2.nupkg ├── NUnit.2.6.2.nuspec ├── lib │ ├── nunit.framework.dll │ └── nunit.framework.xml └── license.txt ├── Should.1.1.12.0 ├── Should.1.1.12.0.nupkg ├── Should.1.1.12.0.nuspec └── lib │ └── Should.dll ├── flexo.1.0.19.0 ├── flexo.1.0.19.0.nupkg ├── flexo.1.0.19.0.nuspec └── lib │ ├── Flexo.dll │ └── Flexo.pdb └── repositories.config /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/README.md -------------------------------------------------------------------------------- /SimpleConfig.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/SimpleConfig.nuspec -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/gulpfile.js -------------------------------------------------------------------------------- /misc/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/misc/Thumbs.db -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/misc/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/package.json -------------------------------------------------------------------------------- /src/SimpleConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig.sln -------------------------------------------------------------------------------- /src/SimpleConfig/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/Configuration.cs -------------------------------------------------------------------------------- /src/SimpleConfig/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/Extensions.cs -------------------------------------------------------------------------------- /src/SimpleConfig/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SimpleConfig/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/Section.cs -------------------------------------------------------------------------------- /src/SimpleConfig/SimpleConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/SimpleConfig.csproj -------------------------------------------------------------------------------- /src/SimpleConfig/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/SimpleConfig/packages.config -------------------------------------------------------------------------------- /src/Tests/Alt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/Alt.config -------------------------------------------------------------------------------- /src/Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/App.config -------------------------------------------------------------------------------- /src/Tests/LoadConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/LoadConfigTests.cs -------------------------------------------------------------------------------- /src/Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/Tests/packages.config -------------------------------------------------------------------------------- /src/packages/Bender.3.0.43.0/Bender.3.0.43.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Bender.3.0.43.0/Bender.3.0.43.0.nupkg -------------------------------------------------------------------------------- /src/packages/Bender.3.0.43.0/lib/Bender.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Bender.3.0.43.0/lib/Bender.dll -------------------------------------------------------------------------------- /src/packages/Bender.3.0.43.0/lib/Bender.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Bender.3.0.43.0/lib/Bender.pdb -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/NUnit.2.6.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/NUnit.2.6.2/NUnit.2.6.2.nuspec -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/NUnit.2.6.2/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/NUnit.2.6.2/lib/nunit.framework.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/NUnit.2.6.2/license.txt -------------------------------------------------------------------------------- /src/packages/Should.1.1.12.0/Should.1.1.12.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Should.1.1.12.0/Should.1.1.12.0.nupkg -------------------------------------------------------------------------------- /src/packages/Should.1.1.12.0/Should.1.1.12.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Should.1.1.12.0/Should.1.1.12.0.nuspec -------------------------------------------------------------------------------- /src/packages/Should.1.1.12.0/lib/Should.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/Should.1.1.12.0/lib/Should.dll -------------------------------------------------------------------------------- /src/packages/flexo.1.0.19.0/flexo.1.0.19.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/flexo.1.0.19.0/flexo.1.0.19.0.nupkg -------------------------------------------------------------------------------- /src/packages/flexo.1.0.19.0/flexo.1.0.19.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/flexo.1.0.19.0/flexo.1.0.19.0.nuspec -------------------------------------------------------------------------------- /src/packages/flexo.1.0.19.0/lib/Flexo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/flexo.1.0.19.0/lib/Flexo.dll -------------------------------------------------------------------------------- /src/packages/flexo.1.0.19.0/lib/Flexo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/flexo.1.0.19.0/lib/Flexo.pdb -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeobrien/SimpleConfig/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------